:root {
  --ink: #090d10;
  --paper: #f3f1ec;
  --white: #ffffff;
  --line: rgba(9, 13, 16, 0.15);
  --blue: #9ec5e8;
  --blue-strong: #2f8bd8;
  --radius: 0;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: white;
  color: black;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-inner {
  width: min(1380px, calc(100% - 64px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand-mark-wrap {
  width: 43px;
  height: 50px;
  display: grid;
  place-items: center;
}

.brand-mark-wrap img, .footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(2);
}

.brand-copy, .footer-brand span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong, .footer-brand strong {
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-copy small, .footer-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: white;
  border-color: white;
  transform: translateY(-1px);
}

.header-contact {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 180ms ease;
}

.header-phone:hover, .header-address:hover { opacity: 0.62; }

.header-address {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.06em;
  transition: opacity 180ms ease;
}

.hero {
  min-height: 700px;
  height: min(780px, 100svh);
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-image, .hero-shade { position: absolute; inset: 0; }

.hero-image {
  background: #000000;
  transform: none;
}

.hero-shade {
  background: radial-gradient(circle at 75% 48%, rgba(38, 48, 56, 0.42), transparent 34%);
}

.hero-lines i {
  position: absolute;
  height: 1px;
  width: 40vw;
  right: -4vw;
  top: 33%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.65);
  transform: rotate(-17deg);
}

.hero-lines i:last-child {
  top: 65%;
  right: 7vw;
  width: 24vw;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.hero-content {
  max-width: 740px;
  transform: translateY(-60px);
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow > span { width: 28px; height: 1px; background: var(--blue); }

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(64px, 7.2vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.hero h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  width: min(520px, 100%);
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border 180ms ease;
}

.button-light { background: white; color: var(--ink); border-color: white; }
.button-light:hover { background: var(--blue); border-color: var(--blue); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.hero-services {
  width: 390px;
  min-height: 430px;
  margin-right: 3vw;
  padding: 32px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.75);
}

.services-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-services h2 {
  margin: 15px 0 22px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.services-list li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.services-list li span {
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.hero-services small {
  display: block;
  margin-top: 18px;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.scroll-line { width: 1px; height: 50px; background: rgba(255, 255, 255, 0.55); }

.section-shell {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 84px 0 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.section-heading > div { grid-column: 2 / -1; }

.section-heading h2 {
  max-width: none;
  font-size: clamp(40px, 4.2vw, 62px);
  white-space: nowrap;
}

.section-number {
  margin: 0;
  align-self: start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(9, 13, 16, 0.42);
}

.eyebrow-dark { margin-bottom: 15px; color: rgba(9, 13, 16, 0.5); }

.section-heading h2, .booking-copy h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-lead { margin: 0; color: rgba(9, 13, 16, 0.56); line-height: 1.65; }

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: auto 1fr;
  gap: 16px;
  margin-top: 16px;
}

.info-card {
  position: relative;
  min-height: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

a.info-card:hover { background: var(--ink); color: white; }

.info-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  opacity: 0.72;
}

.info-label {
  margin-top: 64px;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.52;
}

.info-card-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-card-heading .info-label {
  margin: 0;
  font-size: 12px;
  opacity: 0.66;
}

.info-card > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.info-card > span:not(.info-icon):not(.info-label):not(.card-link) {
  margin-top: 6px;
  color: rgba(9, 13, 16, 0.55);
  font-size: 14px;
}

a.info-card:hover > span { color: rgba(255, 255, 255, 0.62) !important; }

.card-link {
  margin-top: auto;
  padding-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.info-card-address {
  grid-row: 1 / span 2;
  min-height: 0;
  background: #f7f6f2;
}

.map-embed {
  height: 210px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dedede;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.google-review {
  margin-top: 16px;
  padding: 18px;
  display: grid;
  gap: 11px;
  border: 1px solid var(--line);
  background: #fff;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5b301;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 3px;
}

.review-stars small {
  color: rgba(9, 13, 16, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-copy {
  display: grid;
  gap: 5px;
}

.review-copy strong {
  font-size: 15px;
}

.review-copy span {
  color: rgba(9, 13, 16, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.review-button {
  width: fit-content;
  margin-top: 3px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.review-button:hover {
  transform: translateY(-2px);
  background: #31383e;
}

.review-button svg {
  width: 17px;
  height: 17px;
}

.info-card-address .card-link {
  margin-top: 20px;
  padding-top: 0;
}

.info-card-address .card-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-card-phone {
  min-height: 230px;
  background: var(--ink);
  color: white;
}

.info-card-phone > span:not(.info-icon):not(.info-label):not(.card-link) {
  color: rgba(255, 255, 255, 0.62);
}

.info-card-phone:hover { background: #171d21; }

.info-card-hours { min-height: 0; }

.hours-list { display: grid; gap: 14px; }

.hours-list p {
  margin: 0;
  padding-bottom: 13px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.hours-list p:last-child { border: 0; }
.hours-list strong { font-size: 12px; }
.hours-list span { color: rgba(9, 13, 16, 0.58); }
.hours-list .closed span { color: #a13a31; font-weight: 700; }

.booking-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.booking-section::before {
  content: "RDV";
  position: absolute;
  left: -30px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.025);
  font-size: min(31vw, 500px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.booking-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(560px, 1.3fr);
  gap: 80px;
  align-items: start;
}

.section-number-light { margin-bottom: 54px; color: rgba(255, 255, 255, 0.35); }

.booking-copy { position: sticky; top: 120px; padding-top: 8px; }

.booking-copy > p:not(.eyebrow):not(.section-number) {
  max-width: 430px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.booking-note {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.booking-note a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: white;
  font-weight: 700;
}

.booking-frame-wrap {
  overflow: hidden;
  background: white;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.frame-topbar {
  height: 50px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #81878c;
  background: #eef0f2;
  border-bottom: 1px solid #dfe2e5;
}

.frame-topbar > span { width: 8px; height: 8px; border-radius: 50%; background: #c3c8cc; }

.frame-topbar small {
  margin-left: auto;
  margin-right: auto;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-frame { display: block; width: 100%; height: 900px; border: 0; background: white; }

.site-footer {
  background: #050708;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  width: min(1380px, calc(100% - 64px));
  min-height: 210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand { gap: 18px; }

.footer-brand img { width: 64px; height: 73px; }

.footer-brand strong { font-size: 17px; }

.footer-brand small { font-size: 13px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-contact a { color: white; font-size: 18px; font-weight: 700; }

.footer-qr {
  justify-self: end;
  padding: 8px;
  display: block;
  border-radius: 12px;
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-qr:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.footer-qr img {
  width: 104px;
  height: auto;
  display: block;
}

.mobile-booking { display: none; }

@media (max-width: 1080px) {
  .header-inner, .hero-inner, .section-shell, .booking-shell, .footer-inner {
    width: min(100% - 40px, 940px);
  }

  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }

  .hero-services { width: 320px; min-height: 410px; margin-right: 0; padding: 26px; }

  .section-heading { grid-template-columns: 54px 1fr; }
  .section-lead { grid-column: 2; max-width: 520px; }

  .info-grid { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); }
  .info-card-hours { grid-column: 2; }

  .booking-shell { grid-template-columns: 1fr; gap: 60px; }
  .booking-copy { position: static; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { display: none; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 72px; }

  .header-inner, .hero-inner, .section-shell, .booking-shell, .footer-inner {
    width: calc(100% - 36px);
  }

  .header-inner { min-height: 74px; }
  .brand-mark-wrap { width: 34px; height: 40px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small, .header-phone span { display: none; }

  .header-contact { gap: 0; }
  .header-address { display: none; }

  .header-phone {
    width: 42px;
    height: 42px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero { min-height: 680px; height: 100svh; }
  .hero-image { background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5, 8, 10, 0.96), rgba(5, 8, 10, 0.72)); }

  .hero-inner { align-items: flex-end; padding: 110px 0 100px; }
  .hero-content { transform: none; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-intro { margin-top: 25px; font-size: 16px; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-services, .hero-scroll { display: none; }

  .section-shell { padding: 64px 0 72px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; padding-bottom: 38px; }
  .section-heading > div { grid-column: 1; }
  .section-lead { grid-column: 1; }
  .section-heading h2, .booking-copy h2 { font-size: 44px; }
  .section-heading h2 { white-space: normal; }

  .info-grid { grid-template-columns: 1fr; gap: 12px; border-left: 0; }
  .info-card, .info-card-hours { grid-column: 1; grid-row: auto; min-height: 0; padding: 26px; }
  .info-card-address { grid-row: auto; min-height: 0; }
  .info-card-phone { min-height: 220px; }
  .map-embed { height: 190px; }
  .info-label { margin-top: 46px; }
  .hours-list p { grid-template-columns: 1fr 1fr; }
  .hours-list p span:last-child:not(:first-child) { grid-column: 2; }

  .booking-shell { width: 100%; padding: 82px 0 0; gap: 48px; }
  .booking-copy { padding: 0 18px; }
  .section-number-light { margin-bottom: 38px; }
  .booking-frame-wrap { box-shadow: none; }
  .booking-frame { height: 980px; }

  .footer-inner {
    min-height: 320px;
    padding: 36px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }
  .footer-brand, .footer-qr { justify-self: center; }

  .mobile-booking {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 54px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue-strong);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.32);
    font-size: 13px;
    font-weight: 700;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
