/* ============================================================
   AMIHAN SPA — sample luxury spa site
   Theme: dark luxe / plum and gold
   SAMPLE / PLACEHOLDER PROJECT · EulClavie web design demo
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:root {
  --night: #161219;
  --panel: #1F1922;
  --gold: #C9A227;
  --gold-l: #E4C765;
  --cream: #F2EDE6;
  --muted: #9C9299;
  --line: rgba(242,237,230,.14);
  --radius: 6px;
  --gutter: clamp(20px, 5vw, 76px);
  --max: 1240px;
  --bar-h: 30px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--cream); background: var(--night);
  padding-top: var(--bar-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--night); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; line-height: 1.06; letter-spacing: 0;  }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.35rem; }
.eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-l); }
.lead { color: var(--muted); font-size: 17px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 2px;
  font-size: 14.5px; font-weight: 600;
  letter-spacing: .01em; text-transform: uppercase; font-size: 12px; letter-spacing: .16em;
  background: var(--gold); color: #161219;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--panel); }

/* ---------- sample warning bar ---------- */
.sample-bar {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--bar-h);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--gold); color: #161219;
  font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding-inline: 14px; text-align: center;
}
.sample-bar .dim { color: rgba(22,18,25,.6); }
@media (max-width: 720px) { .sample-bar { font-size: 8.5px; letter-spacing: .14em; } .sample-bar .dim { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 150;
  background: rgba(22,18,25,.6);
  -webkit-backdrop-filter: blur(13px); backdrop-filter: blur(13px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.nav.is-solid { border-bottom-color: var(--line); background: rgba(22,18,25,.94); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .25s; text-transform: uppercase; letter-spacing: .16em; font-size: 11.5px; }
.nav__links a:hover { color: var(--cream); }
.nav__toggle { display: none; width: 36px; height: 36px; position: relative; }
.nav__toggle i { position: absolute; left: 7px; right: 7px; height: 2px; background: var(--cream); transition: transform .35s var(--ease); }
.nav__toggle i:nth-child(1) { top: 14px; }
.nav__toggle i:nth-child(2) { top: 21px; }
body.menu-open .nav__toggle i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .nav__toggle i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 960px) { .nav__links { display: none; } .nav__toggle { display: block; } }
@media (max-width: 540px) { .nav__inner > .btn { display: none; } }

.menu {
  position: fixed; inset: calc(var(--bar-h) + 74px) 0 0 0; z-index: 140;
  background: var(--night); padding: 26px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
body.menu-open .menu { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.menu a { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; font-size: 1.7rem; text-transform: uppercase; letter-spacing: .04em; padding-block: 12px; border-bottom: 1px solid var(--line); }
.menu .btn { margin-top: 22px; }

/* ---------- sections ---------- */
.section { padding-block: clamp(58px, 8vw, 116px); }
.sechead { max-width: 660px; }
.sechead h2 { margin-top: 12px; }
.sechead p { margin-top: 14px; color: var(--muted); }
.sechead--center { margin-inline: auto; text-align: center; }
.sechead--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sechead--split p { max-width: 40ch; margin-top: 0; }

/* ---------- sample notice ---------- */
.notice {
  border: 1px solid var(--line); background: var(--panel);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 32px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr); gap: clamp(14px, 3vw, 36px);
}
.notice b { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-l); }
.notice p { font-size: 13.5px; color: var(--muted); max-width: 64ch; }
.notice p + p { margin-top: 8px; }
@media (max-width: 760px) { .notice { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.foot { background: transparent; color: var(--cream); border-top: 1px solid var(--line); padding-block: clamp(44px, 5vw, 76px); }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 46px); }
.foot__brand p { margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 32ch; }
.foot h4 { font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.foot li + li { margin-top: 8px; }
.foot li, .foot a { font-size: 14.5px; }
.foot a:hover { color: var(--gold-l); }
.foot__bottom { margin-top: clamp(32px, 4vw, 54px); padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; font-size: 12.5px; color: var(--muted); }
@media (max-width: 820px) { .foot__top { grid-template-columns: repeat(2, 1fr); } .foot__brand { grid-column: 1 / -1; } }

/* ---------- reveal + page transition ---------- */
.rv { opacity: 0; transform: translateY(20px); }
.is-ready .rv { transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
.page { opacity: 0; transition: opacity .4s ease; }
.page.is-visible { opacity: 1; }
.page.is-leaving { opacity: 0; transition-duration: .25s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
  .page { opacity: 1; }
}


/* ---------- brand ---------- */
.brand { font-family: "Cormorant Garamond", serif; font-size: 26px; letter-spacing: .22em; text-transform: uppercase; }
.brand small { display: block; font-family: "Jost", sans-serif; font-size: 8.5px; letter-spacing: .3em; color: var(--muted); margin-top: 2px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: calc(100svh - var(--bar-h)); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: drift 26s var(--ease) forwards; }
@keyframes drift { to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 50%, rgba(22,18,25,.42), rgba(22,18,25,.9) 100%); }
.hero__inner { position: relative; z-index: 2; padding: calc(var(--bar-h) + 90px) var(--gutter) 60px; }
.hero h1 { max-width: 15ch; margin-inline: auto; }
.hero .lead { margin-top: 24px; max-width: 44ch; margin-inline: auto; color: rgba(242,237,230,.72); }
.hero__rule { width: 60px; height: 1px; background: var(--gold); margin: 26px auto; }
.hero__cta { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- journeys ---------- */
.journeys { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(34px, 4vw, 56px); }
.journey { border: 1px solid var(--line); background: var(--panel); overflow: hidden; display: flex; flex-direction: column; transition: border-color .5s var(--ease), transform .5s var(--ease); }
.journey:hover { border-color: rgba(201,162,39,.6); transform: translateY(-4px); }
.journey img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.85) brightness(.86); transition: transform 1.2s var(--ease), filter .8s var(--ease); }
.journey:hover img { transform: scale(1.05); filter: saturate(1) brightness(.95); }
.journey__body { padding: clamp(20px, 2.4vw, 30px); flex: 1; display: flex; flex-direction: column; }
.journey h3 { font-family: "Cormorant Garamond", serif; }
.journey p { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.journey__meta { margin-top: auto; padding-top: 20px; display: flex; justify-content: space-between; align-items: baseline; gap: 14px; border-top: 1px solid var(--line); }
.journey__meta b { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--gold-l); font-weight: 400; }
.journey__meta span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) { .journeys { grid-template-columns: 1fr; } }

/* ---------- band ---------- */
.band { position: relative; height: clamp(400px, 66vh, 660px); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(.9); }
.band__inner { position: relative; z-index: 2; padding-inline: var(--gutter); }
.band blockquote { font-family: "Cormorant Garamond", serif; font-size: clamp(1.5rem, 3.4vw, 2.8rem); font-style: italic; line-height: 1.3; max-width: 22ch; margin-inline: auto; }
.band cite { display: block; margin-top: 22px; font-style: normal; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(242,237,230,.66); }

/* ---------- memberships ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(34px, 4vw, 56px); }
.tier { border: 1px solid var(--line); padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; }
.tier--gold { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,39,.09), transparent 60%); }
.tier h3 { font-family: "Cormorant Garamond", serif; }
.tier__price { font-family: "Cormorant Garamond", serif; font-size: 2.6rem; margin-top: 14px; color: var(--gold-l); }
.tier__price small { font-family: "Jost", sans-serif; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tier ul { margin-top: 22px; margin-bottom: 28px; }
.tier li { font-size: 14.5px; color: var(--muted); padding-block: 10px; border-top: 1px solid var(--line); }
.tier .btn { margin-top: auto; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ---------- reserve ---------- */
.reserve { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: start; border: 1px solid var(--line); padding: clamp(26px, 4vw, 56px); }
.reserve dl div { display: flex; justify-content: space-between; gap: 18px; padding-block: 12px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.reserve dt { color: var(--muted); }
.reserve__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 860px) { .reserve { grid-template-columns: 1fr; } }
