/* ============================================================
   BEST MILK TX — Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #C8376A;
  --rose-light: #E85A8A;
  --rose-dark:  #9E1F4F;
  --rose-pale:  #FCE8F0;
  --rose-soft:  #F9D0E2;
  --cream:      #FDF8F5;
  --warm:       #FFFAF7;
  --td:         #2A1A14;
  --tm:         #5C3D30;
  --tl:         #9C7B6E;
  --bdr:        #F0D8E0;
  --gold:       #C8943A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w:      1240px;
  --sv:         6rem;
  --sh:         2.5rem;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--warm); color: var(--td); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a   { color: inherit; }

/* UTILITIES */
.container { max-width: var(--max-w); margin: 0 auto; }
.section    { padding: var(--sv) var(--sh); }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-tag { display: inline-block; color: var(--rose); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; }
.section-tag::before { content: "— "; } .section-tag::after { content: " —"; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; line-height: 1.2; color: var(--td); margin-bottom: 1rem; }
.section-title em { color: var(--rose); font-style: italic; }
.section-sub  { font-size: 1rem; color: var(--tl); max-width: 560px; line-height: 1.8; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 2rem; border-radius: 50px; font-family: var(--font-sans); font-weight: 600; font-size: .95rem; text-decoration: none; border: none; cursor: pointer; transition: all .3s; white-space: nowrap; }
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 8px 30px rgba(200,55,106,.4); }
.btn-primary:hover { background: var(--rose-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,55,106,.5); }
.btn-white   { background: #fff; color: var(--rose-dark); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.btn-white:hover { background: var(--rose-pale); transform: translateY(-2px); }
.btn-ghost   { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.35) !important; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--bdr); height: 80px; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(200,55,106,.08); }
.nav-brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.nav-brand-name    { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--rose-dark); line-height: 1.2; }
.nav-brand-tagline { display: block; font-size: .68rem; color: var(--tl); text-transform: uppercase; letter-spacing: .1em; }
.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-menu a { text-decoration: none; font-size: .875rem; font-weight: 500; color: var(--tm); padding: .5rem .9rem; border-radius: var(--r-sm); transition: all .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--rose); background: var(--rose-pale); }
.nav-menu .nav-cta { background: var(--rose) !important; color: #fff !important; border-radius: 50px !important; padding: .55rem 1.35rem !important; font-weight: 600 !important; }
.nav-menu .nav-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--rose); border-radius: 2px; transition: all .3s; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg,#120609 0%,#2d0d1c 35%,#5c1535 65%,#8b1f47 100%); position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 80px; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 55% 50%,rgba(200,55,106,.2) 0%,transparent 65%); pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .1; pointer-events: none; }
.blob-1 { width: 600px; height: 600px; background: var(--rose); top: -150px; right: -150px; }
.blob-2 { width: 350px; height: 350px; background: #f0a0c0; bottom: 0; left: 5%; }
.hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; width: 100%; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #f5c8d8; font-size: .75rem; font-weight: 600; padding: .45rem 1.1rem; border-radius: 50px; margin-bottom: 1.75rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-pill::before { content: "✦"; color: #f4a0be; font-size: .65rem; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.6rem,5vw,3.8rem); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; }
.hero-title em { color: #f4a0be; font-style: italic; display: block; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 500px; line-height: 1.85; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); }
.stat-num { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-lbl { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-card { position: relative; width: 100%; max-width: 420px; }
.hero-img-card img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-xl); opacity: .88; }
.hero-img-overlay { position: absolute; inset: 0; border-radius: var(--r-xl); background: linear-gradient(to top,rgba(18,6,9,.75) 0%,rgba(18,6,9,.15) 50%,transparent 100%); }
.hero-card-text { position: absolute; bottom: 1.75rem; left: 1.5rem; right: 1.5rem; }
.hero-card-text h3 { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; margin-bottom: .4rem; }
.hero-card-text p  { color: rgba(255,255,255,.68); font-size: .8rem; line-height: 1.6; margin-bottom: .85rem; }
.hero-checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.hero-checklist li { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.82); font-size: .78rem; }
.hero-checklist li::before { content: "✓"; color: #f4a0be; font-weight: 700; flex-shrink: 0; }
.hero-rating-badge { position: absolute; top: 1.75rem; right: -1.5rem; background: #fff; border-radius: var(--r-md); padding: .8rem 1.2rem; box-shadow: 0 8px 30px rgba(0,0,0,.22); display: flex; align-items: center; gap: .6rem; z-index: 3; }
.hero-rating-badge .stars { color: #f59e0b; font-size: .9rem; }
.hero-rating-badge strong { display: block; font-size: .8rem; color: var(--td); }
.hero-rating-badge small  { font-size: .68rem; color: var(--tl); }

/* TRUST BAR */
.trust-bar { background: #fff; border-bottom: 1px solid var(--bdr); padding: 1.25rem 2.5rem; }
.trust-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 500; color: var(--tm); }

/* ABOUT */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4/5.2; border-radius: var(--r-xl); overflow: hidden; background: var(--rose-pale); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; background: #fff; border-radius: 18px; padding: 1.1rem 1.35rem; box-shadow: 0 10px 35px rgba(0,0,0,.12); text-align: center; min-width: 135px; }
.about-badge.cert { top: 1.5rem; right: -1.25rem; }
.about-badge.exp  { bottom: 1.5rem; left: -1.25rem; background: var(--rose); color: #fff; box-shadow: 0 8px 30px rgba(200,55,106,.4); }
.about-badge .badge-icon { font-size: 1.6rem; margin-bottom: .3rem; }
.about-badge strong { display: block; font-size: .75rem; color: var(--rose-dark); font-weight: 700; }
.about-badge span   { font-size: .68rem; color: var(--tl); }
.about-badge.exp strong { font-family: var(--font-serif); font-size: 1.9rem; color: #fff; line-height: 1; }
.about-badge.exp span   { opacity: .85; color: rgba(255,255,255,.85); }
.about-lead { font-size: 1.1rem; color: var(--tm); line-height: 1.85; margin-bottom: 1.25rem; }
.about-body p { color: var(--tl); line-height: 1.85; margin-bottom: 1.25rem; font-size: .95rem; }
.cert-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.cert-chip { background: #fff; border: 1px solid var(--bdr); border-radius: 50px; padding: .4rem 1rem; font-size: .75rem; font-weight: 600; color: var(--rose-dark); display: flex; align-items: center; gap: .35rem; }
.cert-chip::before { content: "✦"; color: var(--gold); font-size: .55rem; }

/* SERVICES */
.services-section { background: var(--warm); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card { background: #fff; border: 1px solid var(--bdr); border-radius: var(--r-lg); overflow: hidden; transition: all .35s; position: relative; }
.service-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--rose),var(--rose-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(200,55,106,.14); border-color: var(--rose-soft); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img { height: 180px; overflow: hidden; background: var(--rose-pale); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-body { padding: 1.6rem; }
.service-body h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--td); margin-bottom: .65rem; line-height: 1.35; }
.service-body p  { font-size: .85rem; color: var(--tl); line-height: 1.75; margin-bottom: 1.25rem; }
.service-link { font-size: .8rem; font-weight: 600; color: var(--rose); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.service-link:hover { gap: .6rem; }

/* INSURANCE */
.insurance-section { background: linear-gradient(135deg,var(--rose-dark) 0%,var(--rose) 55%,#e05585 100%); position: relative; overflow: hidden; }
.insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.insurance-content p { color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.85; margin: 1.25rem 0 2rem; max-width: 450px; }
.insurance-logos { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.insurance-logo-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 1.35rem; text-align: center; font-weight: 700; font-size: 1.05rem; color: #fff; transition: all .25s; }
.insurance-logo-card:hover { background: rgba(255,255,255,.2); transform: scale(1.02); }
.insurance-logo-card small { display: block; font-weight: 400; font-size: .68rem; opacity: .7; margin-top: .25rem; }
.insurance-note { margin-top: 1.5rem; padding: 1rem 1.5rem; background: rgba(255,255,255,.08); border-radius: 14px; border-left: 3px solid rgba(255,255,255,.35); color: rgba(255,255,255,.82); font-size: .83rem; line-height: 1.65; }

/* REVIEWS */
.reviews-section { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card { background: #fff; border: 1px solid var(--bdr); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; transition: box-shadow .3s; }
.review-card:hover { box-shadow: 0 12px 45px rgba(200,55,106,.1); }
.review-stars { color: #f59e0b; font-size: .95rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text  { font-size: .9rem; color: var(--tm); line-height: 1.85; font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-pale),var(--rose-soft)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--rose); flex-shrink: 0; }
.review-name { display: block; font-size: .84rem; font-weight: 600; color: var(--td); }
.review-loc  { font-size: .73rem; color: var(--tl); }

/* FAQ */
.faq-section  { background: var(--warm); }
.faq-layout   { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-sidebar  { position: sticky; top: 100px; }
.faq-sidebar p { color: var(--tl); line-height: 1.8; margin: 1rem 0 2rem; font-size: .95rem; }
.faq-list   { display: flex; flex-direction: column; gap: .75rem; }
.faq-item   { background: #fff; border: 1px solid var(--bdr); border-radius: 18px; overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--rose-soft); }
.faq-question { padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 500; font-size: .95rem; color: var(--td); user-select: none; }
.faq-question:hover { color: var(--rose); }
.faq-toggle { width: 30px; height: 30px; border-radius: 50%; background: var(--rose-pale); color: var(--rose); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: all .3s; }
.faq-item.open .faq-toggle { background: var(--rose); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: .9rem; color: var(--tl); line-height: 1.85; padding: 0 1.5rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.35rem; }

/* CONTACT */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2.5rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: #fff; border-radius: 18px; border: 1px solid var(--bdr); }
.contact-icon  { width: 46px; height: 46px; border-radius: 14px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.contact-label { display: block; font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--tl); margin-bottom: .15rem; }
.contact-value { color: var(--td); text-decoration: none; font-weight: 500; font-size: .88rem; }
.contact-value:hover { color: var(--rose); }
.social-row { display: flex; gap: .75rem; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; transition: all .25s; color: var(--tm); }
.social-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.contact-form-card { background: #fff; border-radius: 28px; padding: 2.75rem; border: 1px solid var(--bdr); box-shadow: 0 6px 40px rgba(0,0,0,.05); }
.contact-form-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--td); margin-bottom: .5rem; }
.contact-form-card > p { font-size: .85rem; color: var(--tl); margin-bottom: 2rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--tm); margin-bottom: .45rem; text-transform: uppercase; letter-spacing: .07em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--bdr); border-radius: 14px; font-family: var(--font-sans); font-size: .88rem; color: var(--td); background: var(--warm); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,55,106,.09); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 1.05rem; border-radius: 50px; background: var(--rose); color: #fff; border: none; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all .3s; box-shadow: 0 4px 20px rgba(200,55,106,.35); margin-top: .5rem; letter-spacing: .02em; }
.form-submit:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(200,55,106,.45); }

/* FOOTER */
.site-footer { background: #000000; color: rgba(255,255,255,.65); padding: 3.5rem 2.5rem 2.5rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; opacity: .9; }
.footer-brand-name { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: #fff; }
.footer-brand-sub  { font-size: .7rem; opacity: .5; text-transform: uppercase; letter-spacing: .08em; }
.footer-nav { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.footer-nav a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-nav a:hover { color: var(--rose-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; opacity: .4; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .insurance-grid, .contact-grid { gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-rating-badge { right: 0; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 1.5rem; height: 70px; }
  .hamburger { display: flex; }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hamburger[aria-expanded="true"] span { background: #fff; }
  .nav-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #120609 0%, #2d0d1c 40%, #5c1535 100%);
    z-index: 99;
    gap: 0;
    padding: 0;
    animation: none;
  }
  .nav-menu.open { display: flex; animation: menuFadeIn .3s ease; }
  @keyframes menuFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .nav-menu li { width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-menu li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
  .nav-menu a { display: block; font-family: var(--font-serif) !important; font-size: 2rem !important; font-weight: 700 !important; color: #fff !important; padding: 1.4rem 2rem !important; letter-spacing: .02em; background: none !important; border-radius: 0 !important; transition: color .2s, padding-left .2s !important; }
  .nav-menu a:hover { color: #f4a0be !important; padding-left: 2.6rem !important; }
  .nav-menu .nav-cta { background: none !important; color: var(--rose-light) !important; border-radius: 0 !important; font-family: var(--font-serif) !important; font-size: 2rem !important; font-weight: 700 !important; }
  .nav-menu .nav-cta:hover { color: #f4a0be !important; background: none !important; transform: none !important; }
  .hero-inner, .about-grid, .insurance-grid, .contact-grid, .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .reviews-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .faq-sidebar { position: static; }
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
  :root { --sv: 4rem; --sh: 1.5rem; }
  .hero-inner { padding: 3.5rem 1.5rem; }
  .about-badge.cert { right: 0; } .about-badge.exp { left: 0; }
}
@media (max-width: 480px) {
  .reviews-grid, .services-grid, .form-row { grid-template-columns: 1fr; }
  .insurance-logos { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
  .gallery-row { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--rose-pale);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(158, 31, 79, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signature-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176,21,80,0.15);
}
.signature-name {
  font-family: sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3a1a2a;
}
.signature-titles {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  margin-top: .2rem;
}
