:root {
  --yellow: #FFD400;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off: #F7F5F1;
  --border: #E4E0D9;
  --muted: #6B6660;
  --text: #111111;
  --navbar-h: 70px;
  --max-w: 1160px;
  --r: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 1.35rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, transform 150ms;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: #f0c800;
  border-color: #f0c800;
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}

.btn--outline:hover { border-color: var(--black); }

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 3rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  font-weight: 800;
  line-height: 1.05;
}

.section-head p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* NAVBAR */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--navbar-h);
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.navbar__inner {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__logo { flex-shrink: 0; }

.navbar__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar__link {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 150ms;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
}

.navbar__cta { margin-left: auto; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 20px 1.6rem;
  flex-direction: column;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  display: block;
  padding: 0.85rem 0;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu__link:hover { color: var(--white); }

.mobile-menu__cta {
  margin-top: 1.1rem;
  width: 100%;
}

/* HERO */

.hero {
  background: var(--black);
  color: var(--white);
  padding-top: var(--navbar-h);
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: 5rem;
}

.hero__location {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}

.hero__sub {
  color: rgba(255,255,255,0.55);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__image {
  width: 100%;
  height: min(55vh, 520px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.08);
}

/* SERVICES */

.services {
  background: var(--off);
  min-height: calc(100svh - var(--navbar-h));
  display: flex;
  align-items: center;
}

.services__inner {
  gap: 1.65rem;
  padding-block: 2.2rem;
}

.services__head {
  width: 100%;
  text-align: center;
}

.services__head h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

.services__head p {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  color: var(--text);
  font-size: 0.95rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.services__panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.services__viewport {
  overflow: hidden;
  padding: 1.8px;
  margin: -1px;
}

.services__track {
  display: flex;
  transition: transform 400ms cubic-bezier(.22,.61,.36,1);
}

.services__page {
  flex: 0 0 100%;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0.85rem;
  height: 365px;
}

.service-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 1.35rem;
  transition: transform 150ms, border-color 150ms;
}

.service-row:hover {
  transform: translateY(-2px);
  border-color: var(--black);
}

.service-row__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.services__top {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-inline: 0.1rem;
}

.services__count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.services__controls {
  display: flex;
  gap: 0.45rem;
}

.services-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
}

.services-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.services__image-wrap {
  height: 365px;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--white);
}

.services__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

/* VISIT */

.visit {
  background: var(--white);
  min-height: calc(100svh - var(--navbar-h));
  display: flex;
  align-items: center;
}

.visit__inner {
  gap: 1.35rem;
  padding-block: 1.6rem;
}

.visit__head {
  width: 100%;
  max-width: 520px;   /* same width as the left info card */
  text-align: left;
  margin-bottom: 1.25rem;
}

.visit__head h2 {
  text-align: left;
  margin-bottom: 0;
}

.visit__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.35rem;
  align-items: stretch;
}

.visit__info-card,
.visit__right {
  min-height: 430px;
}

.visit__info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.45rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.visit-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: center;
}

.visit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 700;
}

.visit-item h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.visit-item p:not(.info-label) {
  color: var(--muted);
  font-size: 0.88rem;
}

.visit-divider {
  height: 1px;
  background: var(--border);
  margin-block: 0.8rem;
}

.visit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.visit-tags span {
  color: var(--muted);
}

.visit__right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.85rem;
}

.visit__map {
  min-height: 285px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off);
}

.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.google-review {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.google-review__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 1.1rem;
  color: #4285F4;
}

.google-review__label {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.google-review__rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.google-review__rating strong {
  font-size: 1.15rem;
}

.google-review__rating span {
  color: var(--yellow);
  letter-spacing: 0.03em;
  font-size: 0.85rem;
}

.google-review__rating small {
  color: var(--muted);
  font-size: 0.78rem;
}

.google-review__quote {
  font-size: 0.8rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.35;
}

.google-review__name {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.google-review__btn {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color 150ms, transform 150ms;
}

.google-review__btn:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

/* FOOTER */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding-block: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer__brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.footer__brand em {
  font-style: normal;
  color: var(--yellow);
}

.footer__inner p { line-height: 1.5; }

.footer__inner a {
  color: rgba(255,255,255,0.6);
  transition: color 150ms;
}

.footer__inner a:hover { color: var(--white); }

.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}



/* RESPONSIVE */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .services__track {
    transition: none;
  }
}

/* ─── MOBILE ─── */

@media (max-width: 800px) {

  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, var(--max-w));
  }

  /* Navbar */
  .navbar {
    height: 58px;
  }

  .navbar__inner {
    height: 58px;
  }

  .navbar__logo-img {
    height: 30px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .navbar__cta {
    display: inline-flex;
    margin-left: auto;
    height: 36px;
    padding: 0 1.1rem;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 700;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 2rem;
    align-items: stretch;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-block: 0;
    align-items: stretch;
  }

  .hero__copy {
    order: 1;
    padding: 2.2rem 0 0;
  }

  .hero__frame {
    order: 2;
    width: 100%;
    flex-shrink: 0;
  }

  .hero__location {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
    line-height: 0.91;
    letter-spacing: -0.07em;
    margin-bottom: 0.95rem;
  }

  .hero__sub {
    font-size: 0.97rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,0.5);
  }

  .hero__actions .btn {
    height: 48px;
    padding-inline: 1.3rem;
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: 8px;
  }

  /* Image bleeds edge-to-edge, fills remaining hero space */
  .hero__image {
    width: 100%;
    height: 56vw;
    min-height: 230px;
    max-height: 360px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: var(--r);
    border: 1px solid rgba(255,255,255,0.08);
    display: block;
  }

  /* Services */
  .services {
    min-height: auto;
  }

  .services__inner {
    padding-block: 2.4rem;
    gap: 1.35rem;
  }

  .section-head h2 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .services__head {
    text-align: left;
  }

  .services__head h2 {
    text-align: left;
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    margin-bottom: 0.35rem;
  }

  .services__head p {
    text-align: left;
    margin-inline: 0;
    font-size: 0.86rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services__page {
    height: auto;
    grid-template-rows: none;
    gap: 0.6rem;
  }

  .service-row {
    height: 62px;
    border-radius: 10px;
  }

  .service-row__name {
    font-size: 0.95rem;
  }

  .services__top {
    margin-top: 0.6rem;
    height: 40px;
  }

  .services__image-wrap {
    height: 195px;
    border-radius: var(--r);
  }

  /* Visit */
  .visit {
    min-height: auto;
  }

  .visit__inner {
    padding-block: 2.4rem;
    gap: 1.2rem;
  }

  .visit__head {
    max-width: none;
    margin-bottom: 0;
  }

  .visit__head h2 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .visit__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .visit__info-card {
    min-height: auto;
    padding: 1.1rem 1.15rem;
    justify-content: flex-start;
  }

  .visit__info-card,
  .visit__right {
    min-height: auto;
  }

  .visit-item {
    grid-template-columns: 38px 1fr;
    gap: 0.7rem;
  }

  .visit-icon {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .visit-item h3 {
    font-size: 0.95rem;
  }

  .visit-item p:not(.info-label) {
    font-size: 0.82rem;
  }

  .visit-divider {
    margin-block: 0.55rem;
  }

  .visit-tags {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    font-size: 0.77rem;
    gap: 0.55rem;
  }

  .visit__right {
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .visit__map {
    min-height: 215px;
    border-radius: var(--r);
  }

  /* Google review */
  .google-review {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    align-items: start;
  }

  .google-review__logo {
    grid-row: 1;
    grid-column: 1;
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
    align-self: center;
  }

  .google-review__content {
    grid-column: 2;
    grid-row: 1;
  }

  .google-review__btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  /* Footer */
  .footer {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    margin-bottom: 0;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .section-inner {
    padding-block: 2.4rem;
  }
}