:root {
  --blush: #f6eee8;
  --blush-deep: #efe3da;
  --ink: #1c1c1c;
  --ink-soft: #4a4542;
  --rose: #c08a78;
  --rose-deep: #a87362;
  --sage: #8b9688;
  --sage-soft: #a7b0a4;
  --cream-line: rgba(28, 28, 28, 0.12);
  --white: #fffaf7;
  --shadow-soft: 0 24px 60px rgba(60, 40, 30, 0.12);
  --font-script: "Allura", cursive;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 10% -10%, #fbf5f0 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 0%, #eadfd6 0%, transparent 45%),
    linear-gradient(180deg, var(--blush) 0%, #f3e8e0 48%, var(--blush-deep) 100%);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.brand-script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.brand-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(246, 238, 232, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream-line);
}

.site-header .brand .brand-script {
  font-size: 2rem;
}

.site-header .brand .brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--rose-deep);
}

.nav-cta {
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease !important;
}

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

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.18) 0%, rgba(28, 28, 28, 0.42) 100%),
    url("../assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.06);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 22, 18, 0.55) 0%, rgba(28, 22, 18, 0.28) 48%, rgba(28, 22, 18, 0.15) 100%),
    linear-gradient(180deg, transparent 35%, rgba(28, 22, 18, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto 0 clamp(1.25rem, 6vw, 5rem);
  padding: calc(var(--header-h) + 2rem) 0 5.5rem;
  color: var(--white);
}

.hero-brand .brand-script {
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  color: var(--white);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-brand .brand-sub {
  margin-top: 0.35rem;
  color: rgba(255, 250, 247, 0.82);
  letter-spacing: 0.32em;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
}

.hero h1 {
  margin: 1.4rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 300;
  color: rgba(255, 250, 247, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.scroll-hint {
  position: absolute;
  left: clamp(1.25rem, 6vw, 5rem);
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 250, 247, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-hint::after {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  animation: line-pulse 2.4s var(--ease) infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rose);
  color: #fffaf7;
  border-color: var(--rose);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 250, 247, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 250, 247, 0.1);
}

/* Sections shared */
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.section-intro,
.approach-copy,
.contact-panel {
  width: min(720px, 100%);
}

.section-copy {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 38rem;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

/* Services */
.services {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 6vw, 5rem);
}

.service-list {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--cream-line);
}

.service-list li {
  padding-top: 1.6rem;
  border-top: 1px solid transparent;
}

.service-num {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--sage);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.service-list p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Atmosphere band */
.atmosphere {
  padding: 0 clamp(0, 4vw, 2rem);
}

.atmosphere-image {
  min-height: clamp(280px, 42vw, 520px);
  background:
    linear-gradient(180deg, rgba(246, 238, 232, 0.08), rgba(28, 22, 18, 0.18)),
    url("../assets/atmosphere.jpg") center / cover no-repeat;
  border-radius: 0;
}

/* Approach */
.approach {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 6vw, 5rem);
}

.approach-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.approach-points li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--cream-line);
}

.approach-points li:first-child {
  border-top: 1px solid var(--cream-line);
}

.approach-points p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Contact */
.contact {
  padding: 0 clamp(1.25rem, 6vw, 5rem) clamp(4.5rem, 10vw, 8rem);
}

.contact-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    linear-gradient(160deg, rgba(255, 250, 247, 0.78), rgba(239, 227, 218, 0.9));
  border: 1px solid rgba(192, 138, 120, 0.22);
  box-shadow: var(--shadow-soft);
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 2.25rem;
}

.contact-link {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: var(--rose-deep);
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact-value {
  font-size: 1.05rem;
  word-break: break-word;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(28, 28, 28, 0.16);
  border-radius: 0;
  background: rgba(255, 250, 247, 0.72);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192, 138, 120, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem clamp(1.25rem, 6vw, 5rem) 3rem;
  border-top: 1px solid var(--cream-line);
}

.footer-logo {
  width: 7.5rem;
  height: auto;
  border: 1px solid var(--cream-line);
}

.footer-brand p,
.footer-meta p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  align-content: end;
  text-align: right;
}

.footer-meta a {
  transition: color 0.25s ease;
}

.footer-meta a:hover {
  color: var(--rose-deep);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 1.4s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes line-pulse {
  0%, 100% { transform: scaleX(0.45); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media,
  .scroll-hint::after {
    animation: none;
  }
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .service-list,
  .approach,
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .approach-copy {
    width: 100%;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
    z-index: 45;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    gap: 0.35rem;
    padding: calc(var(--header-h) + 0.75rem) 1.5rem 1.5rem;
    background: rgba(246, 238, 232, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cream-line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    justify-self: start;
    margin-top: 0.5rem;
  }

  .hero-content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }
}
