:root {
  --black: #0b0b0b;
  --charcoal: #171717;
  --bronze: #c99a4a;
  --bronze-dark: #9f7430;
  --offwhite: #f5f2ec;
  --gray: #a5a5a5;
  --line: rgba(201, 154, 74, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--offwhite);
  background: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bronze); }
button, a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--bronze); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--bronze);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.86);
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 44px rgba(0, 0, 0, 0.36); background: rgba(11, 11, 11, 0.96); }
.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 900;
}
.logo span { font-size: 1.08rem; }
.logo small { margin-top: 6px; color: var(--bronze); font-size: 0.7rem; letter-spacing: 0; }
.primary-menu { display: flex; align-items: center; gap: 22px; color: rgba(245, 242, 236, 0.86); font-weight: 700; font-size: 0.94rem; }
.primary-menu a:not(.btn).is-active { color: var(--bronze); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; color: var(--offwhite); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: var(--black); background: var(--bronze); box-shadow: 0 14px 34px rgba(201, 154, 74, 0.22); }
.btn-gold:hover { color: var(--black); background: #e0b15c; }
.btn-outline { color: var(--offwhite); border-color: var(--line); background: rgba(255, 255, 255, 0.04); }
.btn-outline:hover { color: var(--offwhite); border-color: var(--bronze); background: rgba(201, 154, 74, 0.12); }
.btn-small { min-height: 42px; padding: 10px 16px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center-buttons { justify-content: center; }

.hero {
  width: min(1220px, calc(100% - 32px));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: 76px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(290px, 0.76fr);
  align-items: center;
  gap: 44px;
}
.hero-content { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 7.8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.2; }
.hero-copy, .section-heading p, .section-copy p, .image-panel p {
  color: rgba(245, 242, 236, 0.78);
  font-size: 1.08rem;
}
.hero-copy { max-width: 660px; margin: 24px 0 30px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-media {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.06), rgba(11, 11, 11, 0.76));
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 58% center; }
.hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  font-weight: 900;
  font-size: 1.15rem;
}

.trust-bar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(201, 154, 74, 0.1), rgba(255, 255, 255, 0.03));
}
.trust-bar div { padding: 22px; border-right: 1px solid rgba(201, 154, 74, 0.18); }
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { display: block; font-size: 1.2rem; line-height: 1.1; }
.trust-bar span { color: var(--gray); font-weight: 700; }

.section { padding: 92px 0; }
.section > .split, .section-heading, .service-grid, .gallery-grid, .review-grid, .local-grid, .center-note {
  width: min(1160px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}
.section-charcoal { background: var(--charcoal); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.split-reverse { grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); }
.section-copy { max-width: 630px; }
.text-link { color: var(--bronze); font-weight: 900; border-bottom: 1px solid currentColor; }

.portrait-card {
  position: relative;
  margin: 0;
  min-height: 430px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait-card img { width: 100%; min-height: 430px; object-fit: cover; }
.experience-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--black);
  background: var(--bronze);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}
.experience-badge small { display: block; font-size: 0.76rem; text-transform: uppercase; }

.section-heading { max-width: 760px; text-align: center; margin-bottom: 42px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .review-card, .contact-card {
  border: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.46);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.service-card { min-height: 230px; padding: 28px; }
.service-card span { color: var(--bronze); font-weight: 900; }
.service-card p, .review-card span, .note { color: var(--gray); }
.center-note { max-width: 780px; margin-top: 34px; text-align: center; color: rgba(245, 242, 236, 0.74); }
.center-note .btn { margin-top: 12px; }

.check-list { margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 34px; color: rgba(245, 242, 236, 0.82); font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 14px; height: 14px; border: 2px solid var(--bronze); background: var(--black); }
.image-panel {
  min-height: 480px;
  display: grid;
  align-content: end;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.84)),
    radial-gradient(circle at 18% 18%, rgba(201, 154, 74, 0.28), transparent 32%),
    linear-gradient(135deg, #242424, #0d0d0d);
  box-shadow: var(--shadow);
}
.panel-lines { min-height: 220px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(201, 154, 74, 0.2) 35px 36px); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  display: block;
  padding: 0;
  aspect-ratio: 9 / 11;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 74, 0.22);
  background: #111;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease, filter 220ms ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.04); filter: brightness(1.12); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 28px; }
.review-card p { margin: 0 0 18px; font-size: 1.12rem; color: rgba(245, 242, 236, 0.88); }

.local-seo {
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.98)),
    linear-gradient(90deg, rgba(201, 154, 74, 0.1), transparent);
}
.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.local-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(245, 242, 236, 0.035);
}
.local-card p { margin: 0; color: rgba(245, 242, 236, 0.76); }

.booking-cta {
  padding: 86px 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(201, 154, 74, 0.88), rgba(151, 107, 42, 0.96));
  color: var(--black);
}
.booking-cta h2 { color: var(--black); }
.booking-cta p { max-width: 620px; margin: 0 auto 26px; font-weight: 700; }
.booking-cta .btn-outline { border-color: rgba(11, 11, 11, 0.38); color: var(--black); background: rgba(245, 242, 236, 0.22); }
.booking-cta .btn-gold { background: var(--black); color: var(--offwhite); box-shadow: none; }

.contact-card { padding: 34px; }
address { font-style: normal; color: rgba(245, 242, 236, 0.82); }
.map-shell {
  min-height: 420px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.map-shell iframe { width: 100%; height: 420px; border: 0; filter: grayscale(1) contrast(1.05); }

.site-footer { padding: 64px 0 112px; background: #070707; border-top: 1px solid rgba(245, 242, 236, 0.08); }
.footer-grid, .footer-bottom { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.7fr; gap: 34px; }
.site-footer h2 { font-size: 1rem; margin: 0 0 14px; color: var(--bronze); }
.site-footer p { color: var(--gray); }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(245, 242, 236, 0.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { margin-left: 16px; }

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.mobile-cta a { min-height: calc(58px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); display: grid; place-items: center; font-weight: 900; }
.mobile-cta a:nth-child(2) { color: var(--black); background: var(--bronze); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}
.lightbox[hidden] { display: none; }
.lightbox-panel { position: relative; width: min(720px, 100%); }
.lightbox-panel img { width: 100%; max-height: 78vh; object-fit: contain; background: #111; }
.lightbox-panel p { margin: 12px 0 0; color: var(--offwhite); text-align: center; }
.lightbox-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--black);
  background: var(--bronze);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.noscript-note { margin: 0; padding: 16px; color: var(--black); background: var(--bronze); font-weight: 800; }

.reveal { transform: translateY(18px); opacity: 0; transition: transform 520ms ease, opacity 520ms ease; }
.reveal.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-menu {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 11, 11, 0.98);
    transform: translateY(-120%);
    transition: transform 220ms ease;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
  }
  .primary-menu.is-open { transform: translateY(0); }
  .primary-menu a { padding: 14px 4px; }
  .primary-menu .btn { margin-top: 10px; }
  .hero, .split, .split-reverse { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-media { min-height: 420px; }
  .hero-media img { min-height: 420px; }
  .trust-bar, .service-grid, .gallery-grid, .review-grid, .local-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar div:nth-child(2) { border-right: 0; }
  .trust-bar div:nth-child(-n+2) { border-bottom: 1px solid rgba(201, 154, 74, 0.18); }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 78px; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .mobile-cta { display: grid; }
  .nav-shell { width: min(100% - 24px, 1160px); min-height: 70px; }
  .primary-menu { inset: 70px 0 auto 0; }
  .hero, .section > .split, .section-heading, .service-grid, .gallery-grid, .review-grid, .local-grid, .center-note, .trust-bar, .footer-grid, .footer-bottom {
    width: min(100% - 24px, 1160px);
  }
  .hero { padding: 42px 0 42px; gap: 28px; }
  h1 { font-size: clamp(2.45rem, 13.4vw, 4rem); line-height: 0.98; }
  h2 { font-size: clamp(1.9rem, 9.4vw, 2.8rem); }
  .hero-copy, .section-heading p, .section-copy p, .image-panel p { font-size: 1rem; }
  .button-row, .center-buttons { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .trust-bar, .service-grid, .review-grid, .local-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-bar div { border-right: 0; border-bottom: 1px solid rgba(201, 154, 74, 0.18); }
  .trust-bar div:last-child { border-bottom: 0; }
  .section { padding: 62px 0; }
  .service-card, .local-card { min-height: auto; padding: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-media { min-height: 340px; aspect-ratio: 4 / 5; }
  .hero-media img { min-height: 340px; object-position: 60% center; }
  .hero-media figcaption { font-size: 1rem; left: 16px; right: 16px; bottom: 14px; }
  .portrait-card, .portrait-card img, .image-panel { min-height: 340px; }
  .contact-card { padding: 24px; }
  .map-shell, .map-shell iframe { min-height: 340px; height: 340px; }
  .footer-bottom { display: block; }
  .footer-bottom a { margin: 0 16px 0 0; }
  .lightbox { padding: 18px; }
  .lightbox-close { right: 8px; top: 8px; }
}

@media (max-width: 360px) {
  .logo span { font-size: 0.98rem; }
  .logo small { font-size: 0.64rem; }
  .hero, .section > .split, .section-heading, .service-grid, .gallery-grid, .review-grid, .local-grid, .center-note, .trust-bar, .footer-grid, .footer-bottom { width: min(100% - 20px, 1160px); }
  h1 { font-size: clamp(2.25rem, 12.6vw, 3rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .mobile-cta a { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
