/* =========================================================
   Artistic Nails · Professional Nail Academy — Nuoro
   Style system Royaletiger — CSS puro, zero framework
   Palette: carbone + rosso brand + crema
   ========================================================= */

:root {
  /* --- palette --- */
  --ink:        #16141A;   /* carbone: header dark, footer, testi forti */
  --ink-soft:   #211E27;
  --brand:      #C0362C;   /* rosso brand (dal logo) */
  --brand-dark: #93261E;
  --brand-tint: #F6E4E1;   /* rosso lavato per sfondi */
  --accent:     #C0362C;   /* CTA */

  --text:  #2B2830;
  --muted: #6E6873;
  --bg:    #FCFAF8;        /* crema chiara */
  --bg-alt:#F4EEE9;
  --line:  #E9E1DB;
  --white: #ffffff;

  /* --- tipografia --- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* --- sistema --- */
  --shadow-sm: 0 2px 8px rgba(22,20,26,.06);
  --shadow-md: 0 12px 30px rgba(22,20,26,.10);
  --shadow-lg: 0 26px 60px rgba(22,20,26,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --container: 1200px;
  --nav-h: 78px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--ink); letter-spacing: -.01em; }
p { color: var(--text); }
strong { color: var(--ink); font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-tint { background: linear-gradient(180deg,#fff, var(--brand-tint)); }
.section-dark { background: var(--ink); color: #EDE8E4; }
.section-dark h1,.section-dark h2,.section-dark h3 { color: #fff; }
.section-dark p { color: #C4BDBA; }
.narrow { max-width: 780px; margin-inline: auto; }

/* ---------- typografia scale ---------- */
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing:.02em; }
.lead { font-size: clamp(1.08rem,1.5vw,1.28rem); color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--brand); display:inline-block; }
.section-dark .eyebrow { color: #E6A19A; }
.section-dark .eyebrow::before { background: #E6A19A; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { margin-top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(192,54,44,.28); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(192,54,44,.34); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb257; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header::before {
  content:""; position:absolute; inset:0; background: rgba(252,250,248,.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease); z-index:-1;
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { height: 68px; }
.site-header.scrolled::before { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand img { height: 46px; width: auto; transition: height .35s var(--ease); }
.site-header.scrolled .nav-brand img { height: 40px; }

/* hero è sotto header trasparente: nella home l'header parte trasparente con testo scuro comunque leggibile */
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a {
  font-family: var(--font-body); font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: 9px 15px; border-radius: 100px; transition: color .2s, background .2s;
}
.nav-links > li > a:not(.nav-cta):hover { color: var(--brand); }
.nav-links a[aria-current="page"]:not(.nav-cta) { color: var(--brand); font-weight: 600; }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: none; border: 0; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero home ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 70px; color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::after {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(15,13,17,.9) 0%, rgba(15,13,17,.66) 45%, rgba(15,13,17,.32) 100%);
}
.hero .container { position: relative; }
.hero-inner { max-width: 720px; }
.hero h1 { color: #fff; margin: 16px 0 20px; }
.hero h1 em { color: var(--brand); font-style: italic; }
.hero .lead { color: #E3DDDA; max-width: 560px; }
.hero .eyebrow { color: #E9ADA6; }
.hero .eyebrow::before { background: #E9ADA6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-display); font-size: 2.6rem; color: #fff; display: block; line-height: 1; }
.hero-stats .stat span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #C9C1BE; }

/* hero interne (pagine) */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 66px) 0 60px; background: var(--ink); color: #fff; overflow: hidden;
}
.page-hero::before {
  content:""; position:absolute; inset:0; opacity:.16;
  background: radial-gradient(circle at 85% 20%, var(--brand), transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #C9C1BE; max-width: 620px; }
.breadcrumb { font-size: .82rem; color: #A79FA0; margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 6px; opacity: .5; }

/* ---------- feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 22px;
}
.feature-icon svg { width: 27px; height: 27px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* ---------- split about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split-media .badge-float {
  position: absolute; bottom: -24px; right: -18px; background: var(--ink); color: #fff;
  padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.split-media .badge-float strong { font-family: var(--font-display); font-size: 2.2rem; color: #fff; display: block; line-height: 1; }
.split-media .badge-float span { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: #C9BEBB; }
.split-body h2 { margin-bottom: 20px; }
.split-body p + p { margin-top: 16px; }
.check-list { margin-top: 24px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.check-list li::before {
  content:""; flex: 0 0 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0362C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.split-body .btn { margin-top: 30px; }

/* ---------- services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media { aspect-ratio: 4/3.4; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-body .tag { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.service-body h3 { margin: 8px 0 12px; }
.service-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.service-link {
  margin-top: 18px; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.service-link svg { width: 16px; height: 16px; transition: transform .25s; }
.service-card:hover .service-link { color: var(--brand); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* service detail rows (pagina servizi) */
.svc-detail { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center; padding: 20px 0; }
.svc-detail:nth-child(even) .svc-detail-media { order: 2; }
.svc-detail-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3.6; object-fit: cover; width:100%; }
.svc-detail h3 { font-size: clamp(1.7rem,2.6vw,2.2rem); margin-bottom: 14px; }
.svc-detail .tag { color: var(--brand); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.svc-detail p { color: var(--text); }
.svc-detail .mini-benefit { margin-top: 16px; display: inline-flex; gap: 9px; align-items: center; color: var(--brand-dark); font-weight: 600; font-size: .92rem; }
.svc-detail .mini-benefit::before { content:"✦"; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 1; background: var(--bg-alt); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid figure::after {
  content:""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%, rgba(15,13,17,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figcaption {
  position: absolute; left: 16px; bottom: 12px; color: #fff; font-size: .82rem; z-index: 2;
  opacity: 0; transform: translateY(6px); transition: all .3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,13,17,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 30px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.5rem; cursor: pointer; }
.lightbox-close:hover { background: var(--brand); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; cursor: pointer; }
.lightbox-nav:hover { background: var(--brand); }
.lightbox-nav.prev { left: 22px; } .lightbox-nav.next { right: 22px; }

/* ---------- stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stats-band .stat strong { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--brand); display: block; line-height: 1; }
.section-dark .stats-band .stat strong { color: #E9ADA6; }
.stats-band .stat span { font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: block; }
.section-dark .stats-band .stat span { color: #B4ABA8; }

/* ---------- testimonial ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; }
.section-dark .quote-card { background: var(--ink-soft); border-color: rgba(255,255,255,.08); }
.quote-card .stars { color: var(--brand); letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px; }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.section-dark .quote-card blockquote { color: #fff; }
.quote-card .author { margin-top: 18px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.section-dark .quote-card .author { color: #EDE8E4; }
.quote-card .author span { display: block; font-weight: 400; color: var(--muted); font-size: .82rem; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .blog-media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.blog-card .blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-body .meta { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); font-weight: 600; }
.blog-body h3 { margin: 10px 0 12px; font-size: 1.4rem; }
.blog-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.blog-body .service-link { margin-top: 16px; }

/* article */
.article { max-width: 760px; margin-inline: auto; }
.article p, .article ul { font-size: 1.08rem; margin-bottom: 20px; }
.article ul { list-style: none; display: grid; gap: 10px; }
.article ul li { padding-left: 26px; position: relative; }
.article ul li::before { content:"✦"; color: var(--brand); position: absolute; left: 0; }
.article h2 { margin: 40px 0 16px; }
.article h3 { margin: 28px 0 12px; }
.article .lead { font-size: 1.22rem; color: var(--ink); font-family: var(--font-display); font-style: italic; margin-bottom: 28px; }
.article-hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 36px; aspect-ratio: 16/8; object-fit: cover; width:100%; }
.faq-block { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 30px; }
.article blockquote { border-left: 3px solid var(--brand); padding: 6px 0 6px 22px; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); margin: 26px 0; }

/* ---------- accordion (FAQ) ---------- */
.accordion { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc-head { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 26px; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-head .ico { flex: 0 0 22px; height: 22px; position: relative; transition: transform .3s; }
.acc-head .ico::before,.acc-head .ico::after { content:""; position: absolute; background: var(--brand); border-radius: 2px; }
.acc-head .ico::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.acc-head .ico::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform .3s; }
.acc-item.is-open .acc-head .ico::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-body-inner { padding: 0 26px 24px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 66px 56px; overflow: hidden; text-align: center; }
.cta-banner::before { content:""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(circle at 15% 20%, rgba(192,54,44,.5), transparent 45%), radial-gradient(circle at 90% 90%, rgba(192,54,44,.35), transparent 45%); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: #D3CBC8; max-width: 560px; margin: 0 auto 30px; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contatti ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: 0; }
.info-item .ii-icon { flex: 0 0 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; }
.info-item .ii-icon svg { width: 22px; height: 22px; }
.info-item h4 { margin-bottom: 3px; font-size: .95rem; }
.info-item a, .info-item p { color: var(--muted); font-size: .98rem; }
.info-item a:hover { color: var(--brand); }
.hours-table { margin-top: 8px; }
.hours-table li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.hours-table li span:first-child { color: var(--ink); font-weight: 600; }
.hours-table li span:last-child { color: var(--muted); }
.hours-table li.closed span:last-child { color: var(--brand); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; color: var(--text); background: var(--bg); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(192,54,44,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.check-privacy { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--muted); margin-bottom: 22px; }
.check-privacy input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand); flex-shrink: 0; }
.check-privacy a { color: var(--brand); text-decoration: underline; }
.form-status { margin-top: 14px; font-size: .9rem; color: var(--brand-dark); min-height: 1em; }
.form-card .btn { width: 100%; }

.map-wrap { margin-top: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap a { display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #B7AFAC; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 1.7rem; color: #fff; margin-bottom: 14px; }
.footer-brand span { color: var(--brand); }
.footer-col p { color: #A79F9C; font-size: .93rem; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a, .footer-col address a { color: #A79F9C; font-size: .93rem; font-style: normal; transition: color .2s; }
.footer-col ul a:hover, .footer-col address a:hover { color: var(--brand); }
.footer-col address { line-height: 1.9; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #C9C1BE; transition: all .25s; }
.social-row a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .84rem; color: #8B8380; }
.footer-bottom a { color: #8B8380; } .footer-bottom a:hover { color: var(--brand); }
.footer-credit a { color: #A79F9C; }
.footer-credit a:hover { color: #fff; }

/* ---------- floating whatsapp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.44); transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- 404 ---------- */
.err-wrap { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: calc(var(--nav-h) + 40px) 0 80px; }
.err-wrap .code { font-family: var(--font-display); font-size: clamp(6rem,18vw,11rem); color: var(--brand); line-height: .9; }
.err-wrap h1 { margin: 10px 0 14px; }
.err-wrap p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; }
.err-wrap .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 150; max-width: 460px; background: var(--ink); color: #D6CFCC; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: .88rem; color: #B7AFAC; margin-bottom: 16px; }
.cookie-banner a { color: var(--brand); text-decoration: underline; }
.cookie-banner .ck-row { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 20px; font-size: .88rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- utility ---------- */
.text-center { text-align: center; }
.mt-cta { margin-top: 46px; text-align: center; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill-list li { background: var(--white); border: 1px solid var(--line); padding: 9px 18px; border-radius: 100px; font-size: .88rem; font-weight: 500; color: var(--ink); }
.section-dark .pill-list li { background: var(--ink-soft); border-color: rgba(255,255,255,.1); color: #EDE8E4; }
.divider-note { text-align: center; color: var(--muted); font-size: .95rem; margin-top: 12px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .split { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .grid-3, .service-grid, .quote-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .svc-detail { grid-template-columns: 1fr; gap: 26px; }
  .svc-detail:nth-child(even) .svc-detail-media { order: 0; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); height: 100vh;
    background: var(--bg); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: calc(var(--nav-h) + 20px) 26px 40px; gap: 4px;
    transform: translateX(100%); transition: transform .38s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links > li > a { display: block; padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-cta { margin: 14px 0 0; text-align: center; border-bottom: 0 !important; }
  body.menu-open { overflow: hidden; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .badge-float { right: 16px; bottom: -20px; }
  .hero { min-height: 88vh; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 48px 26px; }
  .form-card { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .service-grid, .quote-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats .stat strong { font-size: 2.1rem; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .section-head { margin-bottom: 38px; }
  .feature-card { padding: 30px 24px; }
}

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