/* =========================================================
   COZY SALON N ACADEMY — Global Stylesheet
   Author: Website build for Cozy Salon n Academy, Boudha, Kathmandu
   Structure:
   Reset · Variables · Typography · Global · Header/Navigation ·
   Hero · Buttons · Sections/Headings · Cards · Services ·
   Academy · Courses · Gallery/Lightbox · FAQ · Contact/Form ·
   Footer · Utilities · Animations · Responsive · Accessibility
   ========================================================= */

/* ---------------- 1. RESET ---------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg { display: block; max-width: 100%; height: auto; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

ul[class],
ol[class] { list-style: none; }

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

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--rose-soft); color: var(--cream); }

/* ---------------- 2. VARIABLES ---------------- */
:root {
  /* Brand palette — warm, cozy rose + champagne gold + deep espresso */
  --cream: #fdfaf7;
  --cream-2: #f9f2ec;
  --sand: #f3e7dd;
  --sand-deep: #e9d9cb;

  --ink: #241a1c;
  --ink-soft: #55444a;
  --ink-mute: #7d6d73;

  --rose: #b0687a;
  --rose-deep: #8d4557;
  --rose-soft: #e2b7c1;
  --rose-tint: #fbeef0;

  --gold: #b99154;
  --gold-soft: #d8bb8c;

  --white: #ffffff;
  --line: rgba(36, 26, 28, 0.11);
  --line-strong: rgba(36, 26, 28, 0.2);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.6rem, 6.2vw, 5.1rem);
  --fs-h1: clamp(2.2rem, 5vw, 3.9rem);
  --fs-h2: clamp(1.75rem, 3.4vw, 2.7rem);
  --fs-h3: clamp(1.2rem, 1.7vw, 1.5rem);
  --fs-h4: 1.06rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.75rem, 8vw, 7.5rem);
  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --radius-xl: 34px;

  /* Effects */
  --shadow-s: 0 2px 10px rgba(36, 26, 28, 0.06);
  --shadow: 0 14px 40px -18px rgba(36, 26, 28, 0.28);
  --shadow-l: 0 34px 70px -30px rgba(36, 26, 28, 0.38);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --header-h: 84px;
}

/* ---------------- 3. TYPOGRAPHY ---------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 500; }

p { color: var(--ink-soft); }

.display {
  font-size: var(--fs-display);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.italic { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--gold-soft); }

.text-center { text-align: center; }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.lead--center { margin-inline: auto; }

.section-title { margin-bottom: 1rem; }

.section-sub {
  font-size: 1.03rem;
  color: var(--ink-mute);
  max-width: 60ch;
}

.section-sub--center { margin-inline: auto; }

.script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose);
}

/* ---------------- 4. GLOBAL ---------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.section--sand { background: var(--cream-2); }
.section--dark { background: var(--ink); }
.section--dark h2,
.section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(253, 250, 247, 0.72); }
.section--rose { background: linear-gradient(160deg, var(--rose-tint), var(--cream-2)); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.section-head--center { text-align: center; margin-inline: auto; }

.divider-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
}

.divider-flourish::before,
.divider-flourish::after {
  content: "";
  width: clamp(40px, 8vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.divider-flourish::after {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.link-arrow .arrow {
  transition: transform 0.35s var(--ease);
  font-size: 1.05rem;
  line-height: 1;
}

.link-arrow:hover { color: var(--rose-deep); border-bottom-color: var(--rose-deep); }
.link-arrow:hover .arrow { transform: translateX(5px); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-s);
  transition: top 0.25s var(--ease);
}

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

/* ---------------- 5. HEADER / NAVIGATION ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 250, 247, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.site-header.is-stuck {
  background: rgba(253, 250, 247, 0.96);
  box-shadow: 0 8px 30px -22px rgba(36, 26, 28, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1 1 0%;
  min-width: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--rose-deep), var(--rose));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px -8px rgba(141, 69, 87, 0.8);
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.55rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.18rem;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible { color: var(--ink); }

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after { transform: scaleX(1); }

.nav__link.is-active { color: var(--rose-deep); }

/* Header actions (phone + CTA + hamburger) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
}

.btn__text-short { display: none; }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-s);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}

.header__phone:hover { color: var(--rose-deep); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  flex-shrink: 0;
}

.hamburger:hover { border-color: var(--rose); }

.hamburger__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), width 0.4s var(--ease);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  top: 0;
  z-index: 190;
  padding: 1.5rem var(--gutter) 2.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transform: translateY(-102%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
  max-height: calc(100vh - 1rem);
  box-shadow: var(--shadow-l);
}

.nav-drawer.is-open { transform: translateY(0); }

.nav-drawer .nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.nav-drawer .nav__link {
  padding: 0.95rem 0.25rem;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}

.nav-drawer .nav__link::after { left: 0; right: auto; width: 26px; bottom: 0.85rem; }

.drawer__ctas {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.drawer__meta {
  display: grid;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--ink-mute);
}

.drawer__meta a { color: var(--rose-deep); }

/* ---------------- 6. HERO ---------------- */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(120% 80% at 88% 4%, rgba(226, 183, 193, 0.4) 0%, transparent 58%),
    radial-gradient(90% 70% at 4% 96%, rgba(216, 187, 140, 0.22) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title { margin-bottom: 1.35rem; }

.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; animation: riseIn 1s var(--ease) both; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.24s; }

.hero__text {
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.2rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__trust span.dot { color: var(--gold); }

.hero__visual { position: relative; }

.hero__frame {
  position: relative;
  border-radius: 320px 320px var(--radius-l) var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(36, 26, 28, 0.34));
}

.hero__arch-outline {
  position: absolute;
  inset: -1.25rem -1.25rem auto auto;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-soft);
  border-radius: 340px 340px var(--radius-l) var(--radius-l);
  pointer-events: none;
  opacity: 0.55;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(253, 250, 247, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow);
  animation: floatY 7s ease-in-out infinite;
}

.float-card--services {
  left: -1.5rem;
  bottom: 2.5rem;
  max-width: 250px;
}

.float-card--tag {
  right: -0.75rem;
  top: 2.25rem;
  padding: 0.85rem 1.15rem;
  text-align: center;
  animation-delay: 1.2s;
}

.float-card__label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}

.float-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.float-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.float-card__list span {
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
}

.float-card--tag .float-card__big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-deep);
}

/* Marquee strip */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--cream);
  overflow: hidden;
  padding-block: 1.05rem;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: slideLeft 34s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

.marquee__item::after { content: "✦"; color: var(--gold); font-size: 0.8rem; }

/* ---------------- 7. BUTTONS ---------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: var(--cream);
  box-shadow: 0 14px 30px -14px rgba(141, 69, 87, 0.75);
}

.btn--primary::before { background: var(--ink); }
.btn--primary:hover::before { transform: translateY(0); }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--cream); border-color: var(--ink); }
.btn--ghost:hover::before { transform: translateY(0); }

.btn--light {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.6);
}

.btn--light::before { background: var(--rose-deep); }
.btn--light:hover { color: var(--cream); }
.btn--light:hover::before { transform: translateY(0); }

.btn--outline-light {
  border-color: rgba(253, 250, 247, 0.45);
  color: var(--cream);
  background: transparent;
}

.btn--outline-light::before { background: var(--cream); }
.btn--outline-light:hover { color: var(--ink); border-color: var(--cream); }
.btn--outline-light:hover::before { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2a1f11;
  box-shadow: 0 14px 30px -14px rgba(185, 145, 84, 0.7);
}

.btn--gold::before { background: var(--cream); }
.btn--gold:hover { color: var(--rose-deep); }
.btn--gold:hover::before { transform: translateY(0); }

.btn--sm { min-height: 44px; padding: 0.6rem 1.25rem; font-size: 0.75rem; }
.btn--block { width: 100%; }
.btn--link {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--rose-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.btn--link::before { display: none; }
.btn--link:hover { transform: none; color: var(--ink); }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-group--center { justify-content: center; }

/* ---------------- 8. SECTION / LAYOUT BLOCKS ---------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--sidebar { grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid--sidebar-rev { grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding-block: clamp(3.25rem, 7vw, 6rem);
  background:
    radial-gradient(110% 90% at 82% 0%, rgba(226, 183, 193, 0.42) 0%, transparent 60%),
    radial-gradient(80% 60% at 6% 100%, rgba(216, 187, 140, 0.25) 0%, transparent 62%),
    var(--cream-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero__inner { max-width: 800px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}

.breadcrumb a:hover { color: var(--rose-deep); }
.breadcrumb span[aria-hidden] { color: var(--gold); }

.page-hero h1 { margin-bottom: 1.1rem; }

.page-hero__art {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: clamp(220px, 30vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  opacity: 0.35;
  pointer-events: none;
}

/* Media frames */
.media-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.media-frame:hover img { transform: scale(1.06); }

.media-frame--arch { border-radius: 260px 260px var(--radius-l) var(--radius-l); aspect-ratio: 3 / 4; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 16 / 11; }
.media-frame--square { aspect-ratio: 1 / 1; }

.media-stack { position: relative; }

.media-stack__secondary {
  position: absolute;
  right: -1.25rem;
  bottom: -2rem;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-l);
  aspect-ratio: 4 / 5;
}

.media-stack__secondary img { width: 100%; height: 100%; object-fit: cover; }

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: var(--rose-deep);
}

.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.4rem;
  max-width: 14ch;
}

/* ---------------- 9. CARDS ---------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-l);
  border-color: rgba(176, 104, 122, 0.3);
}

.card__body { padding: clamp(1.4rem, 2.4vw, 2rem); }

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.card:hover .card__media img { transform: scale(1.08); }

.card__kicker {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.65rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.card__text { font-size: 0.96rem; color: var(--ink-soft); }

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  border: 1px solid rgba(176, 104, 122, 0.28);
}

.badge--gold {
  background: rgba(216, 187, 140, 0.22);
  color: #7a5c25;
  border-color: rgba(185, 145, 84, 0.35);
}

.badge--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253, 250, 247, 0.45);
}

.badge--float {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(253, 250, 247, 0.95);
}

/* Icon circle */
.icon-circle {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--rose-tint), var(--cream-2));
  border: 1px solid rgba(176, 104, 122, 0.22);
  color: var(--rose-deep);
  flex: none;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease);
}

.icon-circle svg { width: 24px; height: 24px; stroke-width: 1.3; }

.feature-card:hover .icon-circle {
  transform: rotate(-8deg) scale(1.06);
  background: linear-gradient(140deg, var(--rose-deep), var(--rose));
  color: var(--cream);
}

/* Feature cards (Why Cozy) */
.feature-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.feature-card__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.45rem; }
.feature-card__text { font-size: 0.94rem; }

/* Numbered list */
.num-list { display: grid; gap: 1.4rem; }

.num-list__item { display: flex; gap: 1.1rem; align-items: flex-start; }

.num-list__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--rose);
  min-width: 2.4rem;
  padding-top: 0.15rem;
}

.num-list__title { font-family: var(--font-display); font-size: 1.22rem; margin-bottom: 0.3rem; }
.num-list__text { font-size: 0.95rem; }

/* Checklist */
.check-list { display: grid; gap: 0.85rem; }

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.32rem;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at center, var(--gold) 0 40%, transparent 42%);
}

.check-list--light li { color: rgba(253, 250, 247, 0.78); }
.check-list--light li::before { border-color: var(--gold-soft); background: radial-gradient(circle at center, var(--gold-soft) 0 40%, transparent 42%); }

/* ---------------- 10. SERVICES ---------------- */
.service-card { display: flex; flex-direction: column; height: 100%; }

.service-card .card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36, 26, 28, 0.42));
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.service-card:hover .card__media::after { opacity: 1; }

.service-card .card__body { display: flex; flex-direction: column; flex: 1; }

.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
}

.service-card__list li {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.service-card__foot { margin-top: auto; }

/* Service detail rows (services page) */
.service-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-row:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.service-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sand);
}

.service-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-row:hover .service-row__media img { transform: scale(1.07); }

.service-row__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.service-row__name { font-family: var(--font-display); font-size: 1.35rem; }

.price-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

.service-row__text { font-size: 0.95rem; }

.service-row__foot { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }

/* ---------------- 11. ACADEMY ---------------- */
.academy-block { position: relative; overflow: hidden; }

.academy-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--cream);
  max-width: 28ch;
}

/* Split salon/academy panels */
.split-panels { display: grid; grid-template-columns: 1fr 1fr; }

.split-panel {
  position: relative;
  min-height: clamp(400px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  overflow: hidden;
  isolation: isolate;
}

.split-panel__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.split-panel__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split-panel:hover .split-panel__bg img { transform: scale(1.07); }

.split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background 0.6s var(--ease);
}

.split-panel--salon::before { background: linear-gradient(180deg, rgba(36, 26, 28, 0.18), rgba(36, 26, 28, 0.8)); }
.split-panel--academy::before { background: linear-gradient(180deg, rgba(141, 69, 87, 0.35), rgba(36, 26, 28, 0.85)); }

.split-panel__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}

.split-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.split-panel__text {
  color: rgba(253, 250, 247, 0.82);
  font-size: 0.98rem;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

/* Journey / process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; counter-reset: step; }

.step {
  position: relative;
  padding: 1.75rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step__num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--rose-soft);
  margin-bottom: 0.7rem;
}

.step__title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.35rem; }
.step__text { font-size: 0.9rem; }

/* ---------------- 12. COURSES ---------------- */
.course-card { display: flex; flex-direction: column; height: 100%; }

.course-card .card__body { display: flex; flex-direction: column; flex: 1; }

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 1.1rem;
}

.course-meta__item {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.32rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.course-card__foot { margin-top: auto; }

/* Filter buttons */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.filter-btn {
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.filter-btn:hover { color: var(--rose-deep); border-color: var(--rose); transform: translateY(-2px); }

.filter-btn.is-active {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  border-color: transparent;
  color: var(--cream);
  box-shadow: 0 10px 24px -14px rgba(141, 69, 87, 0.8);
}

/* Filtering animation */
.filter-item { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.filter-item.is-hidden { display: none; }

/* ---------------- 13. GALLERY ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  cursor: pointer;
  border: 0;
  padding: 0;
  text-align: left;
  display: block;
  min-height: 0;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(36, 26, 28, 0.72));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

.gallery-item:hover img { transform: scale(1.09); }

.gallery-item__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.5s var(--ease);
}

.gallery-item:hover .gallery-item__caption,
.gallery-item:focus-visible .gallery-item__caption { transform: translateY(0); opacity: 1; }

.gallery-item__cat {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.gallery-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.15;
}

.span-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }
.span-2.row-2 { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  background: rgba(20, 14, 15, 0.95);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__stage {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(3.5rem, 8vh, 5rem) clamp(1rem, 6vw, 6rem) 1.25rem;
  min-height: 0;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  animation: zoomIn 0.45s var(--ease) both;
}

.lightbox__caption {
  padding: 1rem clamp(1rem, 6vw, 6rem) 1.75rem;
  text-align: center;
  color: rgba(253, 250, 247, 0.85);
  font-size: 0.95rem;
}

.lightbox__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.lightbox__counter {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(253, 250, 247, 0.1);
  border: 1px solid rgba(253, 250, 247, 0.28);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.lightbox__btn:hover { background: rgba(253, 250, 247, 0.24); }

.lightbox__btn--prev { left: clamp(0.5rem, 2vw, 2rem); }
.lightbox__btn--next { right: clamp(0.5rem, 2vw, 2rem); }
.lightbox__btn--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__btn--next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 2vh, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(253, 250, 247, 0.1);
  border: 1px solid rgba(253, 250, 247, 0.28);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.4s var(--ease);
}

.lightbox__close:hover { background: rgba(253, 250, 247, 0.24); transform: rotate(90deg); }

/* Instagram grid */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; }

.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-s);
  background: var(--sand);
}

.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.insta-tile:hover img { transform: scale(1.1); }

.insta-tile::after {
  content: "↗";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--cream);
  background: rgba(141, 69, 87, 0.55);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.insta-tile:hover::after { opacity: 1; }

/* Social cards */
.social-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.social-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--rose-deep), var(--rose));
  color: var(--cream);
  flex: none;
}

.social-card__handle { font-size: 0.9rem; color: var(--ink-mute); }
.social-card__name { font-family: var(--font-display); font-size: 1.2rem; }

/* ---------------- 14. TESTIMONIALS ---------------- */
.testi-card {
  position: relative;
  height: 100%;
  padding: clamp(1.6rem, 2.6vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.testi-card__quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.7;
  color: var(--rose-soft);
}

.testi-card__text {
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.55;
  color: var(--ink);
}

.testi-card__foot {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.testi-card__author { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }

.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.85rem; }

/* ---------------- 15. FAQ ---------------- */
.faq-list { max-width: 880px; margin-inline: auto; display: grid; gap: 0.85rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.faq-item.is-open { border-color: rgba(176, 104, 122, 0.35); box-shadow: var(--shadow); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.faq-q:hover { color: var(--rose-deep); }

.faq-q__icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.faq-q__icon::before,
.faq-q__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.4px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease), background 0.4s var(--ease);
}

.faq-q__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.is-open .faq-q__icon {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--cream);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-q__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.faq-a > div { overflow: hidden; }

.faq-a p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.98rem;
}

.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* ---------------- 16. CONTACT / FORM ---------------- */
.contact-card {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

.contact-line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child { border-bottom: 0; }

.contact-line__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose-tint);
  color: var(--rose-deep);
  flex: none;
}

.contact-line__icon svg { width: 20px; height: 20px; stroke-width: 1.4; }

.contact-line__label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
}

.contact-line__value { font-size: 1.02rem; color: var(--ink); }
.contact-line__value a:hover { color: var(--rose-deep); }

.form { display: grid; gap: 1.1rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field label .req { color: var(--rose-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(176, 104, 122, 0.16);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0392b; background: #fdf3f2; }

.field__error {
  font-size: 0.78rem;
  color: #b1342a;
  display: none;
}

.field.has-error .field__error { display: block; }

.form__notice {
  padding: 0.95rem 1.15rem;
  font-size: 0.88rem;
  border-radius: var(--radius-s);
  background: rgba(216, 187, 140, 0.18);
  border: 1px solid rgba(185, 145, 84, 0.32);
  color: #6d5224;
}

.form__success {
  display: none;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  border-radius: var(--radius-s);
  background: rgba(46, 125, 90, 0.1);
  border: 1px solid rgba(46, 125, 90, 0.32);
  color: #23684c;
}

.form__success.is-visible { display: block; }

/* Map */
.map-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 320px;
  background: var(--sand);
}

.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: saturate(0.85); }

/* Location strip */
.location-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: rgba(253, 250, 247, 0.14);
  border: 1px solid rgba(253, 250, 247, 0.16);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.location-strip__cell {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(36, 26, 28, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-strip__label {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.location-strip__value { font-size: 1.02rem; color: var(--cream); }
.location-strip__value a:hover { color: var(--gold-soft); }

/* ---------------- 17. CTA BANNER ---------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  background:
    radial-gradient(100% 100% at 12% 0%, rgba(141, 69, 87, 0.95) 0%, transparent 55%),
    radial-gradient(90% 90% at 92% 100%, rgba(185, 145, 84, 0.6) 0%, transparent 55%),
    var(--ink);
  box-shadow: var(--shadow-l);
}

.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(253, 250, 247, 0.78);
  max-width: 52ch;
  margin: 0 auto 2rem;
}

/* ---------------- 18. FOOTER ---------------- */
.site-footer {
  background: var(--ink);
  color: rgba(253, 250, 247, 0.68);
  padding-top: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand .brand__name { color: var(--cream); }
.footer-brand .brand__tag { color: rgba(253, 250, 247, 0.5); }

.footer-about { font-size: 0.94rem; margin-top: 1.25rem; max-width: 34ch; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(253, 250, 247, 0.22);
  color: rgba(253, 250, 247, 0.8);
  transition: all 0.35s var(--ease);
}

.footer-social a:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--cream);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-title {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

.footer-links { display: grid; gap: 0.6rem; }

.footer-links a {
  font-size: 0.94rem;
  color: rgba(253, 250, 247, 0.68);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-block;
}

.footer-links a:hover { color: var(--cream); transform: translateX(4px); }

.footer-contact { display: grid; gap: 0.85rem; font-size: 0.94rem; }

.footer-contact a { color: rgba(253, 250, 247, 0.8); }
.footer-contact a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(253, 250, 247, 0.12);
  font-size: 0.82rem;
}

.footer-bottom p { color: rgba(253, 250, 247, 0.5); }

/* ---------------- 19. BACK TO TOP ---------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 150;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(253, 250, 247, 0.3);
  background: linear-gradient(140deg, var(--rose-deep), var(--rose));
  color: var(--cream);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  box-shadow: var(--shadow);
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* ---------------- 20. UTILITIES ---------------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.75rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.75rem; }
.maxw-60 { max-width: 60ch; }
.maxw-70 { max-width: 70ch; }

.note {
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-style: italic;
}

code {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-style: normal;
  font-size: 0.78em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(36, 26, 28, 0.06);
  border: 1px solid var(--line);
}

/* Contact page: details card + enquiry form */
.grid--contact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: start;
}

@media (max-width: 1024px) {
  .grid--contact { grid-template-columns: minmax(0, 1fr); }
}

/* ---------------- 21. ANIMATIONS ---------------- */
@keyframes riseIn {
  from { transform: translateY(105%); }
  to { transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ---------------- 22. RESPONSIVE ---------------- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gallery-grid { grid-auto-rows: 170px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 76px; }

  .nav,
  .header__phone { display: none; }

  .hamburger { display: flex; }

  .header__actions { gap: 0.5rem; }
  .btn--sm { padding: 0.55rem 1rem; font-size: 0.72rem; }

  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 560px; margin-inline: auto; width: 100%; }

  .grid--sidebar,
  .grid--sidebar-rev { grid-template-columns: 1fr; }

  .grid--sidebar-rev .media-frame,
  .grid--sidebar-rev .media-stack { order: -1; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .split-panels { grid-template-columns: 1fr; }
  .split-panel { min-height: 340px; }
  .service-row { grid-template-columns: 1fr; }
  .service-row__media { aspect-ratio: 16/9; }
}

@media (max-width: 780px) {
  .btn__text-full { display: none; }
  .btn__text-short { display: inline; }
  .btn--sm { padding: 0.5rem 0.85rem; font-size: 0.7rem; letter-spacing: 0.1em; min-height: 40px; }
  .header__actions { gap: 0.4rem; }

  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .span-2, .row-2, .span-2.row-2 { grid-column: span 1; grid-row: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card--services { left: 0.75rem; bottom: 1rem; padding: 0.9rem 1.05rem; max-width: 210px; }
  .float-card--tag { right: 0.5rem; top: 1rem; }
  .hero__arch-outline { display: none; }
  .lightbox__btn { width: 44px; height: 44px; }
  .faq-q { padding: 1.1rem 1.15rem; }
  .faq-a p { padding: 0 1.15rem 1.25rem; }
}

@media (max-width: 560px) {
  :root { --header-h: 68px; }

  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .brand__name { font-size: 0.95rem; letter-spacing: 0.12em; }
  .brand__mark { width: 38px; height: 38px; font-size: 1.15rem; }
  .btn--sm { padding: 0.45rem 0.7rem; font-size: 0.65rem; min-height: 36px; letter-spacing: 0.08em; }
  .header__actions { gap: 0.35rem; }
  .hero__ctas .btn,
  .btn-group .btn { width: 100%; }
  .stat-row { gap: 1.25rem; }
  .feature-card { padding: 1.3rem; }
  .card__foot { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .filters { justify-content: flex-start; }
  .filter-btn { flex: 1 1 auto; min-height: 48px; }
}

@media (max-width: 380px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-auto-rows: 130px; }
  .float-card--services { display: none; }
}

/* ---------------- 23. ACCESSIBILITY ---------------- */
:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.section--dark :focus-visible,
.site-footer :focus-visible,
.lightbox :focus-visible { outline-color: var(--gold-soft); }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

body.nav-locked { overflow: hidden; }

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; }
  .float-card { animation: none; }
  .card:hover,
  .feature-card:hover,
  .step:hover,
  .social-card:hover,
  .testi-card:hover,
  .service-row:hover,
  .btn:hover { transform: none; }
  .card:hover .card__media img,
  .service-row:hover .service-row__media img,
  .gallery-item:hover img,
  .insta-tile:hover img,
  .media-frame:hover img,
  .split-panel:hover .split-panel__bg img { transform: none; }
}

@media print {
  .site-header, .nav-drawer, .to-top, .lightbox, .marquee { display: none !important; }
  body { background: #fff; }
}
