:root {
  --bg: #141820;
  --card: rgba(24, 28, 36, 0.88);
  --text: #f8fafc;
  --muted: #c0c7d4;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #ffffff;
  --accent2: #48d181;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --max: 1120px;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  border: 3px solid #0b0f19;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.28);
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) var(--bg);
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  background: var(--bg);
}

main {
  flex: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      900px 520px at 20% 0%,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(0, 0, 0, 0) 68%
    ),
    radial-gradient(
      900px 520px at 80% 0%,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(0, 0, 0, 0) 68%
    ),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 10px;
  background: #fff;
  color: #000;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 25, 0.65);
  border-bottom: 2px solid rgba(218, 214, 215, 0.815);
}

.topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.topbar .pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brandLogo {
  height: 42px;
  width: auto;
  padding: 6px;
}

.brandText {
  font-weight: 900;
  white-space: nowrap;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 14px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

nav a {
  padding: 10px 10px;
  border-radius: 12px;
}

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.btn.primary {
  border: none;
  background: linear-gradient(135deg, var(--accent), #a5a2a2);
  color: #06110b;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.mobileToggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
}

.intro {
  animation: introIn 700ms ease-out both;
}

.intro > * {
  animation: introIn 700ms ease-out both;
}

.intro > *:nth-child(1) {
  animation-delay: 0ms;
}
.intro > *:nth-child(2) {
  animation-delay: 60ms;
}
.intro > *:nth-child(3) {
  animation-delay: 120ms;
}
.intro > *:nth-child(4) {
  animation-delay: 180ms;
}
.intro > *:nth-child(5) {
  animation-delay: 240ms;
}

@keyframes introIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro,
  .intro > * {
    animation: none !important;
  }
}

.introItem {
  opacity: 0;
  transform: translateY(12px);
  animation: introIn 650ms ease-out forwards;
}

.sideCard.introItem {
  animation-delay: 250ms;
  opacity: 0;
  transform: translateX(20px);
  animation: sideIn 700ms ease-out forwards;
  animation-delay: 250ms;
}

@keyframes sideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.introItem:nth-of-type(1) {
  animation-delay: 0ms;
}
.introItem:nth-of-type(2) {
  animation-delay: 90ms;
}
.introItem:nth-of-type(3) {
  animation-delay: 180ms;
}

.aboutBanner {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;

  padding: 60px 0;
  background: url("/Images/IMG_7847.webp") center/cover no-repeat;
  overflow-x: clip; /* important on iOS */
}

.aboutOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.aboutContent {
  position: relative;
  z-index: 2;
}

.photoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photoGrid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.photoGrid img:hover {
  transform: scale(1.07);
}

@media (max-width: 900px) {
  .photoGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photoGrid img {
    height: 150px;
  }
}

@media (max-width: 520px) {
  .photoGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightboxImg {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightboxClose {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#why,
#reviews {
  scroll-margin-top: 110px;
}

.hero {
  padding: 56px 0 24px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.heroCard {
  border: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    radial-gradient(
      1000px 500px at 30% 10%,
      rgba(96, 165, 250, 0.22) 0%,
      rgba(0, 0, 0, 0) 60%
    );
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.heroCard,
.sideCard {
  backdrop-filter: blur(4px);
}

.heroCard .lead {
  color: rgba(255, 255, 255, 0.9);
}
.heroCard .badge {
  color: rgba(255, 255, 255, 0.78);
}

.heroCard::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    600px 240px at 20% 20%,
    rgba(34, 197, 94, 0.22),
    transparent 60%
  );
  pointer-events: none;
  display: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 800;
  position: relative;
}

.badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent2);
  display: inline-block;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  position: relative;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
  position: relative;
}

.heroCtas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
}

.fine {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.sideCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: var(--shadow);
  padding: 18px;
}

.sideCard h3 {
  margin: 0 0 8px;
}

.kv {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
}

.kv div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 10px 12px;
}

.kv strong {
  color: var(--text);
}

.section {
  padding: 34px 0;
}

.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sectionHead h2 {
  margin: 0;
  font-size: 26px;
}

.sectionHead p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card {
  grid-column: span 6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card h3 {
  margin: 0 0 6px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 6px 0;
}

.ctaBand {
  border: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.16),
    rgba(96, 165, 250, 0.12)
  );
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
}

.ctaBand h3 {
  margin: 0;
}

.ctaBand p {
  margin: 2px 0 0;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 22px 0;
  margin-top: 26px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
  align-items: center;
}

.footerLeft {
  position: relative;
}

.footerLogo {
  position: absolute;
  left: -330px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
}

.footerTextBlock {
  display: block;
}

.footerTitle {
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.footerRight {
  text-align: right;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 10px;
}

.input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px; /* add later */
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--muted);
}

.hoursCard {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.hoursTitle {
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hoursRows {
  display: grid;
  gap: 8px;
}

.hoursRow {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hoursRow:last-child {
  border-bottom: none;
}

.hoursRow .day {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.hoursRow .time {
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.hoursRow.isToday {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 4px 0;
  border-bottom: none;
}

.hoursRow.isToday .day {
  color: var(--text);
}

.hoursRow.isToday .time {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.ratingBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 18px 18px;
  margin: 10px 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.ratingLeft {
  display: grid;
  gap: 6px;
}

.ratingLabel {
  font-weight: 900;
  font-size: 18px;
  color: var(--text);
}

.ratingLine {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ratingNumber {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.ratingCount {
  color: var(--muted);
  font-weight: 700;
}

.stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
  transform: translateY(1px);
}

.star {
  font-size: 18px;
  opacity: 0.35;
}

.star.full {
  opacity: 1;
}

.star.half {
  opacity: 1;
  position: relative;
}
.star.half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  opacity: 0.35;
}

/* Responsive Part */

/* Star System */
@media (max-width: 640px) {
  .ratingBar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  nav ul {
    display: none;
  }
  .mobileToggle {
    display: inline-flex;
  }
  .card {
    grid-column: span 12;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .brandLogo {
    height: 36px;
  }
  .brandText {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  .serviceCard {
    grid-column: span 4;
  }
}

/* Mobile Menu */

body.menuOpen nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  right: 18px;
  top: 112px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(12px);
  width: min(320px, calc(100vw - 36px));
  box-shadow: var(--shadow);
}

.yelp-review {
  display: block;
  width: 100%;
  overflow: hidden;
}

.serviceCard {
  padding: 0;
  overflow: hidden;
}

.serviceCard h3,
.serviceCard p {
  padding: 0 16px;
}

.serviceCard h3 {
  padding-top: 14px;
  text-align: center;
  padding-top: 14px;
  margin-bottom: 6px;
}

.serviceCard p {
  padding-bottom: 16px;
  text-align: center;
  max-width: 90%;
  margin: 0 auto 16px;
}

.serviceMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  transform: translateZ(0);
}

.sideBottom {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

@media (max-width: 640px) {
  .mapFrame {
    height: 320px;
  }
}

/*Mobile Bug Fixes */

img,
video,
canvas,
svg {
  max-width: 100%;
}

@media (max-width: 100%) {
  iframe {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .footerLogo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 140px;
    margin: 0 0 10px 0;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    flex: 1 1 100%;
    min-width: 0;
  }

  .brandText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav {
    flex: 1 1 auto;
  }

  .actions {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .btn {
    padding: 9px 10px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footerLeft {
    position: static;
  }

  .footerLogo {
    position: static;
    transform: none;
    width: 140px;
    margin: 0 auto 10px;
  }

  .footerRight {
    text-align: center;
  }
}

#why,
#reviews {
  scroll-margin-top: 110px;
}

@media (max-width: 640px) {
  #why,
  #reviews {
    scroll-margin-top: 210px;
  }
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .split,
  .grid {
    min-width: 0;
  }
  .split > *,
  .grid > * {
    min-width: 0;
  }

  iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
  }

  .topbar .pill {
    max-width: 100%;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hoursRow .time {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  /* allow flex/grid children to shrink instead of overflowing */
  .nav,
  .brand,
  .actions,
  .topbar,
  .heroGrid,
  .heroCard,
  .sideCard,
  .ratingBar,
  .sectionHead,
  .container,
  main {
    min-width: 0;
  }
  
  @media (max-width: 640px) {
  .ctaBand {
    flex-direction: column;
    align-items: flex-start;
  }

  .ctaBand > div:last-child {
    width: 100%;
  }

  .ctaBand .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hoursRow {
    flex-wrap: nowrap;
    align-items: center;
  }

  .hoursRow .day,
  .hoursRow .time {
    white-space: nowrap;
  }

  .hoursRow .time {
    margin-left: auto;
    text-align: right;
  }
}

@media (max-width: 380px) {
  .hoursRow { font-size: 14px; }
}

/* Old Code
/* html {
  background-color: grey;
}

div {
  padding: 30px;
  text-align: center;
  color: lightblue;
}

body {
  padding: 0;
}

nav {
  padding: 12px;
  border-bottom: 1px solid hsl(0deg 0% 0% / 0.2);
  border-width: 1.5px;
  border-color: black;
}

ul {
  list-style-type: none;
  align-items: center;
  padding: 0px;
  margin: 0;
  display: flex;
  gap: 12px;
}

ul a {
  color: inherit;
  text-decoration: none;
  font-size: 1.5rem;
}

.logo a {
  font-size: 1.125rem;
  font-weight: 500;
}

li.logo {
  margin-right: auto;
} */
