/* ==========================================================================
   Kabata Florist — Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --background: #F7F2EF;
  --foreground: #2A1A1F;
  --primary: #B8860B;
  --primary-hover: #96700A;
  --primary-foreground: #F7F2EF;
  --secondary: #EDE5DF;
  --secondary-foreground: #2A1A1F;
  --accent: #6B7A5E;
  --accent-foreground: #F7F2EF;
  --muted: #E5DDD7;
  --muted-foreground: #7A5A60;
  --card: #FFFFFF;
  --card-foreground: #2A1A1F;
  --border: #E0D5CE;
  --radius: 1rem;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5d;

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-soft: 0 10px 30px -12px rgba(42, 26, 31, 0.18);
  --shadow-lift: 0 20px 45px -18px rgba(42, 26, 31, 0.28);
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p { color: var(--muted-foreground); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-lift); }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-soft); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); box-shadow: var(--shadow-lift); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(247, 242, 239, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(42,26,31,0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--primary); }
.brand .brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-foreground);
  flex-shrink: 0;
}
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--muted-foreground); letter-spacing: 0.04em; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.95rem; font-weight: 600; color: var(--foreground);
  position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--primary); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--foreground);
  transition: all .2s ease;
}
.icon-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--primary-foreground); }
.icon-btn svg { width: 18px; height: 18px; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.hamburger span { width: 18px; height: 2px; background: var(--foreground); border-radius: 2px; transition: all .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  padding: 20px 24px 28px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 499;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { padding: 12px 6px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 10px; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-actions .icon-btn { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -120px; right: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.14), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; bottom: -180px; left: -160px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,122,94,0.14), transparent 70%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.hero-lead { font-size: 1.1rem; color: var(--muted-foreground); max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 32px 0; }
.hero-social-proof { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--background);
  background: var(--secondary); margin-left: -12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; color: var(--primary); font-size: 0.85rem;
}
.avatar-stack span:first-child { margin-left: 0; }
.stars { color: #E0A94A; letter-spacing: 2px; font-size: 0.95rem; }
.hero-social-proof .proof-text { font-size: 0.9rem; color: var(--muted-foreground); font-weight: 500; }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) * 1.6);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-lift);
  background: var(--card);
  border: 1px solid var(--border);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
  border: 1px solid var(--border);
}
.floating-badge .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.floating-badge .dot svg { width: 16px; height: 16px; }
.floating-badge strong { display: block; font-size: 0.82rem; font-family: var(--font-body); }
.floating-badge span { font-size: 0.76rem; color: var(--muted-foreground); }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3 { grid-template-columns: 1fr; } }

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--secondary); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-media img { transform: scale(1.06) rotate(1deg); }
.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: var(--primary-foreground);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 6px 12px; border-radius: 999px;
}
.badge.badge-accent { background: var(--accent); }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-category { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); font-weight: 700; }
.product-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.product-desc { color: var(--muted-foreground); font-size: 0.9rem; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 12px; }
.product-price { font-family: var(--font-display); font-weight: 600; color: var(--primary); font-size: 1.02rem; }

.center-link { text-align: center; margin-top: 44px; }
.text-link { font-weight: 700; color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.text-link:hover { color: var(--primary-hover); }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-collage { position: relative; }
.about-collage .main-img { border-radius: calc(var(--radius) * 1.4); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--border); }
.about-collage .small-img {
  position: absolute; width: 42%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift); border: 4px solid var(--background);
}
.about-collage .small-img.one { bottom: -10%; left: -10%; }
.about-collage .small-img.two { top: -8%; right: -12%; }
.about-collage .collage-badge {
  position: absolute; bottom: 12px; right: -10px;
  background: var(--foreground); color: var(--background);
  border-radius: var(--radius); padding: 14px 18px; max-width: 220px;
  font-size: 0.8rem; box-shadow: var(--shadow-lift);
}
.about-content .btn-row { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.feature-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feature-badge { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.feature-badge .icon { width: 38px; height: 38px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.feature-badge .icon svg { width: 18px; height: 18px; }
.feature-badge span { font-size: 0.88rem; font-weight: 600; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 88px; }
  .about-collage { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 480px) { .feature-badges { grid-template-columns: 1fr; } }

/* ==========================================================================
   Delivery Area
   ========================================================================== */
.area-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-soft);
}
.area-card .icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--secondary);
  display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 18px;
}
.area-card .icon svg { width: 26px; height: 26px; }
.area-card h3 { font-size: 1.3rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.area-tags span { background: var(--secondary); color: var(--secondary-foreground); font-size: 0.8rem; padding: 6px 12px; border-radius: 999px; font-weight: 500; }

.info-banner {
  margin-top: 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: var(--secondary); border-radius: var(--radius); padding: 26px 32px;
}
.info-banner p { margin: 0; max-width: 560px; color: var(--secondary-foreground); }

/* ==========================================================================
   How to order (steps)
   ========================================================================== */
.steps-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 960px) {
  .steps-row { grid-auto-flow: column; grid-auto-columns: 78%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; grid-template-columns: none; }
  .steps-row .step-card { scroll-snap-align: start; }
}
.step-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; position: relative;
}
.step-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--muted);
  -webkit-text-stroke: 1.5px var(--primary); color: transparent;
  margin-bottom: 12px; display: block;
}
.step-card h3 { font-size: 1.05rem; }
.step-card p { font-size: 0.86rem; color: var(--muted-foreground); margin: 0; }
.steps-cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card .stars { font-size: 1rem; }
.testimonial-tag {
  align-self: flex-start; background: var(--secondary); color: var(--accent);
  font-size: 0.74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em;
}
.testimonial-quote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--foreground); flex: 1; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600;
}
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--muted-foreground); }

.cta-banner {
  background: var(--primary); color: var(--primary-foreground);
  border-radius: calc(var(--radius) * 1.4);
  padding: 56px 40px; text-align: center; margin-top: 64px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 55%);
}
.cta-banner h2 { color: var(--primary-foreground); position: relative; }
.cta-banner .btn-whatsapp { position: relative; margin-top: 8px; }

/* ==========================================================================
   Form pemesanan
   ========================================================================== */
.order-form-wrap {
  background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.4);
  box-shadow: var(--shadow-lift); padding: 44px; max-width: 880px; margin: 0 auto;
}
.form-fieldset { margin-bottom: 34px; }
.form-fieldset:last-of-type { margin-bottom: 0; }
.form-fieldset legend {
  display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; color: var(--primary); padding: 0; margin-bottom: 18px; width: 100%;
  border-bottom: 1px solid var(--border); padding-bottom: 12px;
}
.form-fieldset legend .num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: var(--primary-foreground);
  font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); flex-shrink: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; }
.field .optional { color: var(--muted-foreground); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--background); color: var(--foreground); transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(184,134,11,0.14);
}
.form-note { font-size: 0.8rem; color: var(--muted-foreground); text-align: center; margin-top: 18px; }
.form-success {
  display: none; margin-top: 22px; padding: 16px 20px; border-radius: var(--radius);
  background: rgba(37, 211, 102, 0.12); border: 1px solid var(--whatsapp); color: #146b39;
  font-weight: 600; font-size: 0.92rem; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   Floating buttons
   ========================================================================== */
.floating-actions {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  transition: opacity .3s ease, transform .3s ease;
}
.floating-actions.hide-order .fab-order { opacity: 0; transform: scale(0.8) translateY(10px); pointer-events: none; }
.fab {
  display: flex; align-items: center; gap: 10px;
  border-radius: 999px; padding: 14px 20px 14px 14px;
  box-shadow: var(--shadow-lift); font-weight: 700; font-size: 0.88rem;
  transition: transform .25s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(255,255,255,0.22); }
.fab-icon svg { width: 16px; height: 16px; }
.fab-wa { background: var(--whatsapp); color: #fff; }
.fab-order { background: var(--primary); color: var(--primary-foreground); }

@media (max-width: 640px) {
  .fab span.fab-label { display: none; }
  .fab { padding: 15px; }
  .fab-icon { width: 22px; height: 22px; background: transparent; }
  .fab-icon svg { width: 22px; height: 22px; }
}

/* ==========================================================================
   Modal / Drawer form order
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(42,26,31,0.5); backdrop-filter: blur(2px);
  z-index: 600; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 92vw);
  background: var(--background); z-index: 601; box-shadow: var(--shadow-lift);
  transform: translateX(100%); transition: transform .35s ease;
  overflow-y: auto; padding: 28px 26px 40px;
}
.modal-drawer.open { transform: translateX(0); }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.modal-head h3 { margin: 0; font-size: 1.3rem; color: var(--primary); }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--card);
  display: flex; align-items: center; justify-content: center;
}
.modal-close svg { width: 16px; height: 16px; }

/* ==========================================================================
   Contact / Products hero, filters
   ========================================================================== */
.page-hero {
  padding-top: calc(var(--header-h) + 56px); padding-bottom: 40px; text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--muted-foreground); }

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.pill {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: var(--card);
  font-size: 0.86rem; font-weight: 600; transition: all .2s ease;
}
.pill.active, .pill:hover { background: var(--primary); border-color: var(--primary); color: var(--primary-foreground); }

.closing-banner { text-align: center; background: var(--secondary); border-radius: calc(var(--radius) * 1.4); padding: 56px 32px; margin-top: 24px; }
.closing-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.closing-banner p { max-width: 520px; margin: 0 auto 26px; color: var(--muted-foreground); }

/* Contact & about page specifics */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.contact-info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .icon { width: 40px; height: 40px; border-radius: 12px; background: var(--secondary); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-row .icon svg { width: 18px; height: 18px; }
.contact-info-row strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { font-size: 0.88rem; color: var(--muted-foreground); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.value-card .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--secondary); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card .icon svg { width: 22px; height: 22px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--foreground); color: var(--background); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; gap: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 14px; }
.footer-brand .brand-mark { background: var(--primary); }
.footer-col h4 { font-size: 0.95rem; color: var(--background); margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; }
.footer-desc { color: rgba(247,242,239,0.65); font-size: 0.9rem; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,242,239,0.25); display: flex; align-items: center; justify-content: center; }
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(247,242,239,0.75); font-size: 0.9rem; }
.footer-links a:hover { color: var(--background); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(247,242,239,0.8); }
.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(247,242,239,0.14); padding: 22px 0; text-align: center; font-size: 0.82rem; color: rgba(247,242,239,0.55); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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