:root {
  --sage: #3f5e52;
  --sage-deep: #243d35;
  --mist: #e7efeb;
  --fog: #f3f7f5;
  --sand: #c9b8a0;
  --ink: #16201c;
  --ink-soft: rgba(22, 32, 28, 0.72);
  --line: rgba(22, 32, 28, 0.12);
  --white: #ffffff;
  --radius: 14px;
  --shadow-soft: 0 18px 50px rgba(36, 61, 53, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(63, 94, 82, 0.08), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(201, 184, 160, 0.18), transparent 55%),
    var(--fog);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--sage-deep);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header.is-scrolled {
  background: rgba(243, 247, 245, 0.88);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.header-cta {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.header-cta:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 22s var(--ease) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 32, 28, 0.28) 0%, rgba(22, 32, 28, 0.18) 35%, rgba(22, 32, 28, 0.72) 100%),
    linear-gradient(90deg, rgba(36, 61, 53, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto 0 clamp(1.25rem, 5vw, 5rem);
  padding: 0 0 clamp(5.5rem, 12vh, 8rem);
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.brand-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12vw, 7.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  border-radius: 12px;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--sage-deep);
  padding: 0.95rem 1.55rem;
}

.btn-primary:hover {
  background: var(--mist);
}

.coming-soon-label {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: scroll-dot 1.8s var(--ease) infinite;
}

.ritual {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.ritual-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 16ch;
}

.ritual-copy p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 38ch;
  font-size: 1.1rem;
}

.ritual-visual {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.ritual-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.ritual-visual:hover img {
  transform: scale(1.04);
}

.atmosphere {
  padding: 0 clamp(1.25rem, 5vw, 5rem) clamp(4rem, 10vw, 7rem);
}

.atmosphere-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.atmosphere-wide,
.atmosphere-tall {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.atmosphere-wide img,
.atmosphere-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.atmosphere-wide:hover img,
.atmosphere-tall:hover img {
  transform: scale(1.03);
}

.atmosphere-wide img {
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.atmosphere-tall img {
  aspect-ratio: 3 / 4;
  max-height: 560px;
}

.atmosphere-note {
  padding: 1.5rem 0.25rem 0;
}

.atmosphere-note h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.atmosphere-note p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36ch;
}

.contact {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(180deg, transparent, rgba(63, 94, 82, 0.06) 20%, rgba(63, 94, 82, 0.1)),
    var(--mist);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-intro h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 600;
}

.contact-intro p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.contact-email a {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 61, 53, 0.35);
}

.contact-email a:hover {
  border-bottom-color: var(--sage-deep);
}

.contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(63, 94, 82, 0.08);
  display: grid;
  gap: 1.1rem;
}

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

.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--fog);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  background: var(--white);
  border-color: rgba(63, 94, 82, 0.45);
  box-shadow: 0 0 0 4px rgba(63, 94, 82, 0.12);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.btn-submit {
  justify-self: start;
  margin-top: 0.35rem;
  background: var(--sage-deep);
  color: var(--white);
  min-width: 11rem;
}

.btn-submit:hover {
  background: var(--sage);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-status {
  margin: 0.25rem 0 0;
  min-height: 1.4em;
  font-size: 0.95rem;
}

.form-status.is-success {
  color: var(--sage-deep);
}

.form-status.is-error {
  color: #8b2e2e;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem) 2.5rem;
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-meta {
  margin: 0;
  font-size: 0.92rem;
}

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

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

.hero .reveal {
  transition-delay: 0.08s;
}

.hero .brand-mark.reveal {
  transition-delay: 0.18s;
}

.hero .hero-lead.reveal {
  transition-delay: 0.28s;
}

.hero .hero-actions.reveal {
  transition-delay: 0.38s;
}

@keyframes kenburns {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@media (min-width: 800px) {
  .ritual {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .atmosphere-grid {
    grid-template-columns: 1.35fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .atmosphere-wide {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .atmosphere-wide img {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
  }

  .atmosphere-tall {
    grid-column: 2;
    grid-row: 1;
  }

  .atmosphere-note {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    padding: 0.5rem 0 0;
  }

  .contact-inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .scroll-cue span,
  .reveal,
  .btn,
  .ritual-visual img,
  .atmosphere-wide img,
  .atmosphere-tall img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}
