/* =========================================================
   Dali Lab — Laboratorio di Estetica e Benessere
   Premium brand system — Latina, Italy
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Core neutrals — warm, ivory, editorial */
  --ivory:        #FBF7F1;
  --ivory-soft:   #F7F1E8;
  --cream:        #F1E8D9;
  --sand:         #E8DAC4;
  --beige:        #D9C6AB;
  --nude:         #C9B093;
  --taupe:        #A8896B;
  --mocha:        #7A5A40;

  /* Depth & ink */
  --cocoa:        #3F2B1D;
  --espresso:     #231610;
  --ink:          #110A06;

  /* Accents */
  --gold:         #C9A368;
  --gold-soft:    #E0C28D;
  --gold-dark:    #9E7D47;
  --blush:        #EBC7B9;
  --rose:         #D9A493;

  /* Functional */
  --line:         rgba(63,43,29,.14);
  --line-soft:    rgba(63,43,29,.08);
  --overlay:      rgba(35,22,16,.45);
  --overlay-soft: rgba(35,22,16,.22);
  --shadow-sm:    0 2px 8px rgba(63,43,29,.06);
  --shadow-md:    0 14px 40px rgba(63,43,29,.10);
  --shadow-lg:    0 30px 80px rgba(63,43,29,.18);
  --shadow-xl:    0 50px 120px rgba(63,43,29,.22);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Jost", "Inter", ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --fs-xs:   0.78rem;
  --fs-sm:   0.88rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.35rem;
  --fs-xl:   clamp(1.8rem, 2.6vw, 2.6rem);
  --fs-2xl:  clamp(2.4rem, 4.5vw, 4rem);
  --fs-3xl:  clamp(3rem, 7vw, 6.2rem);
  --fs-4xl:  clamp(3.8rem, 10vw, 8.5rem);

  /* Spacing rhythm */
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;
  --sp-8: 9rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 34px;
  --r-full: 999px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .55s;
  --dur-fast: .28s;

  /* Layout */
  --maxw: 1240px;
  --maxw-narrow: 920px;
  --maxw-wide: 1440px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ivory);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--cocoa);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}

img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--gold-dark); }

::selection { background: var(--gold-soft); color: var(--espresso); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-3);
}

h1 { font-size: var(--fs-3xl); font-weight: 300; }
h2 { font-size: var(--fs-2xl); font-weight: 300; }
h3 { font-size: var(--fs-xl); font-weight: 400; }
h4 { font-size: var(--fs-lg); font-weight: 500; }

p { margin: 0 0 var(--sp-2); }
p + p { margin-top: var(--sp-2); }

.serif  { font-family: var(--font-display); font-weight: 300; }
.italic { font-style: italic; }
.script { font-family: var(--font-script); font-style: italic; font-weight: 300; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 2.4rem; height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow.center::after {
  content: "";
  width: 2.4rem; height: 1px;
  background: currentColor;
  opacity: .6;
}

.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  line-height: 1.45;
  color: var(--mocha);
  font-style: italic;
}

.muted { color: var(--taupe); }
.small { font-size: var(--fs-sm); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
}
.container-narrow {
  width: min(100% - 2.4rem, var(--maxw-narrow));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2rem, var(--maxw-wide));
  margin-inline: auto;
}

.section {
  padding-block: var(--sp-7);
  position: relative;
  overflow: hidden;
}
.section-sm { padding-block: var(--sp-6); }
.section-lg { padding-block: var(--sp-8); }

.bg-ivory   { background: var(--ivory); }
.bg-cream   { background: var(--cream); }
.bg-sand    { background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%); }
.bg-espresso{ background: var(--espresso); color: var(--ivory); }
.bg-espresso h1, .bg-espresso h2, .bg-espresso h3, .bg-espresso h4 { color: var(--ivory); }
.bg-espresso .eyebrow { color: var(--gold-soft); }
.bg-espresso .muted { color: rgba(251,247,241,.6); }

.grid { display: grid; gap: var(--sp-4); }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 900px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .g-3.keep-2-md { grid-template-columns: repeat(2, 1fr); }
  .g-4.keep-2-md { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.05rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn .ico {
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover .ico { transform: translateX(4px); }

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.btn-primary:hover {
  background: var(--cocoa);
  border-color: var(--cocoa);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201,163,104,.35);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cocoa);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--espresso);
  color: var(--espresso);
  background: var(--ivory-soft);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1fb957;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37,211,102,.35);
}

.btn-light {
  background: var(--ivory);
  color: var(--espresso);
  border-color: var(--ivory);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: .8rem 1.3rem;
  font-size: .72rem;
  letter-spacing: .2em;
}

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--espresso);
  padding-bottom: .4rem;
  position: relative;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(.4); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 1.2rem 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  background: transparent;
}
.navbar.is-solid {
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--espresso);
  letter-spacing: -.01em;
  text-decoration: none;
  line-height: 1;
}
.nav-brand img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--dur) var(--ease), height var(--dur) var(--ease);
  mix-blend-mode: multiply;
}
.navbar.is-solid .nav-brand img { height: 36px; }
.nav-brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-wordmark span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--espresso);
  letter-spacing: -.01em;
}
.nav-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .52rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 2px;
}
@media (max-width: 560px) {
  .nav-brand img { height: 36px; }
  .nav-brand-sub { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cocoa);
  position: relative;
  padding: .4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--espresso);
}
.nav-burger span {
  position: relative;
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.nav-burger span::before { top: -7px; }
.nav-burger span::after  { top:  7px; }
.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.always-visible) { display: none; }
  .nav-burger { display: inline-flex; }
}

.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 55;
  transform: translateY(-100%);
  transition: transform var(--dur) var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 3rem;
  overflow-y: auto;
}
.mobile-panel.is-open { transform: translateY(0); }
.mobile-panel ul {
  list-style: none; padding: 0; margin: 0 0 2.4rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.mobile-panel ul a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--espresso);
  font-style: italic;
}
.mobile-panel .m-actions {
  display: flex; flex-direction: column; gap: .8rem;
  margin-top: auto;
}
.mobile-panel .m-sub {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 2rem;
}
.mobile-panel .m-sub a { color: var(--espresso); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: var(--ivory);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(201,163,104,.18), transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(235,199,185,.28), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
  z-index: 0;
}
.hero-ornament {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: rgba(201,163,104,.12);
  font-size: clamp(10rem, 30vw, 28rem);
  line-height: .8;
  letter-spacing: -.04em;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 900px) {
  .hero {
    align-items: stretch;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    flex: 1;
    align-content: center;
    padding-inline: 1rem;
  }
  .hero-visual { display: none; }
}

.hero h1 {
  font-size: clamp(3rem, 7.6vw, 6.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-3);
}
.hero h1 em {
  font-style: italic;
  color: var(--mocha);
}
.hero h1 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 40ch;
  font-size: 1.08rem;
  color: var(--mocha);
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--sp-5);
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
}
.hero-meta-item span {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(0);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(35,22,16,.38) 100%);
}
.hero-badge {
  position: absolute;
  left: -3rem;
  bottom: 2.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 1rem 1.6rem 1rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.hero-badge-ring {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  display: grid;
  place-items: center;
  color: var(--espresso);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
}
.hero-badge-text {
  display: flex; flex-direction: column;
}
.hero-badge-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--espresso);
  font-size: 1rem;
  letter-spacing: .05em;
}
.hero-badge-text span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
}
@media (max-width: 900px) {
  .hero-badge { left: 1rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .65rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--taupe), transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee / ribbon ---------- */
.ribbon {
  background: var(--espresso);
  color: var(--gold-soft);
  padding: 1.1rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
}
.ribbon-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 5s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: .01em;
}
.ribbon-track span {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.ribbon-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section titles ---------- */
.section-title {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 52ch;
}
.section-title.center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.section-title h2 {
  margin-bottom: .6rem;
}
.section-title h2 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

/* ---------- Manifesto / Intro block ---------- */
.manifesto {
  position: relative;
  padding-block: var(--sp-7);
}
.manifesto-copy {
  max-width: 30ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.3;
  color: var(--espresso);
}
.manifesto-copy em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ---------- Cards: Treatment categories ---------- */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 900px) {
  .treatment-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .treatment-grid { grid-template-columns: repeat(2,1fr); }
}

.t-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream);
  isolation: isolate;
  cursor: pointer;
}
.t-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease-out), filter .9s var(--ease-out);
  filter: saturate(.95) brightness(.96);
  z-index: 0;
}
.t-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,22,16,0) 30%, rgba(35,22,16,.75) 100%);
  z-index: 1;
  transition: background var(--dur) var(--ease);
}
.t-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(1);
}
.t-card:hover::before {
  background: linear-gradient(180deg, rgba(35,22,16,.1) 0%, rgba(35,22,16,.85) 100%);
}

.t-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem;
  z-index: 2;
  color: var(--ivory);
}
.t-card .num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.1rem;
  z-index: 2;
}
.t-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: .35rem;
}
.t-card .micro {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: .8rem;
}
.t-card .t-hover {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-out), opacity .4s var(--ease);
  opacity: 0;
  color: rgba(251,247,241,.9);
  font-size: .95rem;
  line-height: 1.55;
}
.t-card:hover .t-hover {
  max-height: 160px;
  opacity: 1;
}
.t-card .t-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.t-card .t-link::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}
.t-card:hover .t-link::after { transform: translateX(4px); }

/* ---------- Split / feature with image ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
}

.media-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.media-stack .main-img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.media-stack .main-img img { width: 100%; height: 100%; object-fit: cover; }
.media-stack .sec-img {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-lg);
}
.media-stack .sec-img img { width: 100%; height: 100%; object-fit: cover; }
.media-stack .tag {
  position: absolute;
  top: 1.4rem;
  left: -1.4rem;
  background: var(--ivory);
  border-radius: var(--r-full);
  padding: .6rem 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--espresso);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* ---------- Features list (pillars) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
}
.pillar {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ivory);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.pillar .p-ico {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: var(--gold-dark);
}
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: .4rem;
  color: var(--espresso);
}
.pillar p {
  font-size: .95rem;
  color: var(--mocha);
  line-height: 1.55;
}

/* ---------- Testimonials ---------- */
.testi-head { margin-bottom: var(--sp-5); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

.testi-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testi-card .stars {
  display: flex;
  gap: .2rem;
  color: var(--gold);
  font-size: 1rem;
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--espresso);
  font-style: italic;
  margin: 0;
  quotes: "“" "”";
}
.testi-card blockquote::before {
  content: open-quote;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 0;
  position: relative;
  top: .35em;
  margin-right: .1em;
}
.testi-card footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.testi-card .avatar {
  width: 42px; height: 42px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold-soft), var(--blush));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--espresso);
}
.testi-card .name {
  font-weight: 400;
  color: var(--espresso);
  font-size: .95rem;
}
.testi-card .date {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
}

.rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  width: fit-content;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.rating-banner .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
}
.rating-banner .stars { color: var(--gold); font-size: 1.1rem; }
.rating-banner .text {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- CTA Ribbon (gold / big) ---------- */
.cta-band {
  position: relative;
  padding-block: var(--sp-7);
  background:
    radial-gradient(900px 400px at 15% 50%, rgba(201,163,104,.3), transparent 60%),
    radial-gradient(900px 400px at 85% 50%, rgba(235,199,185,.25), transparent 60%),
    var(--espresso);
  color: var(--ivory);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='n'><feTurbulence baseFrequency='0.9' /><feColorMatrix values='0 0 0 0 .78  0 0 0 0 .64  0 0 0 0 .41  0 0 0 .04 0' /></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .5;
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.cta-band p {
  color: rgba(251,247,241,.75);
  max-width: 48ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 14px;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--r-md); }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.g-item:hover img { transform: scale(1.05); }

.g-a { grid-column: span 6; grid-row: span 4; }
.g-b { grid-column: span 3; grid-row: span 3; }
.g-c { grid-column: span 3; grid-row: span 3; }
.g-d { grid-column: span 3; grid-row: span 4; }
.g-e { grid-column: span 3; grid-row: span 4; }
.g-f { grid-column: span 3; grid-row: span 3; }
.g-g { grid-column: span 3; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(6,1fr); grid-auto-rows: 70px; }
  .g-a { grid-column: span 6; grid-row: span 4; }
  .g-b { grid-column: span 3; grid-row: span 3; }
  .g-c { grid-column: span 3; grid-row: span 3; }
  .g-d { grid-column: span 3; grid-row: span 3; }
  .g-e { grid-column: span 3; grid-row: span 3; }
  .g-f { grid-column: span 3; grid-row: span 3; }
  .g-g { grid-column: span 6; grid-row: span 3; }
}

/* ---------- Contact section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex; flex-direction: column;
  gap: 1.6rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.contact-row:last-child { border: 0; padding-bottom: 0; }
.contact-row .c-ico {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-row .c-label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .25rem;
}
.contact-row .c-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--espresso);
}
.contact-row a { color: var(--espresso); }
.contact-row a:hover { color: var(--gold-dark); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: .55rem 0;
  font-size: .95rem;
  border-bottom: 1px dashed var(--line-soft);
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  color: var(--espresso);
}
.hours-table tr.today td {
  color: var(--gold-dark);
  font-weight: 500;
}
.hours-table tr.closed td:last-child {
  color: var(--taupe);
  font-style: italic;
}

.map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: 1; } }

.field {
  display: flex; flex-direction: column; gap: .4rem;
}
.field label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--espresso);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,104,.15);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 50;
  display: none;
  gap: .6rem;
  padding: .5rem;
  background: rgba(35,22,16,.94);
  backdrop-filter: blur(10px);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
}
.sticky-mobile .btn { flex: 1; padding: .85rem 1rem; font-size: .72rem; }
@media (max-width: 720px) { .sticky-mobile { display: flex; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: rgba(251,247,241,.72);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 80% -10%, rgba(201,163,104,.16), transparent 60%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer h5 {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--ivory);
  margin-bottom: .6rem;
  line-height: 1;
}
.footer-brand-sub {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 1rem;
}
.footer a { color: rgba(251,247,241,.72); display: block; padding: .2rem 0; font-size: .92rem; }
.footer a:hover { color: var(--gold-soft); }

.footer-bottom {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(251,247,241,.48);
}
.footer-socials {
  display: flex; gap: .6rem;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  transition: all var(--dur) var(--ease);
}
.footer-socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--espresso);
}

/* ---------- Page hero (for interior pages) ---------- */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(201,163,104,.18), transparent 60%),
    radial-gradient(700px 400px at 80% 80%, rgba(235,199,185,.18), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 1rem; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--mocha); }
.page-hero p { max-width: 52ch; font-size: 1.1rem; color: var(--mocha); }
.page-hero .crumbs {
  display: flex;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}
.page-hero .crumbs a:hover { color: var(--gold-dark); }

/* ---------- Services detailed list ---------- */
.services-section {
  padding-block: var(--sp-7);
  border-top: 1px solid var(--line);
}
.services-section:first-child { border: 0; }
.services-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-5);
  align-items: start;
  margin-bottom: var(--sp-5);
}
@media (max-width: 900px) {
  .services-head { grid-template-columns: 1fr; gap: var(--sp-3); }
}
.services-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0;
}
.services-head h2 em { font-style: italic; color: var(--gold-dark); }
.services-head .lede { color: var(--mocha); font-size: 1.05rem; }
.services-head .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}
@media (max-width: 900px) { .service-list { grid-template-columns: 1fr; } }

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line-soft);
  transition: padding var(--dur) var(--ease);
}
.service-item:hover { padding-inline: .6rem; }
.service-item h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--espresso);
  margin: 0;
}
.service-item p {
  font-size: .88rem;
  color: var(--mocha);
  margin: .2rem 0 0;
}
.service-item .tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1rem;
  white-space: nowrap;
}

/* ---------- Reviews page layout ---------- */
.reviews-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: 2rem 0 1rem;
}
@media (max-width: 700px) { .reviews-hero-stats { grid-template-columns: 1fr; } }

.stat-card {
  text-align: center;
  padding: 1.8rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-card span {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.reviews-masonry {
  column-count: 3;
  column-gap: 1rem;
}
@media (max-width: 900px) { .reviews-masonry { column-count: 2; } }
@media (max-width: 640px) { .reviews-masonry { column-count: 1; } }
.reviews-masonry .testi-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}
.reviews-masonry .testi-card footer { display: flex; }

/* ---------- About page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 900px) { .about-intro { grid-template-columns: 1fr; } }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 2.5rem 2rem;
  background: var(--ivory);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card .v-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold-dark);
  opacity: .6;
  margin-bottom: 1rem;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: .6rem;
}

/* ---------- Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible { transform: translateX(0); }

[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ribbon-track { animation: none; }
  .hero-scroll::after { animation: none; }
}

/* ---------- Utilities ---------- */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-mb-0 { margin-bottom: 0; }
.u-mt-3 { margin-top: var(--sp-3); }
.u-mb-3 { margin-bottom: var(--sp-3); }
.u-mt-4 { margin-top: var(--sp-4); }
.u-mb-4 { margin-bottom: var(--sp-4); }
.u-mt-5 { margin-top: var(--sp-5); }
.u-mb-5 { margin-bottom: var(--sp-5); }
.u-flex { display: flex; }
.u-flex-wrap { flex-wrap: wrap; }
.u-gap-2 { gap: var(--sp-2); }
.u-gap-3 { gap: var(--sp-3); }

/* ---------- Chip ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border-radius: var(--r-full);
  background: var(--cream);
  color: var(--mocha);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.chip-dark { background: var(--espresso); color: var(--gold-soft); }
.chip-gold { background: var(--gold); color: var(--espresso); }

/* ---------- Decorative divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-block: var(--sp-4);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--line);
}
.divider span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
}

/* ---------- Reduce margin for last-child text ---------- */
.section :last-child { margin-bottom: 0; }

/* =========================================
   FOOTER AGENCY CREDIT
   ========================================= */
.footer-love {
  font-size: var(--fs-xs);
  color: var(--taupe);
  margin-top: .3rem;
}

.footer-agency {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-agency:hover {
  color: var(--gold);
}

/* =========================================
   SOCIAL LINK CARDS (contatti)
   ========================================= */
.social-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md, 6px);
  text-decoration: none;
  color: var(--espresso);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.social-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.social-card-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--mocha);
  transition: background 0.3s, color 0.3s;
}

.social-card:hover .social-card-ico {
  background: var(--gold);
  color: var(--ivory);
}

.social-card-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.social-card-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--espresso);
  margin-top: .15rem;
}

.social-card-hint {
  font-size: var(--fs-xs);
  color: var(--taupe);
  margin-top: .15rem;
}

.social-card-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.social-card:hover .social-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .social-card {
    padding: 1rem 1.1rem;
    gap: .9rem;
  }
  .social-card-ico {
    width: 40px;
    height: 40px;
  }
  .social-card-ico svg {
    width: 20px;
    height: 20px;
  }
  .social-card-val {
    font-size: 1.05rem;
  }
}

/* =========================================
   DEMO DIALOG
   ========================================= */
.demo-dialog {
  border: none;
  background: none;
  padding: 0;
  max-width: 500px;
  width: calc(100% - 32px);
  margin: auto;
}

.demo-dialog::backdrop {
  background: rgba(35, 22, 16, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.demo-dialog-inner {
  background: var(--espresso);
  border: 1px solid rgba(201, 163, 104, 0.22);
  border-radius: 2px;
  padding: 44px 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.demo-dialog-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 163, 104, 0.35);
  padding: 4px 14px;
  margin-bottom: 22px;
}

.demo-dialog-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 22px;
  line-height: 1.2;
}

.demo-dialog-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(251, 247, 241, 0.6);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: left;
}

.demo-dialog-text strong {
  color: rgba(251, 247, 241, 0.85);
  font-weight: 600;
}

.demo-dialog-copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(251, 247, 241, 0.35);
  letter-spacing: 0.08em;
  margin-top: 18px;
  margin-bottom: 0;
}

.demo-dialog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  background: var(--gold);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
}

.demo-dialog-btn:hover {
  background: transparent;
  color: var(--gold);
}

@media (max-width: 480px) {
  .demo-dialog-inner {
    padding: 32px 24px 28px;
  }
  .demo-dialog-title {
    font-size: 1.3rem;
  }
}
