/* ============================================================
   LUSS studio — beauty web template
   Palette: white · cream · gold · pale pink (minimalist)
   Type: Playfair Display (display) + Inter (body)
   ============================================================ */

:root {
  /* Brand palette (from brief: biela, krémová, zlatá, bledo ružová)
     Tuned to the two reference swatches: "krémová zlatá" = warm champagne gold,
     "púdrová ružová" = clean cool powder pink (not peachy). */
  --white:      #ffffff;
  --cream:      #faf6ef;   /* krémová — warm off-white */
  --cream-deep: #f1e7d6;   /* deeper warm cream */
  --pink:       #f7dfe2;   /* púdrová ružová — clean powder pink */
  --pink-deep:  #f0ccd2;   /* deeper powder pink */
  --pink-soft:  #fbeef0;   /* powder pink wash */
  --gold:       #8f7338;   /* zlatá — antique champagne gold (text/accents, AA-safe) */
  --gold-soft:  #c2a772;   /* champagne gold (fills, hovers) */
  --gold-line:  #e4d3ab;   /* light champagne (borders/dividers) */
  --gold-bright:#cdb27e;   /* logo champagne highlight */

  --ink:        #2f2a26;   /* warm near-black for text */
  --ink-soft:   #6b6258;
  --muted:      #9b9186;

  --bg:         var(--cream);
  --surface:    var(--white);
  --border:     #ece2d2;
  --logo-cream: #f4eee4;   /* matches the logo image background (navbar/footer) */

  --shadow-sm: 0 1px 2px rgba(47, 42, 38, .04), 0 2px 8px rgba(47, 42, 38, .04);
  --shadow-md: 0 8px 24px rgba(47, 42, 38, .08);
  --shadow-lg: 0 24px 60px rgba(47, 42, 38, .12);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

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

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

* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Shared bits ---------- */
.eyebrow {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .9rem;
}

.section-title { font-size: clamp(2.3rem, 1.5rem + 3.4vw, 3.8rem); }
.section-sub   { color: var(--ink-soft); margin-top: .8rem; max-width: 46ch; }

.section-head { text-align: center; max-width: 46rem; margin: 0 auto 3.2rem; }
.section-head .section-sub { margin-inline: auto; }
.section-head .eyebrow { font-size: clamp(1.05rem, .9rem + .6vw, 1.35rem); letter-spacing: .16em; margin-bottom: 1.1rem; }
.section-head .section-title { position: relative; display: inline-block; padding-bottom: .9rem; }
.section-head .section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Decorative rule, echoes the "⸻" dividers in the brief */
.rule { display: grid; place-items: center; padding: 2.4rem 0; }
.rule span {
  width: 64px; height: 1px;
  background: var(--gold-line);
  position: relative;
}
.rule span::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); top: -3px; left: 50%; transform: translateX(-50%);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .85rem; --pad-x: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-weight: 500; font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
}
.btn--solid {
  background: var(--ink); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--solid:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--gold-line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { --pad-y: 1.05rem; --pad-x: 2rem; font-size: 1rem; }
.btn:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }

/* ============================================================
   Promo bar
   ============================================================ */
.promo-bar {
  background: linear-gradient(90deg, var(--ink), #45382c);
  color: #f6ecd9;
}
.promo-bar__inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex; align-items: center; gap: .85rem;
  padding: .65rem 0; font-size: .85rem;
}
.promo-bar p { margin: 0; }
.promo-bar strong { color: #fff; }
.promo-bar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); flex: none; animation: pulse 2.4s infinite; }
.promo-bar__cta {
  margin-left: auto; flex: none;
  border: 1px solid rgba(255,255,255,.35);
  padding: .3rem .9rem; border-radius: 100px; font-weight: 500;
  transition: background-color .2s var(--ease);
}
.promo-bar__cta:hover { background: rgba(255,255,255,.14); }

@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: .35; }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--logo-cream);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled { border-color: var(--gold-line); box-shadow: 0 6px 24px rgba(47,42,38,.06); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
/* Logo renders large but its negative vertical margins keep the navbar height
   unchanged (it overflows the bar instead of growing it). */
.brand { position: relative; z-index: 1; }
.brand__logo { height: 90px; width: auto; object-fit: contain; margin-block: -17px; }
.brand__fallback { display: none; align-items: center; gap: .7rem; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-family: "Playfair Display", serif; font-size: 1.25rem; font-weight: 600;
  border: 1px solid var(--gold);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.15rem; letter-spacing: .02em; }
.brand__sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a { font-size: .94rem; color: var(--ink-soft); position: relative; transition: color .2s var(--ease); }
.nav > a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav > a:not(.nav__cta):hover { color: var(--ink); }
.nav > a:not(.nav__cta):hover::after { width: 100%; }
.nav a.nav__cta { color: var(--white); }
.nav a.nav__cta:hover { color: var(--white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(580px, 82vh, 840px);
  display: flex; align-items: center;
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(160deg, var(--cream-deep), var(--pink-deep));
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 20%; }
.hero__bg.is-missing img { display: none; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg,
      var(--cream) 0%, rgba(250,246,239,.96) 30%,
      rgba(250,246,239,.70) 48%, rgba(250,246,239,.22) 66%, rgba(250,246,239,0) 84%),
    linear-gradient(0deg, rgba(250,246,239,.5), transparent 26%);
}
.hero__inner { width: min(100% - 2.5rem, var(--container)); }
.hero__content { max-width: 600px; }
.hero__title { font-size: clamp(2.4rem, 1.3rem + 4.8vw, 4.6rem); margin: .2rem 0 1.3rem; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 44ch; }

/* Akcia pill — sits in the text area, never over the photo */
.hero__akcia {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: 1.8rem 0 .2rem;
  background: var(--pink); border: 1px solid var(--gold-line);
  border-radius: 100px; padding: .45rem .95rem .45rem .5rem;
  font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.hero__akcia:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero__akcia:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }
.hero__akcia-tag {
  background: var(--gold); color: #fff; font-weight: 700;
  font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .65rem; border-radius: 100px; flex: none;
}
.hero__akcia-text strong { color: var(--gold); font-weight: 700; }
.hero__akcia-text i { color: var(--muted); font-style: normal; text-decoration: line-through; font-size: .85em; margin-left: .2rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 2.4rem; }
.hero__stats {
  list-style: none; padding: 0; display: flex; gap: 2.4rem; flex-wrap: wrap;
  border-top: 1px solid var(--gold-line); padding-top: 1.6rem;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats .num { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--gold); line-height: 1.15; }
.hero__stats .lbl { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   About
   ============================================================ */
.about {
  padding: clamp(3.5rem, 2rem + 5vw, 6rem) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, transparent 18%, transparent 82%, var(--cream) 100%),
    radial-gradient(55% 60% at 8% 50%, var(--pink) 0%, transparent 62%),
    radial-gradient(40% 50% at 95% 12%, var(--cream-deep) 0%, transparent 58%),
    var(--cream);
}
.about__inner {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 10%, var(--pink) 0%, transparent 55%),
    linear-gradient(160deg, var(--cream-deep), var(--pink-deep));
  border: 1px solid var(--gold-line);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait img.is-missing { display: none; }
.portrait__hint { color: var(--ink-soft); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.about__badge {
  position: absolute; right: -14px; bottom: 26px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.about__badge svg { width: 26px; height: 26px; fill: var(--gold); flex: none; }
.about__badge span { font-size: .8rem; line-height: 1.25; color: var(--ink); font-weight: 500; }

.about__text p { color: var(--ink-soft); margin-top: 1rem; max-width: 56ch; }
.about__text .section-title { margin-bottom: 1.2rem; }
.about__quote {
  margin-top: 1.6rem !important;
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: 1.2rem; line-height: 1.5; color: var(--ink) !important;
  border-left: 2px solid var(--gold); padding-left: 1.3rem;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  padding: clamp(3.5rem, 2rem + 5vw, 6rem) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, transparent 18%, transparent 82%, var(--cream) 100%),
    radial-gradient(55% 55% at 100% 6%, var(--pink-soft) 0%, transparent 62%),
    radial-gradient(55% 55% at 0% 94%, var(--cream-deep) 0%, transparent 62%),
    var(--cream);
}
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: start;
}
.price-card {
  position: relative;
  background: linear-gradient(170deg, var(--pink-soft) 0%, var(--white) 72%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* Accent bars: pink — gold — pink, all the same intensity */
.price-card::before {
  content: ""; position: absolute; top: 0; left: 1.8rem; right: 1.8rem; height: 4px;
  border-radius: 0 0 4px 4px; opacity: 1;
  background: linear-gradient(90deg, var(--pink-deep), #e7abb6);
}
.pricing__grid > .price-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.4rem; padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--gold-line);
}
.price-card__head h3 { font-size: 1.5rem; }
.chip {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); background: var(--pink);
  padding: .35rem .75rem; border-radius: 100px; white-space: nowrap;
}

.price-list { list-style: none; padding: 0; display: grid; gap: .2rem; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px dashed var(--gold-line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list__name { color: var(--ink); font-weight: 500; font-size: .98rem; }
.price-list__name small { color: var(--muted); font-weight: 400; }
.price-list__val {
  font-family: "Playfair Display", serif; font-size: 1.25rem;
  color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.price-list__val--accent { color: var(--gold); font-weight: 700; }
.price-list__akcia {
  background: var(--pink); margin: .4rem -1rem -0.5rem; padding: .8rem 1rem !important;
  border-radius: var(--radius-sm); border-bottom: 0 !important;
}
.akcia-tag {
  display: inline-block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--white); background: var(--gold);
  padding: .15rem .5rem; border-radius: 5px; margin-right: .5rem; vertical-align: middle;
}

.pricing__note {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-top: 2rem; padding: 1.1rem 1.3rem;
  background: var(--cream-deep); border-radius: var(--radius-sm);
  color: var(--ink-soft); font-size: .9rem; max-width: 56rem; margin-inline: auto;
}
.pricing__note svg { width: 20px; height: 20px; fill: var(--gold); flex: none; margin-top: 2px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: clamp(3rem, 2rem + 5vw, 6rem) 0; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(150deg, var(--cream-deep), var(--pink-deep));
  aspect-ratio: 4 / 5;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tile:nth-child(2) { background: linear-gradient(150deg, var(--pink), var(--cream-deep)); }
.tile:nth-child(3) { background: linear-gradient(150deg, var(--cream), var(--gold-line)); }
.tile:nth-child(4) { background: linear-gradient(150deg, var(--pink-deep), var(--pink)); }
.tile:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .5s var(--ease);
}
.tile { cursor: zoom-in; }
.tile:hover img { transform: scale(1.06); }
.tile img.is-missing { display: none; }
.gallery__hint { text-align: center; margin-top: 1.6rem; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.gallery__hint a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; transition: color .2s var(--ease); }
.gallery__hint a:hover { color: var(--ink); }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 4vmin;
  background: rgba(36, 31, 27, .82);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { margin: 0; display: flex; }
.lightbox__img {
  display: block;
  max-width: 92vw; max-height: 92vh;   /* capped per-image via JS to native size */
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  transform: scale(.88); opacity: 0;
  transition: transform .38s var(--ease), opacity .3s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__close {
  position: absolute; top: clamp(12px, 3vw, 26px); right: clamp(12px, 3vw, 28px);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close svg { width: 20px; height: 20px; fill: #fff; }
.lightbox__close:hover { background: rgba(255, 255, 255, .3); transform: rotate(90deg); }
.lightbox__close:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  padding: clamp(3.5rem, 2rem + 5vw, 6rem) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, transparent 18%, transparent 82%, var(--cream) 100%),
    radial-gradient(58% 62% at 90% 10%, var(--pink) 0%, transparent 62%),
    radial-gradient(45% 50% at 5% 100%, var(--cream-deep) 0%, transparent 60%),
    var(--cream);
}
.contact__inner { max-width: 980px; margin-inline: auto; text-align: center; }

.contact__list {
  list-style: none; padding: 0; margin: 2.6rem auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  max-width: 720px;
}
.contact__list li {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  background: var(--surface); border: 1px solid var(--gold-line);
  border-radius: var(--radius); padding: 1.9rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ci {
  width: 54px; height: 54px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pink); border: 1px solid var(--gold-line);
}
.ci svg { width: 24px; height: 24px; fill: var(--gold); }
.contact__list strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: .25rem; }
.contact__list div { color: var(--ink-soft); font-size: .95rem; line-height: 1.55; }
.contact__phone {
  display: inline-block;
  color: var(--gold); font-weight: 600;
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
  transition: color .2s var(--ease);
}
.contact__phone:hover { color: var(--ink); }

.contact__social { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.9rem; }
.social {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .95rem; color: var(--ink); font-weight: 500;
  background: var(--surface); border: 1px solid var(--gold-line);
  padding: .6rem 1.1rem; border-radius: 100px;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.social svg { width: 20px; height: 20px; fill: var(--gold); }
.social:hover { color: var(--gold); border-color: var(--gold-soft); transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-top: 1px solid var(--gold-line);
  color: var(--ink-soft);
  padding: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem) 0 2rem;
}
.footer__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 60% at 10% 0%, var(--pink) 0%, transparent 55%),
    radial-gradient(42% 70% at 90% 8%, rgba(205,178,126,.28) 0%, transparent 55%);
}
.footer__grid, .footer__bottom { position: relative; z-index: 1; }
.footer__grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.1fr; gap: 2.5rem;
  padding-bottom: 2.4rem; border-bottom: 1px solid var(--gold-line);
}
.footer__logo {
  height: clamp(110px, 11vw, 150px); width: auto; object-fit: contain;
  margin: calc(-3.6rem + 10px) 0 -1.2rem -0.6rem;   /* crop the PNG's internal whitespace (top gap) */
}
.footer__brand-fallback { display: none; font-family: "Playfair Display", serif; font-size: 1.7rem; color: var(--gold); }
.footer__tagline { max-width: 32ch; font-size: .92rem; color: var(--ink-soft); margin-top: .6rem; line-height: 1.55; }
.footer__socials { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--gold-line);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.footer__social svg { width: 20px; height: 20px; fill: var(--gold); transition: fill .2s var(--ease); }
.footer__social:hover { background: var(--gold); transform: translateY(-2px); }
.footer__social:hover svg { fill: #fff; }

.footer__col h4 {
  font-family: "Playfair Display", serif; font-weight: 600;
  font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem;
}
.footer__col a, .footer__col p {
  display: block; font-size: .92rem; color: var(--ink-soft); margin-bottom: .6rem; line-height: 1.55;
}
.footer__col a { width: fit-content; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__col a.footer__phone { color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.footer__col a.footer__phone:hover { color: var(--ink); }
.footer__col a.btn { margin-top: .5rem; color: var(--white); }
.footer__col a.btn:hover { color: var(--white); }

.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding-top: 1.4rem; font-size: .82rem; color: var(--muted);
}
.footer__bottom p { margin: 0; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 1.4rem; padding: 6rem 2rem 2rem;
    background: var(--cream); box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav__cta { width: 100%; }
  .nav-toggle { display: flex; z-index: 110; }
  .brand__logo { height: 84px; margin-block: -14px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__list { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  /* On phones, stack the hero: atelier photo as a banner up top, content
     below on solid cream. No overlap, fully readable, sign still featured. */
  .hero { display: block; min-height: auto; padding: 0; }
  .hero__bg {
    position: relative; inset: auto;
    height: clamp(260px, 40vh, 380px);
    border-bottom: 1px solid var(--gold-line);
  }
  .hero__bg img { object-position: 82% 30%; }
  .hero__scrim { display: none; }
  .hero__inner { padding-block: 2.2rem 2.6rem; }
  .hero__content { max-width: 100%; }
  /* Keep the two hero CTAs side-by-side on phones */
  .hero__actions { flex-wrap: nowrap; gap: .65rem; }
  .hero__actions .btn {
    flex: 1 1 0; min-width: 0;
    padding-inline: .85rem;
    white-space: nowrap;
  }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .footer__logo { margin-inline: auto; }
  .footer__tagline { margin-inline: auto; }
  .footer__socials { justify-content: center; }
  .footer__col a { margin-inline: auto; }
  .footer__bottom { justify-content: center; text-align: center; }

  .promo-bar__inner { font-size: .76rem; gap: .6rem; }
  .promo-bar__cta { display: none; }
  .hero__stats { gap: 1.5rem; }
}

@media (max-width: 420px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
