/* =========================================================
   HAMGUS BEAUTY PARLOUR — Premium Stylesheet
   Palette: ivory cream, champagne, deep espresso, rich gold
   ========================================================= */

:root {
  --ivory: #fbf8f1;
  --ivory-2: #f4ecdc;
  --blush: #e9d9b3;
  --blush-soft: #f9f3e6;
  --ink: #1b1510;
  --ink-2: #0f0b07;
  --gold: #c9a227;
  --gold-soft: #e8d29a;
  --gold-deep: #8a6a13;
  --charcoal: #241d16;
  --muted: #6e6252;
  --line: rgba(27, 21, 16, 0.12);
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  --script: "Great Vibes", "Segoe Script", cursive;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 18px rgba(27, 21, 16, 0.06);
  --shadow-md: 0 18px 44px rgba(27, 21, 16, 0.10);
  --shadow-lg: 0 30px 70px rgba(27, 21, 16, 0.16);
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}
.section-sub { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 0.9em;
}
.eyebrow-light { color: var(--gold-soft); }

.accent { color: var(--gold); }
.star { color: var(--gold); }
.stars { color: var(--gold); letter-spacing: 2px; }
.stars-lg { font-size: 1.3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn .ico { width: 17px; height: 17px; fill: currentColor; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-accent {
  background: linear-gradient(135deg, var(--gold), #e2c66b);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-3px); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 241, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  z-index: -1;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header.scrolled::before {
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.brand-text small {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav ul { display: flex; align-items: center; gap: 20px; }
.main-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.main-nav ul a:hover { color: var(--ink); }
.main-nav ul a:hover::after,
.main-nav ul a.active::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 11px 22px;
  font-size: 0.78rem;
  background: linear-gradient(135deg, #e6cd77, var(--gold) 45%, #9c7a17);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #e6cd77, var(--gold) 45%, #8a6a13);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Light header state while at the top, over the dark hero */
.site-header:not(.scrolled):not(.menu-open) .brand-mark {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.site-header:not(.scrolled):not(.menu-open) .brand-text strong { color: #fff; }
.site-header:not(.scrolled):not(.menu-open) .brand-text small { color: var(--gold-soft); }
.site-header:not(.scrolled):not(.menu-open) .hamburger {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}
.site-header:not(.scrolled):not(.menu-open) .hamburger span { background: #fff; }

@media (min-width: 1025px) {
  .site-header:not(.scrolled):not(.menu-open) .main-nav ul a { color: rgba(255, 255, 255, 0.92); }
  .site-header:not(.scrolled):not(.menu-open) .main-nav ul a:hover { color: #fff; }
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 10, 0.4);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav-scrim.show { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -12% 0 0 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(15, 11, 7, 0.82) 0%, rgba(27, 21, 16, 0.46) 42%, rgba(27, 21, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 11, 7, 0.55), transparent 55%);
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(600px 420px at 78% 32%, rgba(232, 210, 154, 0.28), transparent 70%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
  to { transform: translate3d(-3%, 2%, 0) scale(1.08); opacity: 1; }
}

.hero-inner { position: relative; z-index: 2; max-width: 720px; color: #fff; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25); }
.hero .eyebrow { color: var(--gold-soft); }
.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 2em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
}
.hero-rating strong { color: #fff; }
.hero-rating .rating-text { color: rgba(255, 255, 255, 0.9); }

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold-soft);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Trust ---------- */
.trust {
  background: var(--white);
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; position: relative; }
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--line);
}
.trust-value {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
}
.trust-value-sm { font-size: clamp(1.2rem, 2.3vw, 1.7rem); }
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.trust-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
  margin: 22px 0 0;
  letter-spacing: 0.06em;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-media { position: relative; }
.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-img-accent {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 46%;
  border: 8px solid var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-accent img { height: 190px; width: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  left: -18px;
  top: 26px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 3px solid var(--gold);
}
.about-badge .stars { font-size: 0.85rem; }
.about-badge strong { font-family: var(--serif); color: var(--ink); font-size: 1.15rem; }
.about-badge small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-copy h2 { margin-bottom: 0.5em; }
.about-copy p { color: var(--muted); }

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin: 26px 0 32px;
}
.about-points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.about-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---------- Services ---------- */
.services { background: var(--ivory-2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-media { position: relative; overflow: hidden; height: 220px; }
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27, 21, 16, 0.28));
}

.service-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { margin-bottom: 0.5em; }
.service-list { margin-bottom: 14px; }
.service-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.35);
}
.service-note {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: auto 0 16px;
}
.service-body .btn { align-self: flex-start; }

.service-card-cta {
  background: linear-gradient(150deg, var(--ink), var(--ink-2));
  color: #fff;
  justify-content: center;
}
.service-card-cta h3 { color: #fff; }
.service-card-cta p { color: rgba(255, 255, 255, 0.82); }
.service-cta-inner { padding: 40px 30px; text-align: center; }
.service-card-cta .btn { margin-top: 8px; }

/* ---------- Bridal ---------- */
.bridal {
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(201, 162, 39, 0.14), transparent 60%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}
.bridal-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.bridal-copy h2 { color: #fff; }
.bridal-copy p { color: rgba(255, 255, 255, 0.85); }
.bridal-list { margin: 22px 0 32px; display: grid; gap: 12px; }
.bridal-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.02rem;
}
.bridal-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}

.bridal-media { position: relative; }
.bridal-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.bridal-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.45);
}
.why-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blush-soft);
  margin-bottom: 18px;
}
.why-ico svg { width: 24px; height: 24px; fill: var(--ink); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.why-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { background: var(--ivory-2); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), opacity 0.4s var(--ease);
}
.gallery-item.hide { display: none; }
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(0deg, rgba(15, 11, 7, 0.78), transparent);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); }
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: -20px 0 46px;
  color: var(--muted);
}
.reviews-rating strong { color: var(--ink); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  position: relative;
  margin: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 30px 30px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blush);
}
.review-text {
  position: relative;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 22px;
}
.review-card footer { display: flex; flex-direction: column; gap: 8px; }
.review-source {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.review-context { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.reviews-actions { text-align: center; margin-top: 46px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(rgba(15, 11, 7, 0.82), rgba(15, 11, 7, 0.82)),
    url("https://images.pexels.com/photos/13068379/pexels-photo-13068379.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover fixed;
  color: #fff;
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.86); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: stretch;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.contact-info h3 { font-size: 2rem; margin-bottom: 0.6em; }
.contact-list { display: grid; gap: 22px; margin-bottom: 30px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.ci-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ci-value { font-size: 1.05rem; color: var(--charcoal); }
.ci-link { color: var(--ink); font-weight: 500; }
.ci-link:hover { color: var(--gold); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(1.02); }

/* ---------- YouTube ---------- */
.youtube { padding-top: 0; }
.youtube-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--ivory-2), var(--blush-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
}
.youtube-text { display: flex; align-items: center; gap: 20px; }
.youtube-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.2em; }
.youtube-text p { margin: 0; color: var(--muted); }
.yt-badge {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #ff0000;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.yt-badge svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(56px, 7vw, 84px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: var(--gold-soft); }
.footer-addr { margin-top: 18px; line-height: 1.7; }
.footer-phone a { color: var(--gold-soft); }
.footer-phone a:hover { color: #fff; }
.footer-nav h3,
.footer-social h3 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.footer-nav a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--gold-soft); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: all 0.35s var(--ease);
}
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-link:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer-note { margin-top: 18px; font-size: 0.85rem; color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p { margin: 0; }

/* ---------- Mobile call bar ---------- */
.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 30px rgba(27, 21, 16, 0.35);
}
.mobile-call svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5ce68f, #25d366 55%, #128c7e);
  color: #fff;
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Staggered reveals for card grids */
.service-grid > *:nth-child(2),
.why-grid > *:nth-child(2),
.gallery-grid > *:nth-child(2),
.review-grid > *:nth-child(2),
.trust-grid > *:nth-child(2) { transition-delay: 0.08s; }
.service-grid > *:nth-child(3),
.why-grid > *:nth-child(3),
.gallery-grid > *:nth-child(3),
.review-grid > *:nth-child(3),
.trust-grid > *:nth-child(3) { transition-delay: 0.16s; }
.service-grid > *:nth-child(4),
.why-grid > *:nth-child(4),
.gallery-grid > *:nth-child(4),
.trust-grid > *:nth-child(4) { transition-delay: 0.24s; }
.service-grid > *:nth-child(5),
.why-grid > *:nth-child(5),
.gallery-grid > *:nth-child(5) { transition-delay: 0.32s; }
.service-grid > *:nth-child(6),
.why-grid > *:nth-child(6),
.gallery-grid > *:nth-child(6) { transition-delay: 0.40s; }
.gallery-grid > *:nth-child(7),
.gallery-grid > *:nth-child(8) { transition-delay: 0.48s; }

/* Gentle floating accents */
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-badge { animation: floatSoft 6s ease-in-out infinite; }
.bridal-tag { animation: floatSoft 7s ease-in-out infinite; }

/* Soft shimmer on primary buttons */
.btn-primary,
.btn-accent { position: relative; overflow: hidden; }
.btn-primary::after,
.btn-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-accent:hover::after { left: 140%; }

/* Elegant divider under section headings */
.section-head h2 { position: relative; padding-bottom: 0.4em; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

/* =========================================================
   PREMIUM LAYER — richer depth, ornament & finish
   ========================================================= */

/* Soft champagne washes across the page */
body {
  background:
    radial-gradient(1100px 620px at 100% -5%, rgba(201, 162, 39, 0.10), transparent 62%),
    radial-gradient(900px 560px at -5% 45%, rgba(201, 162, 39, 0.07), transparent 60%),
    radial-gradient(1000px 700px at 50% 105%, rgba(151, 116, 26, 0.07), transparent 60%),
    var(--ivory);
  background-attachment: fixed;
}

/* Script accent typography */
.script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.14em;
}
.script-light { color: var(--gold-soft); }

/* Ornamental eyebrow with side rules */
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 14px; }
.section-head .eyebrow::before,
.section-head .eyebrow::after { content: ""; width: 42px; height: 1px; }
.section-head .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.section-head .eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* Gradient heading text */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-head h2 {
    background-image: linear-gradient(135deg, var(--ink), #9c7a17 55%, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* Header finish */
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.site-header.scrolled::after { opacity: 1; }
.site-header.scrolled { box-shadow: 0 10px 34px rgba(27, 21, 16, 0.10); }
.site-header.scrolled::before { background: rgba(251, 248, 241, 0.94); }

.brand-mark {
  background: linear-gradient(135deg, #3a2c12, var(--ink) 55%, #120d07);
  box-shadow: 0 8px 18px rgba(27, 21, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* Rich buttons */
.btn-primary {
  background: linear-gradient(135deg, #3a2c12, var(--ink) 50%, #120d07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 26px rgba(27, 21, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4a3a17, #241b0d 50%, #0f0a05);
  box-shadow: 0 18px 38px rgba(27, 21, 16, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-accent {
  background: linear-gradient(135deg, #e6cd77, var(--gold) 48%, #9c7a17);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #f0da8c, var(--gold) 48%, #8a6a13);
  color: #fff;
  box-shadow: 0 18px 38px rgba(201, 162, 39, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-outline { background: rgba(255, 255, 255, 0.5); }
.btn-outline:hover { background: var(--ink); border-color: var(--ink); }

/* Trust band as a deep espresso premium strip */
.trust {
  position: relative;
  color: #fff;
  border-bottom: none;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(201, 162, 39, 0.30), transparent 60%),
    linear-gradient(135deg, var(--ink-2), var(--ink) 55%, #3a2c12);
}
.trust::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 210, 154, 0.7), transparent);
}
.trust-value { color: #fff; }
.trust-label { color: rgba(255, 255, 255, 0.72); }
.trust-note { color: rgba(255, 255, 255, 0.55); }
.trust-item:not(:last-child)::after { background: rgba(255, 255, 255, 0.16); }

/* Section depth */
.services { background: linear-gradient(180deg, var(--ivory-2), #f4ecdc); }
.gallery { background: linear-gradient(180deg, #f4ecdc, var(--ivory-2)); }
.why { background: linear-gradient(180deg, var(--ivory), var(--ivory-2)); }
.reviews { background: linear-gradient(180deg, #ffffff, var(--blush-soft)); }

/* Premium cards */
.service-card,
.why-card,
.review-card {
  border: 1px solid rgba(201, 162, 39, 0.16);
  box-shadow: 0 10px 30px rgba(27, 21, 16, 0.08);
}
.service-card { background: linear-gradient(180deg, #ffffff, #fefcf7); }
.service-card:hover {
  box-shadow: 0 30px 60px rgba(27, 21, 16, 0.16), 0 0 0 1px rgba(201, 162, 39, 0.35);
}
.why-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fcf8ee);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.why-card:hover::before { opacity: 1; }
.why-ico {
  background: linear-gradient(135deg, var(--gold-soft), #f6efdc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 6px 14px rgba(201, 162, 39, 0.2);
}
.review-card { background: linear-gradient(180deg, #ffffff, #fbf6ea); }
.review-card:hover { box-shadow: 0 30px 60px rgba(27, 21, 16, 0.14); }

/* Decorative frames for feature imagery */
.about-media::before,
.bridal-media::after {
  content: "";
  position: absolute;
  inset: 22px -20px -20px 22px;
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}
.about-media::before { border: 1px solid rgba(201, 162, 39, 0.45); }
.bridal-media::after { border: 1px solid rgba(232, 210, 154, 0.55); }
.about-img-main img { box-shadow: 0 26px 60px rgba(27, 21, 16, 0.22); }
.bridal-media img { box-shadow: 0 30px 70px rgba(10, 8, 5, 0.5); }

/* Gallery inner ring */
.gallery-item { box-shadow: 0 10px 26px rgba(27, 21, 16, 0.10); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

/* Bridal section glow */
.bridal {
  background:
    radial-gradient(900px 480px at 88% 0%, rgba(201, 162, 39, 0.32), transparent 62%),
    radial-gradient(700px 500px at 5% 100%, rgba(151, 116, 26, 0.28), transparent 60%),
    linear-gradient(135deg, #241a0d, var(--ink) 50%, #140e08);
}

/* Contact & YouTube finish */
.contact-info {
  background: linear-gradient(180deg, #ffffff, #fbf6ea);
  border-color: rgba(201, 162, 39, 0.18);
  box-shadow: 0 20px 50px rgba(27, 21, 16, 0.12);
}
.contact-map { box-shadow: 0 26px 60px rgba(27, 21, 16, 0.18); }
.youtube-inner {
  background:
    radial-gradient(520px 260px at 92% 0%, rgba(201, 162, 39, 0.18), transparent 62%),
    linear-gradient(120deg, var(--ivory-2), var(--blush-soft));
  box-shadow: 0 16px 44px rgba(27, 21, 16, 0.10);
}
.youtube-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Footer finish */
.site-footer {
  position: relative;
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(201, 162, 39, 0.24), transparent 60%),
    linear-gradient(180deg, var(--ink-2), #0c0805);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 210, 154, 0.6), transparent);
}

/* =========================================================
   GOLD THEME FINISH — buttons, contrast, shine & cursor
   ========================================================= */

/* Gold call-to-action buttons */
.btn-primary,
.btn-gold,
.nav-cta {
  background: linear-gradient(135deg, #f0da8c, var(--gold) 45%, #9c7a17);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-primary:hover,
.btn-gold:hover,
.nav-cta:hover {
  background: linear-gradient(135deg, #f7e6a6, #d4ad33 45%, #8a6a13);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(201, 162, 39, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.btn-outline { color: var(--ink); border-color: rgba(138, 106, 19, 0.45); background: rgba(255, 255, 255, 0.4); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.mobile-call {
  background: linear-gradient(135deg, #e6cd77, var(--gold));
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.5);
}

/* Gold-on-light text contrast */
.eyebrow { color: var(--gold-deep); }
.brand-text small { color: var(--gold-deep); }
.ci-label,
.review-source,
.service-note { color: var(--gold-deep); }
.ci-link { color: var(--ink); }
.ci-link:hover { color: var(--gold-deep); }
.filter-btn.is-active { background: linear-gradient(135deg, #e6cd77, var(--gold)); border-color: var(--gold); color: var(--ink); }
.filter-btn:hover { color: var(--ink); border-color: var(--gold); }

/* Animated gold sheen across section headings */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-head h2 {
    background-image: linear-gradient(100deg, var(--ink) 0%, #7a5c12 28%, var(--gold) 50%, #7a5c12 72%, var(--ink) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldSheen 8s linear infinite;
  }
}
@keyframes goldSheen {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Floating gold dust in the hero */
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  bottom: -12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 210, 154, 0.95), rgba(201, 162, 39, 0) 70%);
  animation: dustRise linear infinite;
  opacity: 0;
}
@keyframes dustRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.7; }
  100% { transform: translateY(-108vh) scale(1.15); opacity: 0; }
}

/* Gold progress bar at the top of the page */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 1200;
  background: linear-gradient(90deg, #f0da8c, var(--gold), #9c7a17);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.7);
}

/* Custom gold cursor (fine pointers only) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3000;
  opacity: 0;
}
.cursor-dot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: radial-gradient(circle at 35% 35%, #f7e6a6, var(--gold));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.9);
}
.cursor-ring {
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 1.5px solid rgba(201, 162, 39, 0.85);
  transition: opacity 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease),
    margin 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 66px; height: 66px;
  margin: -33px 0 0 -33px;
  background: rgba(201, 162, 39, 0.16);
  border-color: rgba(232, 210, 154, 0.95);
}
body.cursor-hover .cursor-dot { opacity: 0; }
body.cursor-down .cursor-ring {
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  background: rgba(201, 162, 39, 0.35);
}

@media (pointer: fine) {
  body.cursor-active,
  body.cursor-active a,
  body.cursor-active button,
  body.cursor-active .btn,
  body.cursor-active input,
  body.cursor-active .filter-btn,
  body.cursor-active .gallery-item,
  body.cursor-active .social-link { cursor: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  body { background-attachment: scroll; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: span 2; }
}

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

  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    background: linear-gradient(180deg, #ffffff, var(--ivory-2));
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 26px) 28px 40px;
    box-shadow: -20px 0 50px rgba(27, 21, 16, 0.18);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav ul a { display: block; padding: 16px 4px; font-size: 0.95rem; }
  .main-nav ul a::after { display: none; }
  .nav-cta { margin-top: 28px; width: 100%; justify-content: center; }
  .main-nav::after {
    content: "";
    margin-top: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero { min-height: 92svh; }
  .hero-inner { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-main img { height: 420px; }
  .about-img-accent { width: 42%; right: 0; bottom: -26px; }
  .about-img-accent img { height: 150px; }

  .bridal-grid { grid-template-columns: 1fr; }
  .bridal-media { order: -1; }
  .bridal-media img { height: 400px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 26px 10px; }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(odd)::after { right: -5px; }

  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-row: span 2; }

  .about-points { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-img-main img { height: 360px; }
  .about-media::before,
  .bridal-media::after { inset: 14px -12px -12px 14px; }

  .youtube-inner { flex-direction: column; align-items: flex-start; }
  .youtube-text { flex-direction: column; align-items: flex-start; gap: 14px; }

  .cta-band { background-attachment: scroll; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-nav ul { grid-template-columns: 1fr 1fr; }

  .mobile-call { display: flex; }
  .whatsapp-float { right: 14px; bottom: 84px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  body { padding-bottom: 84px; }
}

@media (max-width: 380px) {
  .brand-text strong { font-size: 1.2rem; letter-spacing: 0.1em; }
  .btn { padding: 12px 22px; font-size: 0.85rem; }
  .hero-actions .btn { width: 100%; }
}
