@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Cormorant:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

/* ─── TOKENS ─────────────────────────────── */
:root {
  --gold:    #C9956C;
  --gold-d:  #B07F58;
  --dark:    #111111;
  --mid:     #444444;
  --light:   #F8F6F3;
  --white:   #FFFFFF;
  --border:  #E8E2DB;
  --radius:  2px;
  --serif:   'Playfair Display', Georgia, serif;
  --body:    'Cormorant', Georgia, serif;
  --sans:    'Montserrat', sans-serif;
  --hdr:     64px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:var(--body); font-size:1.05rem; color:var(--dark); background:var(--white); overflow-x:hidden; line-height:1.75; }
img  { display:block; max-width:100%; height:auto; }
a    { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
ul { list-style:none; }

.container { width:100%; max-width:1160px; margin:0 auto; padding:0 1.5rem; }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(-28px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }

/* ─── HEADER ─────────────────────────────── */
.header {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:var(--hdr);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s;
}
.header.scrolled { box-shadow:0 2px 24px rgba(0,0,0,.08); }

.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:var(--hdr);
}

/* Logo */
.logo { display:flex; align-items:center; gap:10px; }
.logo-img { height:40px; width:auto; }
.logo-text { display:flex; flex-direction:column; }
.logo-name { font-family:var(--serif); font-size:1.2rem; font-weight:600; color:var(--gold); line-height:1.1; }
.logo-sub  { font-family:var(--sans); font-size:.7rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--mid); }

/* Desktop nav */
.nav-desktop { display:none; align-items:center; gap:1.75rem; }
.nav-link { font-family:var(--sans); font-size:.75rem; font-weight:400; letter-spacing:1.5px; text-transform:uppercase; color:var(--mid); transition:color .2s; }
.nav-link:hover { color:var(--gold); }
.nav-cta {
  font-family:var(--sans); font-size:.72rem; font-weight:500; letter-spacing:1.5px; text-transform:uppercase;
  padding:.55rem 1.4rem; border:1px solid var(--gold); color:var(--gold);
  transition:all .25s; border-radius:var(--radius);
}
.nav-cta:hover { background:var(--gold); color:var(--white); }

/* Burger */
.burger { display:flex; flex-direction:column; gap:5px; padding:4px; }
.burger span { display:block; width:22px; height:1.5px; background:var(--dark); transition:all .3s; }

/* Mobile nav */
.nav-mobile {
  display:none; flex-direction:column;
  background:var(--white); border-top:1px solid var(--border);
  position:fixed; top:var(--hdr); left:0; right:0;
  padding:1.5rem 0; z-index:199;
  box-shadow:0 8px 32px rgba(0,0,0,.1);
}
.nav-mobile.open { display:flex; }
.nav-link-m {
  font-family:var(--sans); font-size:.8rem; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--mid); padding:.85rem 1.5rem;
  transition:color .2s, background .2s;
}
.nav-link-m:hover { color:var(--gold); background:rgba(201,149,108,.05); }
.nav-cta-m {
  margin:1rem 1.5rem 0;
  text-align:center; padding:.85rem;
  background:var(--gold); color:var(--white) !important;
  border-radius:var(--radius);
}

/* ─── BUTTONS ────────────────────────────── */
.btn-gold {
  display:inline-block;
  font-family:var(--sans); font-size:.75rem; font-weight:500; letter-spacing:2px; text-transform:uppercase;
  background:var(--gold); color:var(--white);
  padding:.9rem 2.2rem; border-radius:var(--radius);
  transition:background .25s, transform .2s, box-shadow .25s;
  border:1.5px solid var(--gold);
}
.btn-gold:hover { background:var(--gold-d); border-color:var(--gold-d); transform:translateY(-2px); box-shadow:0 6px 20px rgba(201,149,108,.3); }
.btn-gold.full { width:100%; text-align:center; }

.btn-ghost {
  display:inline-block;
  font-family:var(--sans); font-size:.75rem; font-weight:400; letter-spacing:2px; text-transform:uppercase;
  background:transparent; color:var(--white);
  padding:.9rem 2.2rem; border-radius:var(--radius);
  border:1.5px solid rgba(255,255,255,.6);
  transition:all .25s;
}
.btn-ghost:hover { background:rgba(255,255,255,.15); border-color:var(--white); }

.btn-outline {
  display:inline-block;
  font-family:var(--sans); font-size:.72rem; font-weight:400; letter-spacing:2px; text-transform:uppercase;
  background:transparent; color:var(--gold);
  padding:.85rem 2rem; border-radius:var(--radius);
  border:1.5px solid var(--gold);
  transition:all .25s;
}
.btn-outline:hover { background:var(--gold); color:var(--white); }

/* ─── SECTION LABELS ─────────────────────── */
.label-line {
  display:block;
  font-family:var(--sans); font-size:.65rem; font-weight:400; letter-spacing:4px; text-transform:uppercase;
  color:var(--gold); margin-bottom:1rem;
}
.section-head h2 {
  font-family:var(--serif); font-size:clamp(2rem,4vw,3rem); font-weight:400; line-height:1.2; color:var(--dark);
}
.section-head { margin-bottom:3.5rem; }
.section-head.center { text-align:center; }

/* ─── HERO ───────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  padding-top:var(--hdr); overflow:hidden;
}
.hero-img-wrap { position:absolute; inset:0; z-index:0; }
.hero-img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(105deg,rgba(10,10,10,.72) 40%,rgba(10,10,10,.25) 100%); }

.hero-content {
  position:relative; z-index:1;
  padding:4rem 1.5rem; max-width:620px;
  animation:fadeUp .9s ease both;
}
.hero-label {
  font-family:var(--sans); font-size:.65rem; letter-spacing:4px; text-transform:uppercase;
  color:rgba(255,255,255,.65); margin-bottom:1.5rem;
}
.hero-title {
  font-family:var(--serif); font-size:clamp(2.8rem,6vw,5rem); font-weight:400; line-height:1.1;
  color:var(--white); margin-bottom:1.5rem;
}
.hero-title em { font-style:italic; color:var(--gold); }
.hero-sub { font-size:1.1rem; color:rgba(255,255,255,.8); margin-bottom:2.5rem; max-width:440px; line-height:1.7; }

.hero-btns { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:3rem; }

.hero-stats { display:flex; align-items:center; gap:1.5rem; }
.stat { display:flex; flex-direction:column; gap:.2rem; }
.stat strong { font-family:var(--serif); font-size:1.6rem; font-weight:400; color:var(--gold); line-height:1; }
.stat span { font-family:var(--sans); font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.6); }
.stat-sep { width:1px; height:36px; background:rgba(255,255,255,.2); }

/* ─── SERVICES ───────────────────────────── */
.services { padding:6rem 0; background:var(--light); }
.services-grid { display:grid; grid-template-columns:1fr; gap:1.5rem; }
.service-card {
  background:var(--white); padding:2.5rem 2rem;
  border:1px solid var(--border); border-radius:var(--radius);
  position:relative; transition:all .3s;
}
.service-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.08); border-color:var(--gold); }
.service-card.featured { border-color:var(--gold); }
.service-badge {
  position:absolute; top:1.5rem; right:1.5rem;
  font-family:var(--sans); font-size:.6rem; letter-spacing:1.5px; text-transform:uppercase;
  background:var(--gold); color:var(--white); padding:.3rem .8rem; border-radius:20px;
}
.service-num { font-family:var(--serif); font-size:2.5rem; color:var(--border); font-weight:400; margin-bottom:1rem; line-height:1; }
.service-card h3 { font-family:var(--serif); font-size:1.5rem; font-weight:500; margin-bottom:1rem; }
.service-card p { color:var(--mid); font-size:1rem; line-height:1.75; margin-bottom:1.25rem; }
.service-list { margin-bottom:1.5rem; }
.service-list li { font-family:var(--sans); font-size:.75rem; color:var(--mid); padding:.35rem 0; border-bottom:1px solid var(--border); letter-spacing:.5px; }
.service-list li:last-child { border:none; }
.service-list li::before { content:'— '; color:var(--gold); }
.service-link { font-family:var(--sans); font-size:.72rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); transition:color .2s; }
.service-link:hover { color:var(--gold-d); }

/* ─── ABOUT ──────────────────────────────── */
.about { padding:6rem 0; background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr; gap:3.5rem; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-wrap img { width:100%; height:520px; object-fit:cover; object-position:top; border-radius:var(--radius); }
.about-img-tag {
  position:absolute; bottom:2rem; right:-1rem;
  background:var(--gold); color:var(--white);
  padding:1.25rem 1.5rem; border-radius:var(--radius);
  box-shadow:0 8px 32px rgba(201,149,108,.35);
}
.about-img-tag strong { display:block; font-family:var(--serif); font-size:2rem; font-weight:400; line-height:1; }
.about-img-tag span { font-family:var(--sans); font-size:.62rem; letter-spacing:1px; text-transform:uppercase; opacity:.85; line-height:1.4; }
.about-text h2 { font-family:var(--serif); font-size:clamp(2rem,4vw,2.8rem); font-weight:400; line-height:1.2; margin-bottom:1.5rem; }
.about-lead { font-size:1.15rem; color:var(--dark); margin-bottom:1.25rem; font-weight:400; }
.about-text p { color:var(--mid); margin-bottom:1rem; }
.about-text .btn-gold { margin-top:1.5rem; }

/* ─── WHY ────────────────────────────────── */
.why { padding:5rem 0; background:var(--dark); }
.why .section-head h2 { color:var(--white); }
.why .label-line { color:var(--gold); }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.why-item { padding:2rem; border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); transition:border-color .3s; }
.why-item:hover { border-color:var(--gold); }
.why-icon { font-size:1.5rem; color:var(--gold); margin-bottom:1rem; }
.why-item h4 { font-family:var(--serif); font-size:1.2rem; font-weight:500; color:var(--white); margin-bottom:.75rem; }
.why-item p { font-size:.95rem; color:rgba(255,255,255,.55); line-height:1.75; }

/* ─── PORTFOLIO ──────────────────────────── */
.portfolio { padding:6rem 0 0; background:var(--light); }
.portfolio .container { padding-bottom:3rem; }
.portfolio-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:4px; }
.porto-item { position:relative; overflow:hidden; cursor:pointer; aspect-ratio:1; }
.porto-item img { width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform .6s ease; }
.porto-item:hover img { transform:scale(1.06); }
.porto-hover {
  position:absolute; inset:0; background:rgba(17,17,17,.5);
  display:flex; align-items:flex-end; padding:1.25rem;
  opacity:0; transition:opacity .3s;
}
.porto-item:hover .porto-hover { opacity:1; }
.porto-hover span { font-family:var(--sans); font-size:.7rem; letter-spacing:2px; text-transform:uppercase; color:var(--white); }

/* Lightbox */
.lightbox {
  display:none; position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,.92);
  align-items:center; justify-content:center;
}
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:var(--radius); }
.lb-close { position:fixed; top:1.5rem; right:1.5rem; font-size:2rem; color:var(--white); opacity:.7; transition:opacity .2s; }
.lb-close:hover { opacity:1; }
.lb-prev, .lb-next { position:fixed; top:50%; transform:translateY(-50%); font-size:2.5rem; color:var(--white); opacity:.6; padding:.5rem 1rem; transition:opacity .2s; }
.lb-prev { left:1rem; }
.lb-next { right:1rem; }
.lb-prev:hover, .lb-next:hover { opacity:1; }

/* ─── REVIEWS ────────────────────────────── */
.reviews { padding:6rem 0; background:var(--white); }
.reviews-grid { display:grid; grid-template-columns:1fr; gap:1.5rem; margin-bottom:3rem; }
.review-card { padding:2.5rem 2rem; border:1px solid var(--border); border-radius:var(--radius); transition:all .3s; }
.review-card:hover { border-color:var(--gold); box-shadow:0 8px 32px rgba(0,0,0,.06); }
.review-stars { color:var(--gold); letter-spacing:2px; font-size:1rem; margin-bottom:1.25rem; }
.review-card p { font-size:1.05rem; color:var(--mid); font-style:italic; line-height:1.8; margin-bottom:1.5rem; }
.review-author { display:flex; flex-direction:column; gap:.2rem; }
.review-author strong { font-family:var(--serif); font-size:1rem; font-weight:500; color:var(--dark); }
.review-author span { font-family:var(--sans); font-size:.7rem; letter-spacing:1px; color:var(--gold); text-transform:uppercase; }
.center-btn { text-align:center; }

/* ─── CTA BANNER ─────────────────────────── */
.cta-banner { padding:6rem 2rem; background:var(--gold); text-align:center; }
.cta-label { font-family:var(--sans); font-size:.7rem; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:1rem; }
.cta-banner h2 { font-family:var(--serif); font-size:clamp(2rem,4vw,3.2rem); font-weight:400; color:var(--white); margin-bottom:1rem; line-height:1.2; }
.cta-banner p { font-size:1rem; color:rgba(255,255,255,.75); margin-bottom:2.5rem; }
.cta-banner .btn-gold { background:var(--white); color:var(--gold); border-color:var(--white); }
.cta-banner .btn-gold:hover { background:var(--dark); color:var(--white); border-color:var(--dark); }

/* ─── FAQ ────────────────────────────────── */
.faq { padding:6rem 0; background:var(--light); }
.faq-list { max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:.75rem; }
.faq-item { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:1.35rem 1.75rem; text-align:left;
  font-family:var(--body); font-size:1.05rem; font-weight:500; color:var(--dark);
  gap:1rem; transition:color .2s;
}
.faq-q:hover { color:var(--gold); }
.faq-icon { font-size:1.5rem; color:var(--gold); font-weight:300; flex-shrink:0; transition:transform .3s; }
.faq-q.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .3s; }
.faq-a.open { max-height:300px; padding:0 1.75rem 1.5rem; }
.faq-a p { color:var(--mid); font-size:1rem; line-height:1.8; }

/* ─── BLOG ───────────────────────────────── */
.blog { padding:6rem 0; background:var(--white); }
.blog-grid { display:grid; grid-template-columns:1fr; gap:2rem; }
.blog-card { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:all .3s; background:var(--white); }
.blog-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.08); border-color:var(--gold); }
.blog-img-wrap { position:relative; overflow:hidden; }
.blog-img-wrap img { width:100%; height:240px; object-fit:cover; object-position:50% 15%; transition:transform .5s; }
.blog-card:hover .blog-img-wrap img { transform:scale(1.04); }
.blog-tag {
  position:absolute; top:1rem; left:1rem;
  font-family:var(--sans); font-size:.6rem; letter-spacing:1.5px; text-transform:uppercase;
  background:var(--gold); color:var(--white); padding:.3rem .75rem; border-radius:20px;
}
.blog-body { padding:1.75rem; }
.blog-meta { font-family:var(--sans); font-size:.65rem; letter-spacing:1px; text-transform:uppercase; color:var(--mid); display:block; margin-bottom:.75rem; }
.blog-body h3 { font-family:var(--serif); font-size:1.2rem; font-weight:500; color:var(--dark); margin-bottom:.75rem; line-height:1.35; }
.blog-body p { color:var(--mid); font-size:.95rem; line-height:1.7; margin-bottom:1.25rem; }
.blog-link { font-family:var(--sans); font-size:.7rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); transition:color .2s; }
.blog-link:hover { color:var(--gold-d); }

/* ─── CONTACT ────────────────────────────── */
.contact { padding:6rem 0; background:var(--light); }
.contact-grid { display:grid; grid-template-columns:1fr; gap:4rem; }
.contact-info h2 { font-family:var(--serif); font-size:clamp(1.8rem,4vw,2.8rem); font-weight:400; line-height:1.2; margin-bottom:1.25rem; }
.contact-info > p { color:var(--mid); margin-bottom:2.5rem; font-size:1.05rem; }
.info-blocks { display:flex; flex-direction:column; gap:1.5rem; }
.info-block strong { display:block; font-family:var(--sans); font-size:.65rem; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:.4rem; }
.info-block a, .info-block span { color:var(--mid); font-size:1rem; transition:color .2s; }
.info-block a:hover { color:var(--gold); }
.social-row { display:flex; gap:1.25rem; flex-wrap:wrap; }
.social-row a { color:var(--mid); font-size:1rem; transition:color .2s; border-bottom:1px solid transparent; }
.social-row a:hover { color:var(--gold); border-bottom-color:var(--gold); }

/* Form */
.contact-form { background:var(--white); padding:2.5rem; border:1px solid var(--border); border-radius:var(--radius); }
.field { margin-bottom:1.25rem; }
.field label { display:block; font-family:var(--sans); font-size:.65rem; font-weight:500; letter-spacing:2px; text-transform:uppercase; color:var(--dark); margin-bottom:.5rem; }
.field input, .field select, .field textarea {
  width:100%; padding:.85rem 1rem;
  border:1px solid var(--border); border-radius:var(--radius);
  font-family:var(--body); font-size:1rem; color:var(--dark);
  background:var(--white); outline:none; transition:border-color .2s;
  -webkit-appearance:none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--gold); }
.field textarea { resize:vertical; min-height:110px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ─── FOOTER ─────────────────────────────── */
.footer { background:var(--dark); padding:5rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:1fr; gap:3rem; margin-bottom:3rem; }
.footer-logo { height:80px; width:auto; margin-bottom:1rem; opacity:1; filter:none; display:block; }
.footer-brand p { color:rgba(255,255,255,.45); font-size:.9rem; line-height:1.7; max-width:240px; }
.footer-col h4 { font-family:var(--sans); font-size:.65rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.footer-col a, .footer-col span { display:block; color:rgba(255,255,255,.45); font-size:.95rem; margin-bottom:.6rem; transition:color .2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:2rem; text-align:center; }
.footer-bottom p { font-family:var(--sans); font-size:.7rem; letter-spacing:1px; color:rgba(255,255,255,.25); }

/* ─── WHATSAPP FLOAT ─────────────────────── */
.wa-float {
  position:fixed; bottom:1.75rem; right:1.75rem; z-index:500;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:transform .2s, box-shadow .2s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.5); }

/* ─── TABLET (768px+) ────────────────────── */
@media (min-width:768px) {
  .burger { display:none; }
  .nav-desktop { display:flex; }

  .services-grid { grid-template-columns:repeat(3,1fr); }
  .about-grid { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:repeat(4,1fr); }
  .portfolio-grid { grid-template-columns:repeat(4,1fr); }
  .reviews-grid { grid-template-columns:repeat(3,1fr); }
  .blog-grid { grid-template-columns:repeat(3,1fr); }
  .contact-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1.8fr 1fr 1fr 1fr; }

  .hero-content { padding:4rem 3rem; }
  .about-img-tag { right:-1.5rem; }
}

/* ─── DESKTOP (1024px+) ──────────────────── */
@media (min-width:1024px) {
  .hero-title { font-size:5rem; }
  .why-grid { gap:1.5rem; }
}

/* ─── MOBILE TWEAKS ──────────────────────── */
@media (max-width:480px) {
  .hero-title { font-size:2.6rem; }
  .hero-stats { gap:1rem; flex-wrap:wrap; }
  .field-row { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .about-img-tag { right:0; }
}


.google-stars {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.google-text {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}


.info-block a:hover {
  color: var(--gold) !important;
  text-decoration: underline !important;
}




  .hero {
    min-height: auto !important;
    padding-top: 60px !important;
  }
  .hero-content {
    padding-top: 40px !important;
  }
}

/* ════════════════════════════════════════
   DEFINITIVE MOBILE & HERO FIXES
   ════════════════════════════════════════ */

/* HERO — fit entire photo on all screens */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Mobile hero — show full photo */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh !important;
    padding-top: 64px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-img {
    object-position: center 10% !important;
    object-fit: cover !important;
  }
  .hero-content {
    padding: 2rem 1.25rem 3rem !important;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 60%, transparent);
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .hero-title { font-size: 2.2rem !important; }
  .hero-sub { font-size: 1rem !important; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat strong { font-size: 1.4rem !important; }
  section { padding: 3rem 0 !important; }
}

/* Small phones */
@media (max-width: 390px) {
  .hero-title { font-size: 1.9rem !important; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; }
}

/* LOGO HEADER */
.logo-img {
  height: 56px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}
.logo-name { font-size: 1.15rem !important; }

/* LOGO FOOTER */
.footer-logo {
  height: 80px !important;
  width: auto !important;
  opacity: 1 !important;
  filter: none !important;
  background: transparent !important;
  display: block;
  margin-bottom: 1.25rem;
}

/* EMAIL — fully clickable everywhere */
a[href^="mailto"] {
  cursor: pointer !important;
  pointer-events: auto !important;
  -webkit-user-select: auto !important;
  text-decoration: none !important;
}

/* No horizontal overflow */
html, body { overflow-x: hidden !important; }

/* Blog images - show makeup beautifully */
.blog-img-wrap img {
  height: 260px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
}

/* ════════════════════════════════════════
   LOGO COM FUNDO INTEGRADO
   ════════════════════════════════════════ */

/* Header - fundo bege para a logo */
.header {
  background: #D4C5B0 !important;
}

.logo-img {
  height: 56px !important;
  width: auto !important;
  border-radius: 4px;
}

.logo-name { color: #1a1a1a !important; }
.logo-sub  { color: #444 !important; }
.nav-link  { color: #1a1a1a !important; }
.nav-cta   { border-color: #1a1a1a !important; color: #1a1a1a !important; }
.nav-cta:hover { background: #1a1a1a !important; color: #fff !important; }
.burger span { background: #1a1a1a !important; }

/* Footer - fundo bege para a logo */
.footer-brand {
  background: #D4C5B0;
  padding: 1.5rem;
  border-radius: 6px;
  display: inline-block;
}

.footer-logo {
  height: 80px !important;
  width: auto !important;
  opacity: 1 !important;
  filter: none !important;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   LOGO MAIOR — COR EXACTA DO FUNDO
   ════════════════════════════════════════ */

/* Header - exact logo background color */
.header {
  background: #c3b49d !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

/* Logo image - bigger */
.logo-img {
  height: 72px !important;
  width: auto !important;
}

/* Logo text - dark elegant on beige */
.logo-name {
  font-size: 1.4rem !important;
  color: #1a1209 !important;
  font-weight: 700 !important;
}
.logo-sub {
  font-size: 0.72rem !important;
  color: #3a2e1e !important;
  letter-spacing: 3px !important;
}

/* Nav links - dark on beige */
.nav-link { color: #1a1209 !important; }
.nav-link:hover { color: #5a3e1e !important; }
.nav-cta {
  border-color: #1a1209 !important;
  color: #1a1209 !important;
}
.nav-cta:hover {
  background: #1a1209 !important;
  color: #c3b49d !important;
}
.burger span { background: #1a1209 !important; }

/* Header height - bigger for larger logo */
.header { height: 80px !important; }
.header-inner { height: 80px !important; }

/* Footer brand block - exact logo color */
.footer-brand {
  background: #c3b49d !important;
  padding: 1.25rem !important;
  border-radius: 6px !important;
  display: inline-block !important;
}

.footer-logo {
  height: 90px !important;
  width: auto !important;
  opacity: 1 !important;
  filter: none !important;
  display: block !important;
}

/* Mobile nav background */
.nav-mobile { background: #c3b49d !important; }
.nav-link-m { color: #1a1209 !important; }
.nav-cta-m {
  background: #1a1209 !important;
  color: #c3b49d !important;
}

/* Footer brand text - dark elegant on beige block */
.footer-brand h3,
.footer-brand p,
.footer-brand a {
  color: #1a1209 !important;
}

/* Footer contact email - visible and clickable */
.footer-col a[href^="mailto"] {
  color: #C9956C !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
  text-decoration: none !important;
}
.footer-col a[href^="mailto"]:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Footer email - same color as phone and location */
.footer-col a[href^="mailto"] {
  color: rgba(255,255,255,0.55) !important;
}
.footer-col a[href^="mailto"]:hover {
  color: var(--gold) !important;
  text-decoration: none !important;
}

/* ─── BLOG 6 CARDS ───────────────────────── */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

.blog-card {
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
}
.blog-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important;
  border-color: var(--gold) !important;
}

.blog-img-wrap img {
  height: 220px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  transition: transform 0.5s !important;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05) !important;
}

.blog-body h3 {
  font-size: 1.1rem !important;
  line-height: 1.35 !important;
}

/* ─── HEADER COR DO FUNDO DA LOGO ───────── */
.header {
  background: #c3b49d !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav-link { color: #1a1209 !important; }
.nav-link:hover { color: #5a3010 !important; }
.nav-cta { color: #1a1209 !important; border-color: #1a1209 !important; }
.nav-cta:hover { background: #1a1209 !important; color: #c3b49d !important; }
.burger span { background: #1a1209 !important; }
.nav-mobile { background: #c3b49d !important; }
.nav-link-m { color: #1a1209 !important; }
.nav-cta-m { background: #1a1209 !important; color: #c3b49d !important; }
.logo-name { color: #1a1209 !important; }
.logo-sub { color: #3a2e1e !important; }

/* Language button */
.lang-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #1a1209;
  border: 1px solid #1a1209;
  background: transparent;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 0.5rem;
}
.lang-btn:hover {
  background: #1a1209;
  color: #c3b49d;
}
