/* =============================================
   MS. NAILS — Stylesheet
   ============================================= */

/* === RESET + ROOT === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest:    #1C3A2F;
  --forest-mid:#2A5240;
  --gold:      #C8A86B;
  --gold2:     #E8D0A0;
  --cream:     #F7F3EE;
  --cream2:    #EDE8E0;
  --parchment: #FAF7F3;
  --ink:       #1A1512;
  --ink-soft:  #5C5040;
  --white:     #FFFFFF;
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Jost', sans-serif;
  --tr: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--parchment);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* === CUSTOM CURSOR === */
.cur {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cur-r {
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.32s ease, width 0.3s ease, height 0.3s ease;
  opacity: 0.4;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 18, 13, 0.9);
  backdrop-filter: blur(20px);
  padding: 14px 56px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-logo-text {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--tr);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--tr);
  transform-origin: left;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(200, 168, 107, 0.18);
  border: 0.5px solid rgba(200, 168, 107, 0.55);
  padding: 11px 26px;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
}

.nav-book:hover {
  background: rgba(200, 168, 107, 0.35);
  border-color: var(--gold);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 201;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.32s ease;
  transform-origin: center;
}

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

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.5fr 1fr 0.75fr;
  gap: 2px;
}

.hero-img-col {
  overflow: hidden;
  position: relative;
}

.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Staggered vertical offset — creates wave rhythm */
.hero-img-col:nth-child(odd)  { padding-top: 7%; }
.hero-img-col:nth-child(even) { padding-bottom: 7%; }
.hero-img-col:nth-child(3)    { padding-top: 0; padding-bottom: 0; }

/* Ken Burns animations per column */
.hero-img-col:nth-child(1) img { animation: kb1 22s ease alternate infinite; }
.hero-img-col:nth-child(2) img { animation: kb2 20s ease alternate infinite; }
.hero-img-col:nth-child(3) img { animation: kb1 25s ease-in-out alternate infinite; }
.hero-img-col:nth-child(4) img { animation: kb2 21s ease alternate infinite; }
.hero-img-col:nth-child(5) img { animation: kb1 23s ease alternate infinite; }

@keyframes kb1 {
  0%   { transform: scale(1.12) translateY(0); }
  100% { transform: scale(1.0)  translateY(-4%); }
}
@keyframes kb2 {
  0%   { transform: scale(1.0)  translateY(-3%); }
  100% { transform: scale(1.1)  translateY(0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0) 20%),
    radial-gradient(ellipse 58% 52% at 50% 54%, rgba(0,0,0,0.58) 0%, transparent 100%);
  pointer-events: none;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

.hero-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: rgba(200, 168, 107, 0.72);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: #FFFFFF;
}

.hero-sub {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  max-width: 320px;
  margin: 0 auto 52px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  border: none;
  padding: 16px 38px;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}

.btn-p:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

.btn-g {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--tr);
}

.btn-g:hover { color: #FFFFFF; }

.btn-gl {
  width: 28px;
  height: 0.5px;
  background: currentColor;
  transition: width var(--tr);
}

.btn-g:hover .btn-gl { width: 44px; }

/* === MARQUEE STRIP === */
.marquee-strip {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}

.marquee-item {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 168, 107, 0.75);
  padding: 0 32px;
  font-weight: 400;
}

.marquee-dot { color: rgba(200, 168, 107, 0.35); padding: 0; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === STORY === */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

.story-photo {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.story-content {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 72px;
}

.story-eyebrow {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.story-title {
  font-family: var(--fd);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.story-title em { font-style: italic; color: var(--gold); }

.story-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.95;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.story-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(200, 168, 107, 0.4);
  padding: 7px 18px;
  font-weight: 400;
}

/* === DIFFERENTIATORS === */
.diff-section {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.diff-item {
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  transition: background var(--tr);
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.7s ease;
}

.diff-item:hover::before { width: 100%; }
.diff-item:hover { background: rgba(42, 82, 64, 0.35); }

.diff-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(200, 168, 107, 0.55);
  margin-bottom: 28px;
  font-weight: 400;
}

.diff-title {
  font-family: var(--fd);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}

.diff-title em { font-style: italic; color: var(--gold); }

.diff-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.95;
  letter-spacing: 0.03em;
  max-width: 380px;
}

.diff-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(200, 168, 107, 0.35);
  padding: 6px 16px;
  margin-top: 28px;
  font-weight: 400;
}

.diff-coming {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 6px 18px;
  margin-top: 28px;
  font-weight: 400;
}

/* === SERVICES === */
.services {
  padding: 112px 72px;
  background: #E8E1D6;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 16px;
}

.sec-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 18px;
  font-weight: 400;
}

.sec-title {
  font-family: var(--fd);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.sec-title em { font-style: italic; color: var(--forest); }

.services-sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-top: 20px;
  letter-spacing: 0.03em;
  padding-top: 16px;
}

.offer-strip {
  background: rgba(28, 58, 47, 0.04);
  border: 0.5px solid rgba(28, 58, 47, 0.1);
  border-left: 2px solid var(--forest);
  padding: 28px 40px;
  margin: 48px 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.offer-label {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
  font-weight: 400;
}

.offer-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  font-weight: 300;
}

/* Bento grid — 3 cols, zigzag wide cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28, 58, 47, 0.12);
}

/* Zigzag bento spans */
.svc-card:nth-child(1) { grid-column: span 2; }
.svc-card:nth-child(4) { grid-column: span 2; }
.svc-card:nth-child(5) { grid-column: 1 / span 2; }
.svc-card:nth-child(8) { grid-column: span 2; }
.svc-card:nth-child(9) { grid-column: 1 / -1; }

/* Base card */
.svc-card {
  padding: 52px 44px;
  transition: background 0.45s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Sweep line */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.svc-card:hover::before { transform: scaleX(1); }

/* ── ODD cards: warm cream default → green on hover ── */
.svc-card:nth-child(odd) {
  background: #E8E1D6;
}
.svc-card:nth-child(odd)::before { background: var(--forest); }

.svc-card:nth-child(odd) .svc-num  { color: rgba(28, 58, 47, 0.13); }
.svc-card:nth-child(odd) .svc-name { color: #0D0D0D; }
.svc-card:nth-child(odd) .svc-desc { color: #2E2416; }

.svc-card:nth-child(odd):hover                { background: #445C3A; }
.svc-card:nth-child(odd):hover .svc-num       { color: rgba(255, 255, 255, 0.1); }
.svc-card:nth-child(odd):hover .svc-name      { color: var(--white); }
.svc-card:nth-child(odd):hover .svc-desc      { color: rgba(255, 255, 255, 0.72); }
.svc-card:nth-child(odd):hover .svc-coming    { color: var(--gold); border-color: rgba(200,168,107,0.5); }

/* ── EVEN cards: green default → cream on hover ── */
.svc-card:nth-child(even) {
  background: var(--forest);
}
.svc-card:nth-child(even)::before { background: var(--gold); }

.svc-card:nth-child(even) .svc-num  { color: rgba(255, 255, 255, 0.09); }
.svc-card:nth-child(even) .svc-name { color: var(--white); }
.svc-card:nth-child(even) .svc-desc { color: rgba(255, 255, 255, 0.6); }

.svc-card:nth-child(even):hover                { background: var(--parchment); }
.svc-card:nth-child(even):hover .svc-num       { color: rgba(28, 58, 47, 0.07); }
.svc-card:nth-child(even):hover .svc-name      { color: var(--ink); }
.svc-card:nth-child(even):hover .svc-desc      { color: var(--ink-soft); }
.svc-card:nth-child(even):hover .svc-coming    { color: var(--forest); border-color: rgba(28,58,47,0.35); }

/* Oversized watermark number — editorial accent */
.svc-num {
  font-family: var(--fd);
  font-size: clamp(72px, 9vw, 104px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: color 0.45s ease;
  user-select: none;
}

.svc-name {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  transition: color 0.45s ease;
}

.svc-desc {
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
  max-width: 420px;
  letter-spacing: 0.02em;
  transition: color 0.45s ease;
}

.svc-coming {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(200, 168, 107, 0.45);
  padding: 5px 14px;
  margin-top: 14px;
  font-weight: 400;
  transition: all 0.45s ease;
}

/* Quote card — full-width, follows odd (cream) then inverts to green */
.svc-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 48px;
}

.svc-quote::before { display: none; }

.svc-quote p {
  font-family: var(--fd);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  transition: color 0.45s ease;
}


/* === HOW IT WORKS === */
.how {
  padding: clamp(36px, 5vh, 72px) 72px;
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.how-steps { margin-top: clamp(18px, 2.5vh, 36px); }

.how-step {
  display: flex;
  gap: 32px;
  margin-bottom: clamp(14px, 2vh, 36px);
}

.how-step-n {
  font-family: var(--fd);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 300;
  color: rgba(28, 58, 47, 0.18);
  line-height: 1;
  min-width: 56px;
  transition: color var(--tr);
}

.how-step:hover .how-step-n { color: var(--forest); }

.how-step-title {
  font-family: var(--fd);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.how-right {
  position: relative;
  background: var(--forest);
  height: clamp(380px, 72vh, 780px);
  overflow: hidden;
}

.how-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.45;
}

.how-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 48px;
  background: linear-gradient(to top, rgba(28, 58, 47, 0.98) 0%, rgba(28, 58, 47, 0.3) 100%);
}

.how-caption {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
}

.how-caption span { color: var(--gold); }

/* === BOOKING === */
.booking {
  padding: 112px 72px;
  background: var(--cream2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booking-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 26px 0 40px;
  letter-spacing: 0.03em;
}

.booking-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-form {
  background: var(--parchment);
  padding: 44px 38px;
  border: 0.5px solid rgba(28, 58, 47, 0.14);
}

.booking-form h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 30px;
}

.fgrp { margin-bottom: 20px; }

.flbl {
  display: block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
  font-weight: 400;
}

.finp {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 0.5px solid rgba(28, 58, 47, 0.22);
  background: none;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  cursor: pointer;
  transition: border-color var(--tr);
}

.finp::placeholder { color: rgba(92, 80, 64, 0.38); }
.finp:focus { border-color: var(--forest); }

.fsel {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 0.5px solid rgba(28, 58, 47, 0.22);
  background: none;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--tr);
}

.fsel:focus { border-color: var(--forest); }

.btn-sub {
  width: 100%;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  border: none;
  padding: 17px;
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--tr), transform var(--tr);
}

.btn-sub:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* === FOOTER === */
footer {
  background: var(--forest);
  padding: 76px 72px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.foot-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.foot-logo-text {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
}

.foot-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.85;
  max-width: 230px;
  letter-spacing: 0.03em;
}

.foot-col h4 {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.foot-col ul { list-style: none; }

.foot-col li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
  transition: color var(--tr);
  font-weight: 300;
  cursor: pointer;
}

.foot-col li:hover { color: var(--white); }

.foot-btm {
  background: var(--forest);
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding: 20px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
}

.foot-soc { display: flex; gap: 22px; }

.foot-soc a {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color var(--tr);
}

.foot-soc a:hover { color: var(--gold); }

/* === FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.vis {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — Mobile First
   ============================================= */

@media (max-width: 900px) {
  nav          { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  .nav-links   { gap: 22px; }
  .nav-book    { display: none; }
}

@media (max-width: 768px) {

  /* Nav — always has a background on mobile so items stay visible */
  nav {
    padding: 16px 20px;
    background: rgba(8, 14, 10, 0.72);
    backdrop-filter: blur(14px);
  }
  nav.scrolled {
    padding: 12px 20px;
    background: rgba(8, 14, 10, 0.94);
  }

  .nav-logo-text { font-size: 16px; letter-spacing: 0.14em; }
  .nav-logo-img  { width: 30px; height: 30px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 9, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    z-index: 199;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.24em;
  }

  .nav-book      { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-img-col:nth-child(4),
  .hero-img-col:nth-child(5) { display: none; }
  .hero-img-col:nth-child(odd)  { padding-top: 5%; }
  .hero-img-col:nth-child(even) { padding-bottom: 5%; }
  .hero-img-col:nth-child(3)    { padding: 0; }
  .hero-content  { padding: 0 20px; }
  .hero-title    { font-size: clamp(38px, 10vw, 58px); }
  .hero-sub      { font-size: 13px; max-width: 320px; }

  /* Story */
  .story                { grid-template-columns: 1fr; height: auto; }
  .story-photo          { height: 60vw; min-height: 280px; }
  .story-content        { padding: 52px 24px; }

  /* Diff */
  .diff-section         { grid-template-columns: 1fr; }
  .diff-item            { padding: 52px 24px; }

  /* Services */
  .services             { padding: 72px 20px; }
  .services-intro       { grid-template-columns: 1fr; gap: 24px; }
  .offer-strip          { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .services-grid        { grid-template-columns: 1fr; }
  .svc-card:nth-child(1),
  .svc-card:nth-child(4),
  .svc-card:nth-child(5),
  .svc-card:nth-child(8),
  .svc-card:nth-child(9) { grid-column: span 1; }
  .svc-card  { padding: 36px 24px; }
  .svc-num   { font-size: 52px; margin-bottom: 4px; }


  /* How */
  .how                  { grid-template-columns: 1fr; padding: 72px 20px; gap: 44px; height: auto; overflow: visible; }
  .how-right            { height: 56vw; min-height: 280px; }

  /* Booking */
  .booking              { grid-template-columns: 1fr; padding: 72px 20px; gap: 44px; }
  .booking-form         { padding: 32px 24px; }

  /* Footer */
  footer                { grid-template-columns: 1fr 1fr; padding: 56px 20px; gap: 28px; }
  .foot-btm             { padding: 18px 20px; flex-direction: column; gap: 12px; text-align: center; }

  /* Cursor */
  .cur, .cur-r          { display: none; }
  body                  { cursor: auto; }
  button, a             { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-col:nth-child(3),
  .hero-img-col:nth-child(4),
  .hero-img-col:nth-child(5) { display: none; }
  .hero-img-col:nth-child(1) { padding-top: 0; }
  .hero-img-col:nth-child(2) { padding-bottom: 0; }
  .hero-title  { font-size: clamp(34px, 11vw, 50px); }
  .hero-sub    { font-size: 12px; margin-bottom: 36px; }
  footer       { grid-template-columns: 1fr; }
}
