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

:root {
  --cream: #f9f6f1;
  --black: #0e0e0e;
  --grey: #6b6b6b;
  --line: #d8d2c8;
  --gold: #b8975a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  mix-blend-mode: normal;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s;
}

.nav-links a:hover { opacity: 1; }

nav:not(.scrolled) .nav-links a {
  color: var(--cream);
  opacity: 0.8;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

nav:not(.scrolled) .nav-links a:hover { opacity: 1; }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

nav:not(.scrolled) .nav-toggle span {
  background: var(--black);
  filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.5));
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  max-width: 400px;
  margin-bottom: 52px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 6px;
  transition: gap 0.3s, opacity 0.3s;
}

.hero-cta:hover { gap: 22px; opacity: 0.6; }

.hero-cta-arrow { font-size: 16px; transition: transform 0.3s; }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-right:hover img { transform: scale(1.0); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0.7;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--grey);
  transform-origin: left;
  animation: lineGrow 2s ease infinite;
}

@keyframes lineGrow {
  0%, 100% { scaleX: 1; opacity: 0.4; }
  50% { scaleX: 1.5; opacity: 1; }
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-img {
  position: relative;
  overflow: hidden;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}

.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-title em { font-style: italic; }

.section-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey);
  max-width: 460px;
}

.section-text + .section-text { margin-top: 18px; }

/* ── SERVICES ── */
.services {
  padding: 120px 60px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--cream);
  padding: 52px 44px;
  transition: background 0.3s;
  cursor: default;
}

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

.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--cream); }

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

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 28px;
  transition: color 0.3s;
}

.service-line {
  width: 32px;
  height: 1px;
  background: var(--line);
  margin-bottom: 28px;
  transition: background 0.3s;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  transition: color 0.3s;
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.contact-left {
  padding: 100px 80px;
  border-right: 1px solid var(--line);
}

.map-fallback {
  border: 1px solid var(--line);
  padding: 34px;
  background: #fff;
}

.map-fallback-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.map-fallback-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}

.map-fallback-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 24px;
}

.map-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-action {
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-action-primary {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

.map-embed-shell {
  margin-top: 16px;
}

.contact-right {
  padding: 100px 80px;
  background: var(--black);
  color: var(--cream);
}

.contact-right .section-label { color: var(--gold); }
.contact-right .section-title { color: var(--cream); }

.contact-details {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  transition: opacity 0.25s;
}

.contact-item-value:hover { opacity: 0.65; }

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
}

.contact-map:hover { filter: grayscale(0); }

/* ── FOOTER ── */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.footer-legal a:hover {
  color: var(--black);
}

.footer-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--line);
  transition: border-color 0.25s, color 0.25s;
}

.footer-back:hover {
  border-color: var(--black);
  color: var(--black);
  opacity: 1;
}


/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 22px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(249, 246, 241, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    height: 100svh;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 20px;
    letter-spacing: 0.2em;
    color: var(--black);
    opacity: 0.75;
    text-shadow: none;
  }
  nav:not(.scrolled) .nav-links a { color: var(--black); }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 45svh;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .hero-left { padding: 120px 28px 60px; justify-content: flex-end; }
  .hero-right { height: 45svh; }
  .hero-right img { display: block; }
  .hero-scroll { left: 28px; }

  .about { grid-template-columns: 1fr; }
  .about-img { height: 55vw; }
  .about-content { padding: 60px 28px; }

  .services { padding: 80px 28px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }

  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-right { padding: 60px 28px; }
  .map-fallback { padding: 26px; }
  .map-fallback-title { font-size: 30px; }
  .map-fallback-actions { flex-direction: column; }
  .map-action { width: 100%; }

  footer { padding: 32px 28px; flex-direction: column; gap: 14px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px 16px; }
}
