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

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --coral: #e8645a;
  --coral-light: #f0786e;
  --coral-muted: #f5e0dd;
  --cream: #faf8f6;
  --cream-dark: #f3efe9;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #a0a0a0;
  --gray-500: #6b6b6b;
  --gray-600: #4a4a4a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

/* ─── LOADER ─── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-line {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: var(--coral);
  animation: loaderSlide 0.8s var(--ease-in-out) infinite;
}

@keyframes loaderSlide {
  to { left: 60px; }
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

.nav-list a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-600);
  transition: color 0.25s;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s var(--ease-out);
}

.nav-list a:hover {
  color: var(--charcoal);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--charcoal);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, border-color 0.25s !important;
}

.nav-cta::after {
  display: none;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
}

.nav-toggle-close {
  display: none;
}

/* ─── HERO ─── */
.hero {
  padding-top: 144px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  padding-right: 16px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.hero-headline .accent {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-accent-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.accent-card-icon {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
}

.hero-accent-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-300);
}

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

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

.btn-white:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ─── DIVIDER SECTION ─── */
.divider-section {
  padding: 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 520px;
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 0;
}

.services-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 40px 32px;
  position: relative;
  transition: background 0.4s;
}

.service-card:hover {
  background: var(--white);
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.service-card-line {
  width: 32px;
  height: 1px;
  background: var(--coral);
  transition: width 0.4s var(--ease-out);
}

.service-card:hover .service-card-line {
  width: 56px;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 4px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent-block {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 40px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.value-icon {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 100px 0;
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-style: italic;
}

.gallery-item--wide {
  grid-column: span 7;
  height: 320px;
}

.gallery-item:not(.gallery-item--wide) {
  height: 280px;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  padding: 80px 0;
  background: var(--charcoal);
}

.cta-strip-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ─── VISIT ─── */
.visit {
  padding: 100px 0;
  background: var(--cream-dark);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info {
  max-width: 480px;
}

.visit-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  text-decoration: none;
}

.visit-detail a:hover {
  color: var(--coral);
}

.visit-map {
  border-radius: 4px;
  overflow: hidden;
}

.map-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.map-link:hover img {
  transform: scale(1.03);
}

.map-link-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s;
}

.map-link:hover .map-link-overlay {
  opacity: 1;
}

.map-link-overlay span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.map-link-overlay .btn-icon {
  color: var(--white);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  border-color: var(--white);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 280px;
}

.footer-quick-label,
.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-quick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-quick-list a {
  font-size: 0.9375rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-quick-list a:hover {
  color: var(--coral);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  font-size: 0.9375rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-list a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-location {
  color: var(--gray-500) !important;
}

/* ─── MOBILE NAV ─── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 248, 246, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-nav-list a:hover {
  color: var(--coral);
}

.mobile-nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  display: inline-block;
  border: 1px solid var(--charcoal);
  padding: 12px 32px;
  border-radius: 100px;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }

  .about-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle-icon {
    display: block;
  }

  .nav-toggle-close {
    display: none;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 64px;
    min-height: auto;
  }

  .hero-bg-line {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-image-frame {
    height: 400px;
  }

  .hero-accent-card {
    left: 16px;
    bottom: -16px;
  }

  .hero-stats {
    gap: 20px;
  }

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

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

  .about-image-stack {
    height: 360px;
    order: -1;
  }

  .about-content {
    max-width: 100%;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
    height: 240px;
  }

  .gallery-item:not(.gallery-item--wide) {
    height: 200px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--wide {
    grid-column: span 1;
    height: 220px;
  }

  .gallery-item:not(.gallery-item--wide) {
    height: 220px;
  }

  .cta-strip {
    padding: 64px 0;
  }
}
