/* Reset Crew. Direction 2: Golden Hour */

:root {
  --sand:#f3e6d4;
  --apricot:#e9ad82;
  --terra:#cf7d54;
  --rust:#b65f38;
  --espresso:#3a2c23;
  --ink:#241b15;
  --cream:#fbf5ec;
  --sage:#9aa07f;
}

* { box-sizing: border-box; }
body { margin: 0; }

@keyframes gh-rise { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes gh-fade { from { opacity:0; } to { opacity:1; } }
@keyframes gh-pan  { 0% { transform:scale(1.08) translate(0,0); } 100% { transform:scale(1.16) translate(-2%,-2%); } }
@keyframes gh-kenburns { 0% { transform:scale(1.06) translate(0,0); } 100% { transform:scale(1.15) translate(-1.6%,-2.2%); } }

.page {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Schibsted Grotesk', sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- HERO ---------- */
.hero { position: relative; height: 640px; overflow: hidden; }

/* Fallback gradient + decorations sit behind the video (z-index 0). */
.hero__sky {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(115deg,#fcefda 0%,#f6cd98 30%,#e8a06b 58%,#c9733f 82%,#9c5128 100%);
  animation: gh-pan 16s ease-in-out infinite alternate; pointer-events: none;
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(80% 70% at 72% 8%, rgba(255,249,236,.95), rgba(255,249,236,0) 50%);
}
.hero__blinds {
  position: absolute; top: 0; right: 16%; width: 26%; height: 64%; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,252,244,.5) 0 3px, transparent 3px 42px),
    repeating-linear-gradient(90deg, rgba(255,252,244,.5) 0 3px, transparent 3px 60px);
  transform: skewX(-9deg); opacity: .7;
}
.hero__plant {
  position: absolute; bottom: 11%; left: 10%; width: 120px; height: 150px; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg,#cdbf9d,#8f9674);
  border-radius: 60% 60% 12px 12px / 70% 70% 12px 12px; opacity: .55;
}

/* Background video wrapper: parallax (JS) + Ken-Burns drift (CSS). */
.hero-parallax {
  position: absolute; top: -8%; left: 0; right: 0; height: 118%; z-index: 1; will-change: transform;
  /* Poster shows instantly (covers the gradient = no load flash) and also
     fills the brief loop-cut dips. Dark colour under it if the poster 404s. */
  background: #241b15 url('assets/hero-poster.jpg') center / cover no-repeat;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s ease; /* smooth fade-in over the poster */
}
/* Fade the video in once it's ready (JS swaps to a faster transition for the loop cut). */
.hero-parallax.has-video .hero__video { opacity: 1; }
/* Watermark mask: blurs the ACTUAL video pixels behind it (so it keeps the
   real colours/lighting instead of a flat blob), plus a faint pillow-tint to
   knock down the sparkle highlight. Edges feathered with a radial mask, and it
   sits under the dark scrim so it disappears. Hidden until the video loads. */
.hero__mark {
  position: absolute; z-index: 2; display: none; pointer-events: none;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(9px) brightness(.97);
          backdrop-filter: blur(9px) brightness(.97);
  background: rgba(76,63,53,.30);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 32%, rgba(0,0,0,.5) 58%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 32%, rgba(0,0,0,.5) 58%, transparent 80%);
}
.hero-parallax.has-video .hero__mark { display: block; }

/* Legibility scrims on top of the video (z-index 3). */
.hero__topshade {
  position: absolute; top: 0; left: 0; right: 0; height: 150px; z-index: 3;
  background: linear-gradient(180deg, rgba(58,44,35,.34), rgba(58,44,35,0));
  pointer-events: none;
}
.hero__floorshade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 52%; z-index: 3;
  background: linear-gradient(0deg, rgba(40,28,18,.72), rgba(40,28,18,.12) 60%, transparent);
  pointer-events: none;
}

/* nav */
.nav {
  position: relative; z-index: 4; max-width: 1180px; margin: 0 auto;
  padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; color: #fff;
}
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand__name {
  font-family: 'Spectral', serif; font-size: 23px; font-weight: 500; letter-spacing: .01em;
  color: #fff; text-shadow: 0 1px 14px rgba(58,44,35,.45);
}
.brand__dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; display: inline-block; }
.brand__dot--terra { background: var(--terra); }

.nav__links { display: flex; gap: 32px; align-items: center; font-size: 14.5px; }
.nav-link {
  color: rgba(255,255,255,.95); text-decoration: none; font-weight: 500;
  text-shadow: 0 1px 12px rgba(58,44,35,.45); transition: color .2s;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  color: var(--ink); background: #fff; text-decoration: none; padding: 10px 20px;
  border-radius: 100px; font-weight: 600; transition: transform .25s;
}
.nav-cta:hover { transform: translateY(-2px); }
.lang-toggle {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 14.5px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.95); text-shadow: 0 1px 12px rgba(58,44,35,.45);
  transition: color .2s;
}
.lang-toggle:hover { color: #fff; }

/* hero copy */
.hero__copy { position: absolute; z-index: 4; left: 0; right: 0; bottom: 52px; }
.hero__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 20px;
}
.hero__title {
  font-family: 'Spectral', serif; font-weight: 300; font-size: 62px; line-height: 1.03;
  letter-spacing: -.02em; margin: 0 0 22px; max-width: 880px; color: #fff;
  text-shadow: 0 2px 30px rgba(36,27,21,.25);
}
.hero__title span { display: inline-block; }
.hero__title-em { font-style: italic; }

.hero__actions { display: flex; gap: 14px; align-items: center; }
.btn {
  text-decoration: none; border-radius: 100px; font-weight: 600; font-size: 15.5px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn--white {
  background: #fff; color: var(--ink); padding: 16px 32px;
  box-shadow: 0 14px 34px -14px rgba(0,0,0,.5);
}
.btn--white:hover { transform: translateY(-3px); }
.btn--ghost {
  background: rgba(255,255,255,.12); color: #fff; padding: 16px 28px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.hero__note { color: rgba(255,255,255,.92); font-size: 15px; max-width: 260px; line-height: 1.5; margin-left: 6px; }
.hero__note-en { opacity: .7; font-style: italic; }

/* hero entrance animations */
.anim-fade { animation: gh-fade 1.1s .1s backwards; }
.anim-rise { animation: gh-rise 1s backwards; }

/* ---------- shared ---------- */
.kicker {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 14px;
}
.kicker--rust { color: var(--rust); }
.kicker--apricot { color: var(--apricot); }
.h2 {
  font-family: 'Spectral', serif; font-weight: 300; font-size: 46px; line-height: 1.08;
  margin: 0; letter-spacing: -.02em;
}
.h2--light { color: #fff; }
.section-head { max-width: 620px; margin-bottom: 60px; }
.section-head--center { text-align: center; max-width: none; margin-bottom: 58px; }

/* ---------- PROCESS ---------- */
.process { background: var(--cream); color: var(--ink); padding: 104px 0; }
.process__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step {
  background: #fff; border-radius: 20px; padding: 32px;
  box-shadow: 0 20px 44px -30px rgba(58,44,35,.5);
}
.step__num { font-family: 'Spectral', serif; font-size: 40px; color: var(--terra); margin-bottom: 16px; }
.step__title { font-family: 'Spectral', serif; font-weight: 500; font-size: 23px; margin: 0 0 10px; }
.step__text { font-size: 15px; line-height: 1.6; color: var(--espresso); margin: 0; }

/* ---------- PRICING ---------- */
.pricing { background: var(--ink); padding: 104px 0; position: relative; }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.plan {
  border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 34px 30px;
  transition: border-color .3s, transform .3s;
}
.plan:hover { border-color: var(--terra); transform: translateY(-6px); }
.plan--pop {
  background: linear-gradient(165deg,#e8a06b,#c9733f); color: #fff; border: none;
  box-shadow: 0 30px 60px -28px rgba(201,115,63,.7); transition: transform .3s;
}
.plan--pop:hover { border-color: transparent; transform: translateY(-10px); }
.plan__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.plan__name { font-family: 'Spectral', serif; font-size: 22px; margin-bottom: 6px; }
.plan--pop .plan__name { margin-bottom: 0; }
.plan__badge {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .1em;
  background: rgba(36,27,21,.55); padding: 4px 9px; border-radius: 100px;
}
.plan__sub { font-size: 13px; opacity: .6; margin-bottom: 22px; }
.plan__sub--light { opacity: .85; }
.plan__price { font-family: 'Spectral', serif; font-size: 48px; }
.plan__unit { font-size: 20px; opacity: .6; }
.plan__unit--light { opacity: .8; }
.plan__per { font-size: 12.5px; margin-bottom: 24px; }
.plan__per--apricot { color: var(--apricot); }
.plan__per--light { opacity: .9; }
.plan__features { display: flex; flex-direction: column; gap: 11px; font-size: 14px; opacity: .85; }
.plan__features--solid { opacity: 1; }

/* ---------- SERVICE AREA ---------- */
.areas { background: var(--sand); color: var(--ink); padding: 100px 0; }
.areas__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.areas .h2 { margin: 0 0 18px; }
.areas__text { font-size: 16px; line-height: 1.6; color: var(--espresso); margin: 0; }
.areas__en { color: var(--sage); font-style: italic; }
.areas__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff; color: var(--espresso); padding: 11px 20px; border-radius: 100px; font-size: 15px;
  transition: background .25s, color .25s, transform .25s; cursor: default;
}
.chip:hover { background: var(--terra); color: #fff; transform: translateY(-2px); }

/* ---------- ESTIMATOR ---------- */
.estimator { background: var(--ink); padding: 104px 0; }
.estimator__card {
  background: var(--cream); color: var(--ink); max-width: 760px; margin: 44px auto 0;
  border-radius: 22px; padding: 34px; box-shadow: 0 36px 70px -34px rgba(58,44,35,.7);
}
.estimator__row { display: flex; gap: 15px; flex-wrap: wrap; }
.est-field { flex: 1 1 220px; }
.est-group { margin-bottom: 16px; }
.field-label { display: block; font-size: 12.5px; color: var(--espresso); margin: 0 0 7px; font-weight: 500; }
.switch { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; font-size: 15px; color: var(--ink); }
.switch input { width: 18px; height: 18px; accent-color: var(--terra); cursor: pointer; }
.estimator__result {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-top: 4px; padding: 20px 22px; border-radius: 14px;
  background: #fff; border: 1px solid #eaddc9;
}
.estimator__price { font-family: 'Spectral', serif; font-size: 36px; line-height: 1; color: var(--rust); }
.estimator__per { font-size: 13px; color: var(--espresso); }
.estimator__note { font-size: 12.5px; color: var(--sage); line-height: 1.5; margin: 14px 0 0; }
.estimator__actions { margin-top: 20px; }

/* ---------- BOOKING ---------- */
.booking {
  position: relative; overflow: hidden; padding: 104px 0;
  background: linear-gradient(150deg,#f6cd98,#e8a06b 55%,#c9733f);
}
.booking__glow {
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 80% 10%, rgba(255,249,236,.8), transparent 55%);
}
.booking__grid {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.booking__copy { color: var(--ink); }
.booking__title {
  font-family: 'Spectral', serif; font-weight: 300; font-size: 52px; line-height: 1.06;
  margin: 0 0 20px; letter-spacing: -.02em;
}
.booking__text { font-size: 17px; line-height: 1.6; color: var(--espresso); max-width: 380px; margin: 0 0 28px; }
.booking__meta { display: flex; gap: 26px; font-size: 14px; color: var(--espresso); }

.form {
  background: var(--cream); border-radius: 22px; padding: 34px;
  box-shadow: 0 36px 70px -34px rgba(58,44,35,.7);
}
.form__col { display: flex; flex-direction: column; gap: 15px; }
.form__row { display: flex; gap: 15px; }
.field {
  border: 1px solid #eaddc9; background: #fff; border-radius: 11px; padding: 14px 16px;
  font-size: 15px; font-family: inherit; color: var(--ink); outline: none; transition: border-color .2s;
}
.field--select { flex: 1; color: var(--espresso); }
.field--area { resize: vertical; min-height: 84px; font-family: inherit; }
.field:focus { border-color: var(--terra); }
.field[readonly] { background: #f7efe2; color: var(--espresso); cursor: default; }
.submit-btn {
  background: var(--ink); color: #fff; border: none; border-radius: 11px; padding: 16px;
  font-size: 15.5px; font-weight: 600; font-family: inherit; cursor: pointer; margin-top: 4px;
  transition: background .25s, transform .25s;
}
.submit-btn:hover { background: var(--rust); transform: translateY(-2px); }
.form__fine { font-size: 11.5px; color: var(--sage); text-align: center; margin: 2px 0 0; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--cream); border-top: 1px solid rgba(255,255,255,.08); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 40px; }
.footer__name { font-family: 'Spectral', serif; font-size: 20px; }
.footer__copy { font-size: 13px; opacity: .55; }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .wrap, .nav { padding-left: 24px; padding-right: 24px; }
  .hero__title { font-size: 46px; }
  .hero__actions { flex-wrap: wrap; }
  .process__grid, .pricing__grid { grid-template-columns: 1fr; }
  .areas__grid, .booking__grid { grid-template-columns: 1fr; gap: 32px; }
  .nav__links { gap: 18px; font-size: 13.5px; }
  .booking__title { font-size: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__sky, .hero__video { animation: none; }
  .hero-parallax { transform: none !important; }
  .anim-fade, .anim-rise { animation: none; }
  [data-reveal] { transition: none; }
}
