/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:       #FAFAF8;
  --off-white:   #F3F1EE;
  --sand:        #C8B89A;
  --sand-light:  #E8E0D5;
  --charcoal:    #1A1917;
  --mid:         #6B6560;
  --accent:      #8B7355;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;

  --nav-h:       90px;
  --transition:  0.35s ease;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}

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

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--sand-light);
  background: rgba(250, 250, 248, 0.97);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  padding: 11px 26px;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition) !important;
}

.nav__cta:hover {
  background: var(--charcoal) !important;
  color: var(--white) !important;
}

/* ===========================
   DROPDOWN SUBMENU
=========================== */
.nav__has-sub {
  position: relative;
}

.nav__sub-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__sub-toggle:hover {
  color: var(--accent);
}

.nav__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.25s ease;
  margin-top: 1px;
}

.nav__has-sub.open > .nav__sub-toggle .nav__arrow,
.nav__has-sub:hover > .nav__sub-toggle .nav__arrow {
  transform: rotate(180deg);
}

.nav__submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(200,184,154,0.15);
  border-top: 2px solid var(--sand);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 300;
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
}

.nav__has-sub:hover .nav__submenu,
.nav__has-sub.open .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu li a {
  display: block;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,184,154,0.08);
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.nav__submenu li:last-child a {
  border-bottom: none;
}

.nav__submenu li a:hover {
  color: var(--sand);
  padding-left: 30px;
  background: rgba(200,184,154,0.05);
}

/* Scrolled state — nav turns white bg, so sub-toggle color stays charcoal */
.nav.scrolled .nav__sub-toggle {
  color: var(--charcoal);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* Subtle warm gradient texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 50%, rgba(200, 184, 154, 0.13) 0%, transparent 68%),
    radial-gradient(ellipse 50% 70% at 8% 85%, rgba(200, 184, 154, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 110px;
  width: 100%;
  display: grid;
  grid-template-columns: 58fr 42fr;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* ---- LEFT: CONTENT ---- */
.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 36px;
}

.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero__divider {
  width: 56px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 30px;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 52px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  padding: 18px 42px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}

.btn--primary:hover {
  background: transparent;
  color: var(--charcoal);
}

.btn--ghost {
  padding: 18px 0;
  background: transparent;
  color: var(--mid);
  border: none;
  position: relative;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sand);
  transition: background var(--transition);
}

.btn--ghost:hover {
  color: var(--charcoal);
}

.btn--ghost:hover::after {
  background: var(--charcoal);
}

/* ---- RIGHT: VISUAL ---- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

/* Large decorative monogram */
.hero__visual::before {
  content: 'HR';
  font-family: var(--font-serif);
  font-size: 320px;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-48%, -50%);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

/* Left separator line */
.hero__visual::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: -20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sand-light) 25%, var(--sand-light) 75%, transparent);
}

/* Badge / Emblem */
.hero__badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 188px;
  height: 188px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  text-align: center;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(4px);
}

.hero__badge::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(200, 184, 154, 0.45);
  border-radius: 50%;
}

.hero__badge-top {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.hero__badge-year {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.hero__badge-bot {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- SCROLL HINT ---- */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-hint span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  45%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  55%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 64px 40px 90px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__sub {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    min-height: 260px;
  }

  .hero__visual::before {
    font-size: 200px;
  }

  .hero__visual::after {
    display: none;
  }

  .hero__scroll-hint {
    left: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .nav__inner {
    padding: 0 24px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px 40px;
    gap: 28px;
    border-bottom: 1px solid var(--sand-light);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 99;
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile dropdown */
  .nav__has-sub {
    width: 100%;
    align-items: center;
  }

  .nav__sub-toggle {
    width: 100%;
    justify-content: space-between;
    color: var(--charcoal);
    padding: 0;
  }

  .nav__submenu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent;
    border: none;
    border-left: 2px solid var(--sand-light);
    box-shadow: none;
    padding: 8px 0 4px 16px;
    min-width: 0;
    margin-top: 12px;
    display: none;
  }

  .nav__has-sub.open .nav__submenu {
    display: flex;
    flex-direction: column;
  }

  .nav__submenu li a {
    color: var(--mid);
    padding: 10px 12px;
    font-size: 11px;
    border-bottom: none;
  }

  .nav__submenu li a:hover {
    color: var(--accent);
    padding-left: 18px;
    background: transparent;
  }

  .hero__inner {
    padding: 48px 24px 80px;
    gap: 44px;
  }

  .hero__visual {
    min-height: 220px;
  }

  .hero__visual::before {
    font-size: 150px;
  }

  .hero__badge {
    width: 156px;
    height: 156px;
  }

  .hero__badge-year {
    font-size: 44px;
  }

  .hero__scroll-hint {
    left: 24px;
    bottom: 28px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 38px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

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

/* ===========================
   CREDIBILITY BAR
=========================== */
.cred {
  background: var(--charcoal);
  border-top: 1px solid rgba(200, 184, 154, 0.15);
  border-bottom: 1px solid rgba(200, 184, 154, 0.15);
  overflow: hidden;
}

.cred__heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.01em;
  padding: 44px 48px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.cred__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.cred__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 18px;
  flex-shrink: 0;
}

.cred__diamond {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--sand);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.8;
}

.cred__text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.82);
  white-space: nowrap;
}

.cred__sep {
  width: 1px;
  height: 20px;
  background: rgba(200, 184, 154, 0.25);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .cred__inner {
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .cred__item {
    padding: 20px 14px;
  }

  .cred__text {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .cred__sep {
    display: none;
  }
}

@media (max-width: 768px) {
  .cred__heading {
    padding: 36px 24px 0;
  }

  .cred__inner {
    padding: 0 24px 36px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
  }

  .cred__item {
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }

  .cred__sep {
    display: none;
  }
}

/* ===========================
   SHARED SECTION UTILITIES
=========================== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.eyebrow--light { color: rgba(250,250,248,0.5); }
.eyebrow--sand  { color: var(--sand); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.section-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.section-headline--light { color: var(--white); }

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 24px;
}

.section-divider--sand { background: rgba(200,184,154,0.5); }

.section-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  max-width: 540px;
}

.section-sub--light { color: rgba(250,250,248,0.7); }

/* ===========================
   SERVICES
=========================== */
.services {
  background: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.services__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 300;
  color: var(--sand-light);
  white-space: nowrap;
  letter-spacing: -0.03em;
  user-select: none;
  pointer-events: none;
  opacity: 0.6;
}

.services__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.services__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.services__header {
  max-width: 520px;
}

.services__intro-image {
  position: relative;
}

.services__intro-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--sand-light);
  z-index: 0;
}

.services__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--sand-light);
  border: 1px solid var(--sand-light);
}

.services__card {
  background: var(--white);
  padding: 52px 48px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background var(--transition);
}

.services__card:hover {
  background: var(--off-white);
}

.services__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  margin-top: -4px;
}

.services__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.services__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}

@media (max-width: 1024px) {
  .services__intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services__intro-image::before {
    display: none;
  }

  .services__photo {
    height: 380px;
  }
}

@media (max-width: 900px) {
  .services {
    padding: 80px 0;
  }

  .services__inner {
    padding: 0 24px;
  }

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

  .services__card {
    padding: 40px 32px;
  }
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why {
  background: var(--off-white);
  overflow: hidden;
}

.why__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.why__image-col {
  position: relative;
  overflow: hidden;
}

.why__image-placeholder {
  position: absolute;
  inset: 0;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--sand);
}

.why__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed var(--sand);
  opacity: 0.5;
}

.why__image-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.why__content-col {
  padding: 100px 72px 100px 72px;
}

.why__reasons {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.why__reason {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why__reason-diamond {
  width: 6px;
  height: 6px;
  background: var(--sand);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 7px;
}

.why__reason-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.why__reason-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}

@media (max-width: 1024px) {
  .why__inner {
    grid-template-columns: 1fr;
  }

  .why__image-col {
    min-height: 340px;
    position: relative;
  }

  .why__image-placeholder {
    position: absolute;
    inset: 0;
  }

  .why__content-col {
    padding: 64px 40px;
  }
}

@media (max-width: 768px) {
  .why__content-col {
    padding: 48px 24px;
  }
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  background: var(--white);
  padding: 120px 0;
}

.gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.gallery__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.gallery__header .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.gallery__placeholder {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  height: 520px;
  background: var(--off-white);
  border: 1px solid var(--sand-light);
  overflow: hidden;
}

.gallery__placeholder-half {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.gallery__placeholder-half::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed var(--sand);
  opacity: 0.45;
}

.gallery__placeholder-half--before {
  background: var(--off-white);
}

.gallery__placeholder-half--after {
  background: var(--sand-light);
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--off-white) 100%);
}

.gallery__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  position: absolute;
  top: 36px;
  left: 36px;
  padding: 6px 14px;
  border: 1px solid var(--sand);
}

.gallery__divider-line {
  background: var(--sand);
  width: 2px;
  position: relative;
}

.gallery__divider-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 50%;
}

.gallery__placeholder-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
}

.gallery__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

@media (max-width: 768px) {
  .gallery {
    padding: 80px 0;
  }

  .gallery__inner {
    padding: 0 24px;
  }

  .gallery__placeholder {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2px 1fr;
    height: 600px;
  }

  .gallery__divider-line {
    width: auto;
    height: 2px;
  }
}

/* ===========================
   SERVICE AREAS
=========================== */
.areas {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.areas__bg-text {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-serif);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 300;
  font-style: italic;
  color: rgba(200,184,154,0.06);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.03em;
  line-height: 1;
}

.areas__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.areas__header {
  max-width: 560px;
  margin-bottom: 72px;
}

.areas__columns {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.areas__col {
  flex: 1;
}

.areas__col-sep {
  width: 1px;
  background: rgba(200,184,154,0.2);
  align-self: stretch;
  margin: 0 60px;
}

.areas__col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}

.areas__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.areas__list li {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: rgba(250,250,248,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,184,154,0.1);
  letter-spacing: 0.01em;
  transition: color var(--transition), padding-left var(--transition);
}

.areas__list li:hover {
  color: var(--white);
  padding-left: 8px;
}

.areas__note {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,250,248,0.45);
  margin-top: 56px;
  font-style: italic;
}

@media (max-width: 768px) {
  .areas {
    padding: 80px 0;
  }

  .areas__inner {
    padding: 0 24px;
  }

  .areas__columns {
    flex-direction: column;
    gap: 48px;
  }

  .areas__col-sep {
    width: 48px;
    height: 1px;
    margin: 0;
  }
}

/* ===========================
   REVIEWS
=========================== */
.reviews {
  background: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.reviews__bg-quote {
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 400px;
  font-weight: 400;
  color: var(--sand-light);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.reviews__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.reviews__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.reviews__header .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand-light);
}

.reviews__card {
  background: var(--white);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews__quote-mark {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
  margin-bottom: -8px;
}

.reviews__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.reviews__author-line {
  width: 28px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.reviews__author-name {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 900px) {
  .reviews {
    padding: 80px 0;
  }

  .reviews__inner {
    padding: 0 24px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__card {
    padding: 40px 32px;
  }
}

/* ===========================
   FINAL CTA
=========================== */
.cta-section {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(200,184,154,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}

.cta-section__content .section-sub {
  max-width: 460px;
  margin-bottom: 48px;
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all var(--transition);
  padding: 18px 42px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(250,250,248,0.4);
  white-space: nowrap;
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.cta-section__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(200,184,154,0.2);
  padding: 52px 48px;
}

.cta-section__contact-card {
  padding: 28px 0;
}

.cta-section__contact-sep {
  height: 1px;
  background: rgba(200,184,154,0.15);
}

.cta-section__contact-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.cta-section__contact-value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--transition);
  display: block;
  word-break: break-all;
}

.cta-section__contact-value:hover {
  color: var(--sand);
}

.cta-section__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250,250,248,0.35);
  font-style: italic;
}

@media (max-width: 1024px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-section__inner {
    padding: 0 24px;
  }

  .cta-section__contact {
    padding: 36px 28px;
  }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(200,184,154,0.12);
  padding: 48px 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__logo {
  height: 44px;
  width: auto;
  opacity: 0.7;
  filter: invert(1) brightness(1.5);
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,250,248,0.35);
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--sand);
}

@media (max-width: 768px) {
  .footer__inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(0.96); }

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

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-h) + 88px) 0 88px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(200,184,154,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(200,184,154,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero__bg-text {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-serif);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 300;
  font-style: italic;
  color: rgba(200,184,154,0.05);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  max-width: 820px;
  margin-left: max(48px, calc((100vw - 1280px)/2 + 48px));
}

.page-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.page-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.page-hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}

.page-hero__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,250,248,0.7);
  max-width: 560px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-h) + 60px) 0 60px;
  }

  .page-hero__inner {
    padding: 0 24px;
    margin-left: 0;
  }
}

/* ===========================
   PAGE CONTENT SECTIONS
=========================== */
.page-section {
  padding: 100px 0;
  position: relative;
}

.page-section--dark {
  background: var(--charcoal);
}

.page-section--off {
  background: var(--off-white);
}

.page-section--white {
  background: var(--white);
}

.page-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

/* Content split (two column) */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

.content-split__text {}

.content-split__image {
  position: relative;
}

.content-split__image::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--sand-light);
  z-index: 0;
}

.img-placeholder {
  width: 100%;
  height: 460px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed var(--sand);
  opacity: 0.5;
}

.img-placeholder span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .content-split--reverse > * {
    direction: ltr;
  }

  .content-split__image::after {
    display: none;
  }

  .img-placeholder {
    height: 300px;
  }

  .page-section {
    padding: 72px 0;
  }

  .page-section__inner {
    padding: 0 24px;
  }
}

/* Decorative BG text for sections */
.section-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--sand-light);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.5;
}

.section-bg-text--dark {
  color: rgba(200,184,154,0.06);
  opacity: 1;
}

/* ===========================
   SERVICE CARDS (inner page)
=========================== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand-light);
  margin-top: 56px;
}

.service-card-item {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card-item:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.service-card-item:hover::before {
  transform: scaleX(1);
}

.service-card-item__num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 0.05em;
}

.service-card-item__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.service-card-item__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
}

/* Service list (bullet style) */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-light);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  transition: padding-left var(--transition), color var(--transition);
}

.service-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--sand);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.service-list li:hover {
  padding-left: 8px;
  color: var(--accent);
}

/* Dark service list */
.service-list--dark li {
  color: rgba(250,250,248,0.85);
  border-bottom-color: rgba(200,184,154,0.12);
}

.service-list--dark li:hover {
  color: var(--sand);
}

/* Two-column list */
.list-two-col {
  columns: 2;
  gap: 48px;
  margin-top: 24px;
}

.list-two-col .service-list {
  break-inside: avoid;
}

/* ===========================
   HIGHLIGHT STRIP
=========================== */
.highlight-strip {
  background: var(--charcoal);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.highlight-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,184,154,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.highlight-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.highlight-strip__text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 640px;
  line-height: 1.3;
}

.highlight-strip__text em {
  color: var(--sand);
  font-style: italic;
}

@media (max-width: 768px) {
  .highlight-strip__inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   STATS ROW
=========================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand-light);
  margin-top: 56px;
}

.stat-item {
  background: var(--charcoal);
  padding: 52px 40px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================
   NUMBERED STEPS
=========================== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--sand-light);
  align-items: flex-start;
  transition: padding-left var(--transition);
}

.step-item:hover {
  padding-left: 8px;
}

.step-item__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand-light);
  line-height: 1;
  text-align: right;
}

.step-item--dark {
  border-bottom-color: rgba(200,184,154,0.12);
}

.step-item--dark .step-item__num {
  color: rgba(200,184,154,0.2);
}

.step-item__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-item--dark .step-item__title {
  color: var(--white);
}

.step-item__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}

.step-item--dark .step-item__desc {
  color: rgba(250,250,248,0.6);
}

/* ===========================
   EMERGENCY PAGE
=========================== */
.emergency-contact-bar {
  background: var(--charcoal);
  border: 1px solid rgba(200,184,154,0.2);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.emergency-phone {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.emergency-phone:hover {
  color: var(--sand);
}

.emergency-phone--pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.emergency-note {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(250,250,248,0.45);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .emergency-contact-bar {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--charcoal);
  position: relative;
  padding-left: 32px;
  max-width: 800px;
}

.about-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--sand);
}

/* Page-level CTA (reused across inner pages) */
.page-cta {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200,184,154,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.page-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}

.page-cta__text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  max-width: 600px;
}

.page-cta__text em {
  font-style: italic;
  color: var(--sand);
}

@media (max-width: 768px) {
  .page-cta {
    padding: 72px 0;
  }

  .page-cta__inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
