/* ================================================================
   TUNE CRAFT — style.css
   Premium Cultural Dress Rental & Music Academy
   ================================================================ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Palette */
  --bg:        #FAF8F4;
  --bg2:       #F5F1EA;
  --accent:    #C48A3A;
  --accent-dk: #A87028;
  --accent-lt: #D9A862;
  --text:      #2D2D2D;
  --muted:     #6A6A6A;
  --white:     #FFFFFF;
  --dark-foot: #1A120A;
  --border:    rgba(196, 138, 58, 0.18);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --nav-h:   76px;
  --max-w:   1240px;
  --gutter:  clamp(1.5rem, 5vw, 3rem);

  /* Motion */
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.45, 0, 0.55, 1);
  --dur:     0.4s;

  /* Shadow */
  --sh-sm:   0 4px 20px rgba(45, 45, 45, 0.07);
  --sh-md:   0 10px 40px rgba(45, 45, 45, 0.10);
  --sh-lg:   0 20px 60px rgba(45, 45, 45, 0.14);
}

/* ── 2. RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur) var(--ease);
}

ul { list-style: none; }

button {
  font-family: var(--sans);
  border: none;
  background: none;
  cursor: pointer;
}

address { font-style: normal; }

/* ── 3. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}

/* ── 4. TYPOGRAPHY UTILITIES ────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: clamp(0.625rem, 1.5vw, 0.6875rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow.light { color: var(--accent-lt); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.125rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.h2 em {
  font-style: italic;
  color: var(--accent);
}

.body-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.125rem;
}

/* Section header */
.sec-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.sec-intro {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 1rem;
}

.sec-header.center .sec-intro {
  margin-inline: auto;
}

/* Section footer (center-aligned CTA) */
.sec-footer {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

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

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-fill {
  background: var(--accent);
  color: var(--white);
}

.btn-fill:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 138, 58, 0.38);
}

.btn-ghost {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 138, 58, 0.3);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-nav {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── 6. SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ── 7. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text);
  transition: color var(--dur);
}

.logo-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  flex-shrink: 0;
}

.bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.38s var(--ease);
  transform-origin: center;
}

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

/* ── 8. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(250, 248, 244, 0.94) 0%,
    rgba(250, 248, 244, 0.72) 40%,
    rgba(250, 248, 244, 0.22) 70%,
    rgba(250, 248, 244, 0.06) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: calc(var(--nav-h) + 3.5rem) 6rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8.5vw, 7rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

/* ── Highlight Strip ──────────────────────────────────────── */
.highlight-strip {
  background: #C48A3A;
  color: #ffffff;
  text-align: center;
  padding: 0.9rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.9rem;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.9vw, 19px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.highlight-strip span {
  white-space: nowrap;
}

.strip-sep {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  font-size: 1em;
  user-select: none;
}

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

/* ── 9. ABOUT PREVIEW ───────────────────────────────────────── */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

/* Decorative frame on image */
.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1.5px solid var(--border);
  pointer-events: none;
  z-index: 0;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: linear-gradient(135deg, #e8ddd0, #d4c4b0);
  transition: transform 0.7s var(--ease);
}

.about-img-wrap:hover img {
  transform: scale(1.02);
}

/* Badge overlay */
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 108px;
}

.badge-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.badge-l {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 3px;
  display: block;
}

/* About copy */
.about-copy .h2 {
  margin-block: 0.5rem 1.5rem;
}

/* Stats */
.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-block: 2rem 2.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  display: inline-block;
}

.stat-sym {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--accent);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.725rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── 10. FEATURED COLLECTIONS ───────────────────────────────── */
.collections-section {
  background: var(--bg);
}

.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.col-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.col-card:hover,
.col-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  outline: none;
}

.col-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #e8ddd0, #cdb89a);
}

.col-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.col-card:hover .col-img-wrap img {
  transform: scale(1.08);
}

.col-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(250, 248, 244, 0.94);
  color: var(--accent);
  padding: 0.35rem 0.75rem;
}

.col-body {
  padding: 1.25rem 1.375rem 1.625rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.35s;
}

.col-card:hover .col-body,
.col-card:focus-visible .col-body {
  border-color: var(--accent);
}

.col-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
  transition: color 0.35s;
}

.col-card:hover .col-title { color: var(--accent-dk); }

.col-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.col-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.35s var(--ease);
}

.col-card:hover .col-cta { gap: 0.625rem; }

/* ── 11. MUSIC ACADEMY ──────────────────────────────────────── */
.music-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--bg2);
}

.music-img-col {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e0d0bc, #c8b09a);
  min-height: 420px;
}

.music-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s var(--ease-io);
}

.music-section:hover .music-img-col img {
  transform: scale(1.04);
}

.music-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.08);
}

.music-copy-col {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(2rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.music-copy-col .h2 {
  margin-block: 0.5rem 1.25rem;
}

.music-features {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-block: 0.5rem 2.75rem;
}

.music-feat {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}

.feat-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
  line-height: 40px;
  text-align: center;
}

.music-feat:hover .feat-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.music-feat strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.music-feat span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── 12. WHY CHOOSE US ──────────────────────────────────────── */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2.5rem 2rem 2.25rem;
  background: var(--bg);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.why-card:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.why-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.375rem;
  transition: all 0.35s var(--ease);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.why-card:hover .why-icon svg {
  stroke: var(--white);
}

.why-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.625rem;
  transition: color 0.35s;
}

.why-card:hover .why-title { color: var(--accent-dk); }

.why-desc {
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── 13. GALLERY PREVIEW ────────────────────────────────────── */
.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gal-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8ddd0, #cdb89a);
  cursor: pointer;
}

.gal-tall  { grid-row: span 2; }
.gal-wide  { grid-column: span 2; }

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

.gal-item:hover img { transform: scale(1.07); }

.gal-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.75) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.725rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}

.gal-item:hover .gal-cap {
  opacity: 1;
  transform: translateY(0);
}

/* ── 14. TESTIMONIALS ───────────────────────────────────────── */
.testi-section {
  background: var(--bg2);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  border-top: 3px solid transparent;
  transition: all 0.4s var(--ease);
}

.testi-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.85;
  flex: 1;
  quotes: '\201C' '\201D';
}

.testi-quote::before {
  content: open-quote;
  color: var(--accent);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 0.15em;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}

.testi-role {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── 15. CTA SECTION ────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--text);
}

.cta-media {
  position: absolute;
  inset: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 138, 58, 0.12) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-body {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-block: 0.5rem 1.25rem;
}

.cta-h2 em {
  font-style: italic;
  color: var(--accent-lt);
}

.cta-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 16. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark-foot);
  color: rgba(255, 255, 255, 0.45);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(196, 138, 58, 0.12);
}

/* Footer brand */
.footer-logo { margin-bottom: 1.125rem; }
.footer-logo .logo-text { color: var(--white); }

.footer-about {
  font-size: 0.855rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.38);
  max-width: 300px;
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 138, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.35s var(--ease);
}

.soc-btn svg {
  width: 15px;
  height: 15px;
}

.soc-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer cols */
.footer-heading {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.3s;
  position: relative;
  width: fit-content;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.footer-links a:hover { color: var(--accent-lt); }
.footer-links a:hover::after { width: 100%; }

/* Footer contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.38);
}

.contact-row svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row a {
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.3s;
}

.contact-row a:hover { color: var(--accent-lt); }

.contact-person {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.contact-person > div {
  min-width: 0;
}

.contact-person strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-person a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.4rem;
}

.whatsapp-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 138, 58, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.35s var(--ease);
}

.whatsapp-btn svg {
  width: 16px;
  height: 16px;
}

.whatsapp-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
}

.footer-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.22); }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--accent-lt); }

/* ── 17. BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(196, 138, 58, 0.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.back-top svg { width: 16px; height: 16px; }

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 138, 58, 0.45);
}

/* ── 18. RESPONSIVE ─────────────────────────────────────────── */

/* Large tablet → small desktop */
@media (max-width: 1100px) {
  .col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-about { max-width: 100%; }
}

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-img-wrap::before { display: none; }
  .about-img-wrap img { aspect-ratio: 16 / 9; }
  .about-img-badge { bottom: 1.5rem; right: 1.5rem; }

  .music-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .music-img-col { min-height: clamp(280px, 55vw, 460px); }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Show hamburger, hide desktop nav */
  .nav-toggle { display: flex; }
  .btn-nav    { display: none; }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 1000;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    font-size: 1rem;
    color: var(--text);
  }

  /* Hero */
  .hero-heading { font-size: clamp(2.75rem, 10vw, 4.25rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-br      { display: none; }

  /* Collections */
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gal-wide { grid-column: span 1; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small mobile */
@media (max-width: 500px) {
  .col-grid  { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }

  .stats-row { gap: 1rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gal-tall { grid-row: span 1; }

  .about-img-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 0.875rem 1.25rem;
  }

  .badge-n { font-size: 1.75rem; }
}
