/* ============================================================
   Velvara Med Spa — demo stylesheet
   Palette: ink / ivory / champagne, with the logo's rouge as accent
   ============================================================ */

:root {
  --ink:        #0C0B0B;
  --ink-soft:   #171515;
  --ink-line:   #2A2626;
  --ivory:      #F7F3EE;
  --ivory-dim:  #EDE6DE;
  --taupe:      #8C7F73;
  --taupe-dim:  #B4A79A;
  --gold:       #C6A56B;
  --rouge:      #A8172B;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script:  'Italiana', serif;

  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--taupe);
  margin: 0 0 1.1rem;
}

.eyebrow--gold { color: var(--gold); }

.lede { font-size: 1.1rem; color: var(--taupe); max-width: 62ch; }

.section { padding: clamp(72px, 9vw, 132px) 0; }
.section--ink { background: var(--ink); color: var(--ivory); }
.section--ink .lede { color: var(--taupe-dim); }
.section--tint { background: var(--ivory-dim); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 2.2em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--ivory); }

.btn--outline-light { background: transparent; border-color: rgba(247,243,238,.45); color: var(--ivory); }
.btn--outline-light:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }

.btn--sm { padding: .8em 1.6em; font-size: .7rem; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--taupe-dim);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  padding: .85em 24px;
}
.topbar strong { color: var(--ivory); font-weight: 400; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247,243,238,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12,11,11,.08);
  transition: background .3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-script);
  font-size: 1.72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: .58rem;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 7px;
  padding-left: .2em;
}

/* credential badges */
.creds {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-line);
}
.creds img {
  height: 72px;
  width: auto;
  background: var(--ivory);
  padding: 8px 12px;
  border-radius: 2px;
}
.creds img:last-child { padding: 0; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .35s var(--ease);
}
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 1px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.02);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,11,.55) 0%, rgba(12,11,11,.15) 32%, rgba(12,11,11,.82) 100%),
    linear-gradient(90deg, rgba(12,11,11,.62) 0%, rgba(12,11,11,0) 62%);
}
.hero__inner {
  position: relative;
  color: var(--ivory);
  padding-block: clamp(60px, 9vw, 110px);
  max-width: 780px;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.12rem;
  color: rgba(247,243,238,.82);
  max-width: 52ch;
  margin-bottom: 2.2em;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.6em; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247,243,238,.72);
}
.hero__meta .stars { color: var(--gold); letter-spacing: .12em; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink-soft);
  color: var(--taupe);
  border-block: 1px solid var(--ink-line);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: slide 42s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track span::after { content: '✦'; margin-left: 56px; color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(12,11,11,.1);
  background: var(--ivory);
}
.trust__item {
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid rgba(12,11,11,.1);
}
.trust__item:last-child { border-right: 0; }
.trust__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin-bottom: .28em;
}
.trust__label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- signature feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.feature__media { position: relative; }
.feature__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.feature__price {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--ink);
  color: var(--ivory);
  padding: 22px 28px;
  text-align: center;
}
.feature__price .n { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; display: block; }
.feature__price .l { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.feature__list { list-style: none; margin: 0 0 2em; padding: 0; }
.feature__list li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(12,11,11,.1);
  position: relative;
  font-size: .96rem;
}
.feature__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.section--ink .feature__list li { border-color: var(--ink-line); }

/* ---------- services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(12,11,11,.1);
}
.card {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 30px 28px 34px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .5em; }
.card__body p { font-size: .93rem; color: var(--taupe); flex: 1; }
.card__price {
  margin-top: 18px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid rgba(12,11,11,.12);
  padding-top: 16px;
}
.card__price b { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; letter-spacing: 0; }

/* ---------- founder ---------- */
.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.founder__media img { width: 100%; }
.founder blockquote {
  margin: 0 0 2em;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ivory);
}
.founder__sig { font-family: var(--font-script); font-size: 1.5rem; letter-spacing: .04em; color: var(--gold); }
.founder__role { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--ivory);
  border: 1px solid rgba(12,11,11,.1);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.review__stars { color: var(--gold); letter-spacing: .18em; margin-bottom: 18px; font-size: .9rem; }
.review__text { font-size: .95rem; color: #3B3634; flex: 1; }
.review__who {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(12,11,11,.1);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.review__who b { color: var(--ink); font-weight: 400; }

/* ---------- offer band ---------- */
.offer { display: grid; grid-template-columns: 1fr 1fr; }
.offer__panel { padding: clamp(48px, 6vw, 84px); }
.offer__panel--gold { background: var(--gold); color: var(--ink); }
.offer__panel--ink { background: var(--ink); color: var(--ivory); }
.offer__panel h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: .4em; }
.offer__panel p { max-width: 42ch; }
.offer__panel--gold p { color: rgba(12,11,11,.72); }
.offer__panel--ink p { color: var(--taupe-dim); }
.offer__fine { font-size: .74rem; letter-spacing: .1em; opacity: .7; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(12,11,11,.18);
  background: transparent;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--rouge); }
.field__msg { display: none; color: var(--rouge); font-size: .78rem; margin-top: 6px; }
.field--error .field__msg { display: block; }

.form__note { font-size: .78rem; color: var(--taupe); margin-top: 16px; }

.form__success {
  display: none;
  border: 1px solid var(--gold);
  background: rgba(198,165,107,.1);
  padding: 22px 24px;
  margin-bottom: 24px;
}
.form__success.is-visible { display: block; }
.form__success strong { font-family: var(--font-display); font-size: 1.3rem; display: block; margin-bottom: .3em; }

.info-list { list-style: none; margin: 0 0 2em; padding: 0; }
.info-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(12,11,11,.1);
  font-size: .95rem;
}
.info-list .k { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); padding-top: 4px; }
.info-list a:hover { color: var(--rouge); }

.map { width: 100%; height: 300px; border: 0; filter: grayscale(1) contrast(1.05); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--taupe); padding: 80px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer h4 { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; font-family: var(--font-body); font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 11px; font-size: .9rem; }
.footer a:hover { color: var(--gold); }
.footer__logo { height: 64px; width: auto; background: var(--ivory); padding: 8px 12px; margin-bottom: 22px; }
.footer__bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .76rem;
}
.footer__disclaimer { font-size: .76rem; line-height: 1.6; margin-top: 18px; opacity: .6; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid rgba(12,11,11,.1); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 340px);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.12);
  }
  .nav.is-open { transform: none; }
  .nav-toggle { display: flex; z-index: 70; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .feature, .founder, .contact, .offer { grid-template-columns: 1fr; }
  .feature__media { order: -1; }
  .founder__media { order: -1; }
  .feature__price { right: 16px; bottom: -16px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .services { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .info-list li { grid-template-columns: 1fr; gap: 4px; }
  .hero__cta .btn { width: 100%; }
}
