/* =========================================================
   Casa Alloggio La Roccia — Alloggio per Anziani
   Premium brand system — Latina, Italy
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Warm rose-tinted backgrounds */
  --rose-white:   #FFF8F5;
  --rose-soft:    #FFF1ED;
  --blush:        #FFE4DD;
  --blush-deep:   #F5CFC5;
  --warm-gray:    #C4A99E;
  --walnut:       #6B4A3D;

  /* Depth & ink */
  --espresso:     #2D1B14;
  --cocoa:        #3D2B22;
  --ink:          #1A0F0A;

  /* Brand accents (from logo) */
  --primary:      #E8566D;
  --primary-soft: #F28B9B;
  --primary-dark: #C93E54;
  --secondary:    #4A90D9;
  --secondary-soft:#7BB3E8;
  --accent:       #F5B946;
  --accent-soft:  #FBCF73;
  --accent-dark:  #D9A030;

  /* Functional */
  --line:         rgba(45,27,20,.12);
  --line-soft:    rgba(45,27,20,.07);
  --overlay:      rgba(45,27,20,.50);
  --shadow-sm:    0 2px 8px rgba(45,27,20,.06);
  --shadow-md:    0 14px 40px rgba(45,27,20,.10);
  --shadow-lg:    0 30px 80px rgba(45,27,20,.16);
  --shadow-xl:    0 50px 120px rgba(45,27,20,.20);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", "Inter", ui-sans-serif, 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);

  /* 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;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--rose-white);
  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(--rose-white);
  -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(--primary-dark); }

::selection { background: var(--primary-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; }

.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(--warm-gray);
  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(--walnut);
  font-style: italic;
}

.muted { color: var(--warm-gray); }
.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;
}

.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-rose-white { background: var(--rose-white); }
.bg-rose-soft  { background: var(--rose-soft); }
.bg-blush      { background: var(--blush); }
.bg-warm       { background: linear-gradient(180deg, var(--rose-white) 0%, var(--blush-deep) 100%); }
.bg-espresso   { background: var(--espresso); color: var(--rose-white); }
.bg-espresso h1, .bg-espresso h2, .bg-espresso h3, .bg-espresso h4 { color: var(--rose-white); }
.bg-espresso .eyebrow { color: var(--accent-soft); }
.bg-espresso .muted { color: rgba(255,248,245,.6); }

/* ---------- 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(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232,86,109,.3);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--cocoa);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--rose-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(--rose-white);
  color: var(--espresso);
  border-color: var(--rose-white);
}
.btn-light:hover {
  background: var(--blush);
  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(255,248,245,.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;
  text-decoration: none;
  line-height: 1;
}
.nav-brand img {
  height: 48px;
  width: auto;
  display: block;
  transition: height var(--dur) var(--ease);
}
.navbar.is-solid .nav-brand img { height: 38px; }
.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.5rem;
  color: var(--espresso);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .5rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  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(--primary);
  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 ---------- */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--rose-white);
  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 ul a.is-active { color: var(--primary); }
.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(--warm-gray);
  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(--rose-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(232,86,109,.10), transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(245,185,70,.12), transparent 60%),
    linear-gradient(180deg, var(--rose-white) 0%, var(--rose-soft) 100%);
  z-index: 0;
}
.hero-ornament {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: rgba(232,86,109,.08);
  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; padding-top: 4.5rem; }
  .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 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 40ch;
  font-size: 1.08rem;
  color: var(--walnut);
  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;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.hero-meta-item strong .star {
  color: var(--accent);
  font-size: .9rem;
}
.hero-meta-item span {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.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(45,27,20,.35) 100%);
}
.hero-badge {
  position: absolute;
  left: -2px;
    bottom: -5px;
  background: var(--rose-white);
  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);
  overflow: hidden;
}
.hero-badge-ring img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.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(--warm-gray);
}
@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(--warm-gray);
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--warm-gray), 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; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--espresso);
  color: var(--rose-white);
  padding: 1.4rem 0;
  border-block: 1px solid rgba(255,255,255,.06);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .6rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border: 0; }
.trust-ico {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-ico svg { width: 20px; height: 20px; }
.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-soft);
  line-height: 1.2;
}
.trust-text span {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,248,245,.55);
}
@media (max-width: 720px) {
  .trust-bar-inner { gap: .4rem; }
  .trust-item { padding: .6rem 1.2rem; border: 0; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { display: none; }
}

/* ---------- 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(--primary-dark), var(--primary));
  -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);
}

/* ---------- 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(--rose-white);
  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(--rose-white);
  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;
}

.split-copy .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: var(--sp-3);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  color: var(--walnut);
  background: var(--rose-white);
}

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

.s-card {
  padding: 2.2rem 1.8rem;
  background: var(--rose-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.s-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.s-ico {
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: var(--rose-soft);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  color: var(--primary);
}
.s-ico svg { width: 24px; height: 24px; }
.s-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: .4rem;
  color: var(--espresso);
}
.s-card p {
  font-size: .95rem;
  color: var(--walnut);
  line-height: 1.55;
  margin: 0;
}

/* ---------- 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(--rose-white);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.pillar .p-ico {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--rose-soft);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.pillar .p-ico svg { width: 22px; height: 22px; }
.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(--walnut);
  line-height: 1.55;
  margin: 0;
}

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

.testi-card {
  position: relative;
  background: var(--rose-white);
  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(--accent);
  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: "\201C" "\201D";
}
.testi-card blockquote::before {
  content: open-quote;
  color: var(--primary);
  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(--primary-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 .role {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 1.4rem 2rem;
  background: var(--rose-white);
  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(--accent); font-size: 1.1rem; }
.rating-banner .text {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  padding-block: var(--sp-7);
  background:
    radial-gradient(900px 400px at 15% 50%, rgba(232,86,109,.2), transparent 60%),
    radial-gradient(900px 400px at 85% 50%, rgba(245,185,70,.18), transparent 60%),
    var(--espresso);
  color: var(--rose-white);
  overflow: hidden;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 {
  color: var(--rose-white);
  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(--accent-soft);
}
.cta-band p {
  color: rgba(255,248,245,.70);
  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(--rose-soft);
  display: grid; place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-row .c-ico svg { width: 18px; height: 18px; }
.contact-row .c-label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  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(--primary); }

.contact-box {
  background: var(--rose-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
  padding: 1.4rem 1.6rem;
  font-size: .95rem;
  color: var(--walnut);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: var(--sp-3);
}

.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(--warm-gray);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.1rem;
  background: var(--rose-white);
  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(--primary);
  box-shadow: 0 0 0 3px rgba(232,86,109,.12);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 51;
  width: 60px; height: 60px;
  border-radius: var(--r-full);
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.12); }
}
@media (max-width: 720px) {
  .wa-float { bottom: 5.5rem; right: 1rem; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 50;
  display: none;
  gap: .6rem;
  padding: .5rem;
  background: rgba(45,27,20,.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(255,248,245,.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(232,86,109,.1), 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(--accent-soft);
  margin-bottom: 1.2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--rose-white);
  margin-bottom: .4rem;
  line-height: 1;
}
.footer-brand-sub {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: .8rem;
}
.footer a { color: rgba(255,248,245,.72); display: block; padding: .2rem 0; font-size: .92rem; }
.footer a:hover { color: var(--accent-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(255,248,245,.48);
}
.footer-love {
  margin-top: .3rem;
}
.footer-agency {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
  display: inline;
  padding: 0;
}
.footer-agency:hover { color: var(--accent); }
.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(--primary);
  background: var(--primary);
  color: #fff;
}

/* ---------- Demo dialog ---------- */
.demo-dialog {
  border: none;
  background: none;
  padding: 0;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: auto;
}
.demo-dialog::backdrop {
  background: rgba(45,27,20,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.demo-dialog-inner {
  background: var(--espresso);
  border: 1px solid rgba(232,86,109,.22);
  border-radius: var(--r-lg);
  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: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(232,86,109,.35);
  padding: 4px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.demo-dialog-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--rose-white);
  margin-bottom: 22px;
  line-height: 1.2;
}
.demo-dialog-text {
  font-family: var(--font-body);
  font-size: .875rem;
  color: rgba(255,248,245,.6);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: left;
}
.demo-dialog-text strong {
  color: rgba(255,248,245,.85);
  font-weight: 600;
}
.demo-dialog-copy {
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,248,245,.35);
  letter-spacing: .08em;
  margin-top: 18px;
  margin-bottom: 0;
}
.demo-dialog-actions {
  display: flex;
  gap: .8rem;
  margin-top: 22px;
}
.demo-dialog-actions .btn { flex: 1; font-size: .72rem; padding: 1rem 1.2rem; }
.demo-dialog-actions .btn-outline {
  color: var(--rose-white);
  border-color: rgba(255,248,245,.45);
}
.demo-dialog-actions .btn-outline:hover {
  background: rgba(255,248,245,.15);
  color: #fff;
  border-color: rgba(255,248,245,.7);
}

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

/* ---------- 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].is-visible[data-reveal="left"],
[data-reveal].is-visible[data-reveal="right"] {
  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: .40s; }

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

/* ---------- Utilities ---------- */
.u-center { text-align: center; }
.u-mt-4 { margin-top: var(--sp-4); }
.u-mt-5 { margin-top: var(--sp-5); }
.u-mb-4 { margin-bottom: var(--sp-4); }
.u-mb-5 { margin-bottom: var(--sp-5); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
