/* ==========================================================================
   Valeria Cordova — Event Planner
   Design system + styles
   Palette derived from the brand business card:
   charcoal ink · raspberry rose · warm greige/ivory · blush · sage
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colours */
  --ink:        #1f1a17;   /* charcoal — headings / body */
  --ink-soft:   #4a423b;   /* secondary text */
  --ink-faint:  #8a7f76;   /* captions / meta */
  --rose:       #b23a52;   /* raspberry accent / CTA */
  --rose-deep:  #98314a;   /* hover / accessible text accent */
  --rose-soft:  #f4e2e4;   /* tinted backgrounds */
  --blush:      #e7b8be;   /* soft accents */
  --sage:       #97a286;   /* botanical detail */
  --cream:      #faf6f0;   /* page base */
  --greige:     #efe6d9;   /* section band */
  --greige-deep:#e7dccb;   /* deeper band */
  --white:      #ffffff;
  --line:       rgba(31, 26, 23, .12);
  --line-soft:  rgba(31, 26, 23, .07);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script:  "Pinyon Script", "Snell Roundhand", cursive;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --space-section: clamp(4.5rem, 9vw, 8.5rem);
  --container: 1180px;
  --container-narrow: 760px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(31,26,23,.04), 0 4px 14px rgba(31,26,23,.05);
  --shadow-md: 0 8px 24px rgba(31,26,23,.08), 0 2px 6px rgba(31,26,23,.05);
  --shadow-lg: 0 24px 60px rgba(31,26,23,.14);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Layout */
  --nav-h: 76px;

  /* z-index scale */
  --z-nav: 50;
  --z-overlay: 40;
  --z-lightbox: 80;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: var(--cream); padding: .7rem 1.3rem;
  border-radius: 0 0 10px 10px; z-index: 100; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 3px;
}

.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;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p  { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--rose); opacity: .6;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: ""; width: 28px; height: 1px; background: var(--rose); opacity: .6;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.script { font-family: var(--font-script); color: var(--rose); font-weight: 400; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-section); }
.section--band { background: var(--greige); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: rgba(250,246,240,.78); }

.section-head { max-width: 640px; margin-bottom: 3.25rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  min-height: 48px;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--rose); color: var(--white); box-shadow: 0 8px 22px rgba(178,58,82,.28); }
.btn--primary:hover { background: var(--rose-deep); box-shadow: 0 12px 28px rgba(178,58,82,.34); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); }
.btn--outline-light { border: 1px solid rgba(250,246,240,.35); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: var(--z-nav);
  display: flex; align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,246,240,.88);
  backdrop-filter: saturate(150%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem);
       display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--font-script); font-size: 1.95rem; color: var(--ink); white-space: nowrap; }
.brand .brand-sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--rose); font-weight: 600; padding-left: .15rem; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .25rem 0; transition: color .2s var(--ease); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-call { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.nav-call svg { width: 17px; height: 17px; color: var(--rose); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--cream); padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 8vw, 3rem) 3rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .35s var(--ease), visibility .45s;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a.m-link { font-family: var(--font-display); font-size: 2rem; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-menu a.m-link[aria-current="page"] { color: var(--rose); }
.mobile-menu .m-foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5rem)); padding-bottom: var(--space-section); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin: 1.4rem 0 0; }
.hero h1 .script { display: block; font-size: 1.15em; line-height: 1; margin-top: .1em; }
.hero .lead { margin-top: 1.6rem; }
.hero .btn-row { margin-top: 2.2rem; }
.hero-meta { margin-top: 2.6rem; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-meta .stat .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); line-height: 1; }
.hero-meta .stat .lbl { font-size: .8rem; color: var(--ink-faint); letter-spacing: .04em; margin-top: .35rem; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius); padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .85rem; max-width: 240px;
}
.hero-badge .badge-ic { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--rose-soft); display: grid; place-items: center; color: var(--rose); }
.hero-badge .badge-ic svg { width: 20px; height: 20px; }
.hero-badge p { font-size: .82rem; line-height: 1.4; color: var(--ink-soft); }
.hero-badge strong { display: block; font-size: .9rem; }

/* floating decorative sprig */
.sprig-float { position: absolute; pointer-events: none; opacity: .9; }

/* ---------- Image / placeholder media ---------- */
.media {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(231,184,190,.55), transparent 60%),
    linear-gradient(160deg, var(--greige-deep), var(--greige));
  display: grid; place-items: center; overflow: hidden;
}
.media::after { /* subtle paper grain */
  content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.media .monogram { font-family: var(--font-script); font-size: clamp(3rem, 10vw, 6rem); color: rgba(31,26,23,.16); position: relative; z-index: 1; }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .card-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--rose-soft); color: var(--rose); display: grid; place-items: center; margin-bottom: 1.3rem; }
.card .card-ic svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }

/* feature list */
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: .85rem; align-items: flex-start; color: var(--ink-soft); }
.feature-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--rose-soft); color: var(--rose); display: grid; place-items: center; margin-top: 1px; }
.feature-list .tick svg { width: 13px; height: 13px; }

/* ---------- Services ---------- */
.service-card { position: relative; overflow: hidden; }
.service-card .num { font-family: var(--font-display); font-size: 1rem; color: var(--rose); letter-spacing: .1em; }
.service-card h3 { margin: .7rem 0 .7rem; }
.service-card .price { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
.service-card .price span { color: var(--ink-faint); font-family: var(--font-body); font-size: .8rem; display: block; margin-bottom: .2rem; letter-spacing: .03em; }

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; }
.step .step-no { font-family: var(--font-display); font-size: 2.6rem; color: var(--blush); line-height: 1; }
.step h3 { font-size: 1.25rem; margin: .6rem 0 .5rem; }
.step p { font-size: .94rem; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.8rem; }
.filter-btn {
  padding: .55rem 1.25rem; border-radius: 100px; font-size: .88rem; font-weight: 500;
  color: var(--ink-soft); border: 1px solid var(--line); transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/5; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
.gallery-item .media { transition: transform .6s var(--ease); }
.gallery-item:hover .media { transform: scale(1.05); }
.gallery-item .g-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem; background: linear-gradient(to top, rgba(31,26,23,.55), transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-item:hover .g-overlay, .gallery-item:focus-within .g-overlay { opacity: 1; }
.gallery-item .g-overlay .g-cat { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blush); }
.gallery-item .g-overlay .g-title { font-family: var(--font-display); color: var(--cream); font-size: 1.2rem; margin-top: .2rem; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(20,16,14,.92);
  display: grid; place-items: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 900px; width: 100%; }
.lightbox .lb-media { aspect-ratio: 3/2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: var(--cream); text-align: center; margin-top: 1rem; font-family: var(--font-display); font-size: 1.3rem; }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(250,246,240,.12); color: var(--cream); display: grid; place-items: center; }
.lightbox .lb-close:hover { background: rgba(250,246,240,.22); }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(250,246,240,.12); color: var(--cream); display: grid; place-items: center; }
.lightbox .lb-nav:hover { background: rgba(250,246,240,.22); }
.lightbox .lb-prev { left: 1.6rem; } .lightbox .lb-next { right: 1.6rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); height: 100%; display: flex; flex-direction: column; }
.quote-card .stars { display: flex; gap: 3px; color: var(--rose); margin-bottom: 1.1rem; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.05rem; line-height: 1.6; color: var(--ink); font-family: var(--font-display); font-weight: 500; flex: 1; }
.quote-card .q-author { display: flex; align-items: center; gap: .9rem; margin-top: 1.5rem; }
.quote-card .q-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--rose-soft); color: var(--rose); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; }
.quote-card .q-name { font-weight: 600; font-size: .95rem; color: var(--ink); }
.quote-card .q-event { font-size: .82rem; color: var(--ink-faint); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .info-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--white); border: 1px solid var(--line-soft); color: var(--rose); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.info-item .info-ic svg { width: 20px; height: 20px; }
.info-item .info-label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.info-item a, .info-item p { color: var(--ink); font-weight: 500; }
.info-item a:hover { color: var(--rose); }

.form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .5rem; color: var(--ink); }
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--cream); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); font-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(178,58,82,.12); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form .btn { width: 100%; margin-top: .4rem; }
.form-note { font-size: .8rem; color: var(--ink-faint); text-align: center; margin-top: 1rem; }
.form-success { display: none; text-align: center; padding: 1rem 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--rose-soft); color: var(--rose); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success .check svg { width: 30px; height: 30px; }

/* hours table */
.hours { margin-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.hours div { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
.hours .day { color: var(--ink-soft); } .hours .time { color: var(--ink); font-weight: 500; }
.hours .closed { color: var(--ink-faint); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 5rem)); padding-bottom: clamp(2.5rem, 6vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.page-hero .breadcrumb { font-size: .82rem; color: var(--ink-faint); margin-bottom: 1.2rem; }
.page-hero .breadcrumb a:hover { color: var(--rose); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 56ch; margin-inline: auto; }

/* ---------- About specifics ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-portrait { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.signature { font-family: var(--font-script); font-size: 2.6rem; color: var(--ink); margin-top: 1.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.25rem,3vw,2rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,246,240,.72); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250,246,240,.12); }
.footer-brand .brand-name { font-family: var(--font-script); font-size: 2.2rem; color: var(--cream); display: block; line-height: 1; }
.footer-brand .brand-sub { font-size: .6rem; letter-spacing: .32em; text-transform: uppercase; color: var(--blush); font-weight: 600; }
.footer-brand p { margin-top: 1.2rem; max-width: 30ch; font-size: .92rem; color: rgba(250,246,240,.6); }
.footer-col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(250,246,240,.72); padding: .35rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
/* keep button-styled links centered inside footer columns */
.footer-col a.btn { display: inline-flex; width: 100%; padding: .95rem 1.7rem; color: var(--white); font-size: .95rem; }
.footer-col a.btn:hover { color: var(--white); }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(250,246,240,.2); display: grid; place-items: center; color: var(--cream); transition: all .25s var(--ease); }
.socials a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-2px); }
.socials a svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .82rem; color: rgba(250,246,240,.5); }
.footer-bottom a:hover { color: var(--cream); }

/* ---------- Click-to-call floating (mobile) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: var(--z-overlay);
  width: 58px; height: 58px; border-radius: 50%; background: var(--rose); color: var(--white);
  display: none; place-items: center; box-shadow: 0 10px 26px rgba(178,58,82,.4);
  transition: transform .25s var(--ease);
}
.call-fab:hover { transform: scale(1.06); }
.call-fab svg { width: 24px; height: 24px; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ---------- Marquee logos / trust ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem,5vw,3.5rem); opacity: .7; }
.trust span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-top: 1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links, .nav-call { display: none; }
  .nav-actions .btn--primary { display: none; }
  .brand .brand-name { font-size: 1.55rem; }
  .brand .brand-sub { font-size: .52rem; letter-spacing: .3em; }
  .nav-toggle { display: flex; }
  .call-fab { display: grid; }
  .cols-3, .cols-2, .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem; }
  .hero-badge { left: 0; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
