@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --gold:        #c8963e;
  --gold-light:  #e8b96a;
  --gold-dark:   #9a6f28;
  --amber:       #b5832a;
  --ink:         #0f0c08;
  --ink-soft:    #1e1810;
  --brown:       #2d1a08;
  --warm-gray:   #6b5c4a;
  --cream:       #faf7f2;
  --cream-2:     #f3ede3;
  --white:       #ffffff;
  --border:      rgba(200,150,62,.18);
  --shadow-sm:   0 2px 12px rgba(15,12,8,.08);
  --shadow-md:   0 8px 32px rgba(15,12,8,.12);
  --shadow-lg:   0 24px 64px rgba(15,12,8,.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --transition:  .4s cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.nav.solid {
  background: rgba(15,12,8,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .5px;
}
.nav__logo span { color: var(--white); font-weight: 300; }
.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
  transition: opacity var(--transition);
}
.nav__logo:hover .nav__logo-img { opacity: .85; }
.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1;
  font-style: normal;
}
.nav__logo-text em {
  color: var(--gold-light);
  font-style: normal;
}

.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  font-size: .825rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .6px; text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold-light); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 9px 24px; border-radius: 40px;
  font-weight: 600 !important; font-size: .8rem !important;
  letter-spacing: .8px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE NAV ──────────────────────────────────────────── */
.nav__mobile {
  display: none; position: fixed;
  inset: 0; z-index: 800;
  background: var(--ink);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--cream); transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold-light); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroScale 18s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(10,7,4,.72) 0%,
    rgba(30,20,8,.55) 50%,
    rgba(10,7,4,.80) 100%);
}

/* canvas particles */
#particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-block;
  border: 1px solid rgba(200,150,62,.45);
  color: var(--gold-light);
  padding: 5px 22px; border-radius: 40px;
  font-size: .72rem; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(200,150,62,.08);
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(16px);
  animation: slideUp .9s .2s ease both;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 700; line-height: 1.0;
  color: var(--white);
  letter-spacing: -1px;
  opacity: 0; transform: translateY(24px);
  animation: slideUp 1s .45s ease both;
}
.hero__title em {
  font-style: italic; color: var(--gold-light);
}

.hero__sub {
  margin: 22px auto 44px;
  max-width: 520px;
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.68);
  opacity: 0; transform: translateY(20px);
  animation: slideUp .9s .7s ease both;
}

.hero__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: slideUp .9s .95s ease both;
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease infinite;
}
.hero__scroll-text {
  font-size: .65rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@keyframes scrollPulse {
  0%,100%  { opacity: .5; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.12); }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 34px; border-radius: 40px;
  font-size: .875rem; font-weight: 600; letter-spacing: .5px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(200,150,62,.35);
}
.btn--primary:hover { background: var(--gold-light); box-shadow: 0 12px 32px rgba(200,150,62,.45); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.38);
}
.btn--outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--dark {
  background: var(--ink-soft);
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn--dark:hover { background: var(--brown); }

.btn--full { width: 100%; justify-content: center; }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.btn--whatsapp:hover { background: #1ebe5d; box-shadow: 0 12px 32px rgba(37,211,102,.4); }

.btn--phone {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--phone:hover { background: var(--gold); color: var(--ink); }

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 110px 6%; }
.section--dark { background: var(--ink-soft); color: var(--cream); }
.section--cream { background: var(--cream-2); }
.section--white { background: var(--white); }

.section__label {
  display: block;
  font-size: .7rem; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.15;
  color: inherit;
}
.section__title em { font-style: italic; color: var(--gold-light); }
.section--dark .section__title { color: var(--cream); }

.section__lead {
  margin-top: 16px; max-width: 560px;
  font-size: 1rem; line-height: 1.75; color: var(--warm-gray);
}
.section--dark .section__lead { color: rgba(250,247,242,.55); }

.section__header { margin-bottom: 64px; }
.section__header--center { text-align: center; }
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* ── STATS ───────────────────────────────────────────────── */
.stats {
  background: var(--ink);
  padding: 64px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: var(--gold-light);
}
.stat__label {
  margin-top: 8px;
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about__media { position: relative; }
.about__img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about__img-accent {
  position: absolute; bottom: -28px; right: -28px;
  width: 200px; aspect-ratio: 1;
  object-fit: cover; border-radius: var(--radius-sm);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about__text .section__title { color: var(--brown); }
.about__text .section__lead { color: var(--warm-gray); }
.about__list {
  margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px;
}
.about__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .95rem; line-height: 1.6; color: var(--ink);
}
.about__list-dot {
  flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* ── VIDEO ───────────────────────────────────────────────── */
.video-wrap {
  max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-wrap video { width: 100%; display: block; }
.video-wrap__caption {
  margin-top: 20px; text-align: center;
  font-size: .85rem; color: var(--warm-gray); letter-spacing: .5px;
}

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.products__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.product-card__media {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.07); }

.product-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--ink); font-weight: 700;
  font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 40px;
}

.product-card__body { padding: 26px; }
.product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700; color: var(--brown);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: .875rem; color: var(--warm-gray);
  line-height: 1.65; margin-bottom: 22px;
}
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.product-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-dark);
  line-height: 1;
}
.product-card__price span { font-size: .85rem; color: var(--warm-gray); font-family: 'Inter', sans-serif; font-weight: 400; }
.product-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  max-width: 1280px; margin: 0 auto;
}
.gallery__item {
  overflow: hidden; border-radius: var(--radius-sm);
  cursor: pointer; position: relative;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item img,
.gallery__item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.06); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: rgba(10,7,4,.5);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay svg { width: 32px; height: 32px; stroke: #fff; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9900;
  background: rgba(5,3,1,.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1; opacity: .7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.testi-card {
  padding: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,150,62,.15);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover { border-color: rgba(200,150,62,.4); transform: translateY(-5px); }
.testi-card__stars {
  display: flex; gap: 3px; margin-bottom: 18px;
}
.testi-card__stars svg { width: 14px; height: 14px; fill: var(--gold); }
.testi-card__text {
  font-size: .95rem; line-height: 1.75;
  color: rgba(250,247,242,.72); font-style: italic;
  margin-bottom: 24px;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--ink);
}
.testi-card__name { font-weight: 600; color: var(--cream); font-size: .9rem; }
.testi-card__loc { font-size: .78rem; color: rgba(250,247,242,.4); margin-top: 2px; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--amber) 50%, var(--gold) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/pozaramasalcam.jpeg') center/cover no-repeat;
  opacity: .1;
  mix-blend-mode: luminosity;
}
.cta-banner__content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--ink); margin-bottom: 16px; line-height: 1.15;
}
.cta-banner p { font-size: 1rem; color: rgba(15,12,8,.7); margin-bottom: 36px; line-height: 1.7; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-hero {
  min-height: 50vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 120px 6% 70px;
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute; inset: 0;
}
.contact-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.contact-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,4,.85) 0%, rgba(10,7,4,.4) 100%);
}
.contact-hero__content { position: relative; z-index: 1; max-width: 600px; }
.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.0;
  color: var(--white); margin-bottom: 16px;
}
.contact-hero h1 em { font-style: italic; color: var(--gold-light); }
.contact-hero p { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1000px; margin: 0 auto;
  align-items: start;
}
.contact-block__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--brown); margin-bottom: 14px;
}
.contact-block__sub { color: var(--warm-gray); line-height: 1.7; font-size: .95rem; margin-bottom: 36px; }

.contact-btns { display: flex; flex-direction: column; gap: 16px; }
.contact-btn {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 28px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none; color: var(--ink);
}
.contact-btn:hover { transform: translateX(8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-btn__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-btn__icon svg { width: 24px; height: 24px; }
.contact-btn--wa .contact-btn__icon { background: #25D366; }
.contact-btn--wa .contact-btn__icon svg { stroke: #fff; fill: none; }
.contact-btn--ph .contact-btn__icon { background: var(--gold); }
.contact-btn--ph .contact-btn__icon svg { stroke: var(--ink); fill: none; }
.contact-btn__label { font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--warm-gray); margin-bottom: 2px; }
.contact-btn__value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--brown); }

.contact-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-visual img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 72px 6% 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand p {
  margin-top: 14px;
  font-size: .875rem; color: rgba(250,247,242,.45); line-height: 1.7;
  max-width: 300px;
}
.footer__col-title {
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a {
  font-size: .875rem; color: rgba(250,247,242,.5);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--gold-light); }

.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: rgba(250,247,242,.3);
}

/* ── REVEAL ──────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s ease, transform .9s ease;
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* delay helpers */
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* ── PAGE HERO (shop/gallery) ────────────────────────────── */
.page-hero {
  min-height: 46vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 120px 6% 60px;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,4,.88) 0%, rgba(10,7,4,.38) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1.0;
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 480px; line-height: 1.7; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img-accent { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 72px 5%; }
  .products__grid { grid-template-columns: 1fr; max-width: 420px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 32px; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -0.5px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .products__grid { max-width: 100%; }
}
