/* ============================================================
   OLINASTUDIO — style.css
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg:          #ffffff;
  --clr-bg-alt:      #f5f5f5;
  --clr-dark:        #262626;
  --clr-muted:       #888888;
  --clr-accent:      #8cb9d3;
  --clr-accent-dark: #5a8fa8;
  --clr-white:       #ffffff;
  --clr-border:      rgba(38, 38, 38, 0.1);
  --clr-cream:       #f0efdb;
  --clr-lightblue:   #b8edff;

  --font-serif: 'Montserrat', sans-serif;
  --font-sans:  'Montserrat', sans-serif;

  --nav-h:     80px;
  --container: 1160px;
  --radius:    3px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.65s;
}

html {
  font-size: 16px;
}

body {
  background: var(--clr-bg);
  color: var(--clr-dark);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8cb9d3;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-dark);
}

.section-title em {
  font-style: italic;
  color: #8cb9d3;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #8cb9d3;
  color: #262626;
  padding: 15px 38px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.2s;
}
.btn-primary:hover {
  background: #5a8fa8;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  color: var(--clr-dark);
  padding: 14px 38px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(38, 38, 38, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(38, 38, 38, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-dark);
  position: relative;
  z-index: 102;
}
.logo span { color: var(--clr-accent-dark); }

.navbar .logo-img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-dark);
  transition: color 0.2s;
}
.nav-links a:not(.btn-nav):hover { color: var(--clr-accent-dark); }

.btn-nav {
  background: var(--clr-accent) !important;
  color: #262626 !important;
  padding: 10px 26px;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease) !important;
}
.btn-nav:hover { background: #5a8fa8 !important; color: #ffffff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  position: relative;
  z-index: 102;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.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); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  top: -240px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,185,211,0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-content {
  padding: 60px 0 100px;
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8cb9d3;
  margin-bottom: 22px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-dark);
  margin-bottom: 26px;
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}
.hero-title em {
  font-style: italic;
  color: #8cb9d3;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-muted);
  max-width: 480px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.55s both;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.9s var(--ease) 1s both;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1;   transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services {
  padding: 128px 0;
  background: #262626;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: #2d2d2d;
  padding: 52px 40px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              transform 0.35s var(--ease), opacity var(--dur) var(--ease);
}
.service-card:hover {
  background: #8cb9d3;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  z-index: 1;
  position: relative;
}
.service-card:hover .service-num { color: #262626; }
.service-card:hover h3 { color: #262626; }
.service-card:hover p  { color: rgba(38,38,38,0.68); }

.service-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 22px;
  transition: color 0.35s;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--clr-dark);
  transition: color 0.35s;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.75;
  transition: color 0.35s;
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio {
  padding: 128px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 290px 290px;
  gap: 16px;
  margin-bottom: 52px;
}

.portfolio-item {
  background: linear-gradient(135deg, var(--c1, #D4B8A0), var(--c2, #C4A282));
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: 1 / 3; }
.portfolio-item:nth-child(4) { grid-column: 2 / 4; }

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c2, #C4A282), var(--c1, #D4B8A0));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.portfolio-item:hover::after { opacity: 1; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(to top, rgba(26,26,26,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
}
.portfolio-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-white);
}

.portfolio-cta { text-align: center; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  padding: 96px 0 80px;
  background: #f0efdb;
}

.about-text {
  max-width: 820px;
  margin: 0 auto 56px;
}

.about-text .section-title { margin-bottom: 32px; }

.about-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-desc p {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--clr-border);
}
.stat {
  padding: 36px 40px;
  text-align: center;
  border-right: 1px solid var(--clr-border);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-size: 0.78rem;
  color: var(--clr-muted);
  letter-spacing: 0.04em;
}

/* About & Contact — overrides para fundo creme ─────────────────────── */
.about .section-label,
.contact .section-label { color: #5a8fa8; }

.about .section-title,
.about .about-desc p,
.about .stat span { color: #555555; }

.about .section-title em { color: #8cb9d3; }

.about .stat strong { color: #262626; }

.about-stats { border-color: rgba(38,38,38,0.12); }
.about .stat { border-right-color: rgba(38,38,38,0.12) !important; }

/* Dark sections — text overrides for white-theme body ─────── */
.services .section-title,
.map-section .section-title,
.testimonials .section-title { color: #ffffff; }

.services .section-label,
.map-section .section-label,
.testimonials .section-label { color: #b8edff; }

.services .service-card h3 { color: #ffffff; }
.map-section .map-subtitle { color: rgba(255, 255, 255, 0.6); }
.testimonials .testimonial-btn { color: #ffffff; }

/* ── MAP ──────────────────────────────────────────────────── */
.map-section {
  padding: 96px 0 0;
  background: #262626;
  overflow: hidden;
}

.map-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.map-subtitle {
  color: var(--clr-muted);
  font-size: 0.95rem;
  margin-top: 14px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  line-height: 0;
}

.map-inner {
  position: relative;
  background: #1a2838;
  border-radius: 0;
  overflow: hidden;
  padding: 32px 0;
}

.world-svg {
  width: 80%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.loc-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: locPulse 3s ease-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
  pointer-events: none;
}

@keyframes locPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  80%  { transform: scale(4.5); opacity: 0; }
  100% { transform: scale(4.5); opacity: 0; }
}

.map-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  padding: 44px 0 96px;
}
.map-locations span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.map-locations span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

/* Map tooltip */
.map-tip {
  position: absolute;
  background: #262626;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
  transform: translateX(-50%) translateY(-100%);
  z-index: 20;
}
.map-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #262626;
}
.map-tip.visible { opacity: 1; }

/* Logo image */
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  height: 30px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  padding: 128px 0;
  overflow: hidden;
  background: #262626;
}

.testimonials-wrapper { overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #8cb9d3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 44px 40px;
  border-radius: var(--radius);
  position: relative;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(38, 38, 38, 0.25);
  opacity: 1;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(38, 38, 38, 0.72);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #262626;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #262626;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(38, 38, 38, 0.55);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}
.testimonial-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 1.1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.testimonial-btn:hover {
  background: #8cb9d3;
  border-color: #8cb9d3;
  color: #262626;
}

.testimonial-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.dot.active {
  background: var(--clr-accent);
  transform: scale(1.35);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  padding: 128px 0;
  background: #ffffff;
  border-top: none;
}

.contact-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact .section-title { color: #262626; }
.contact .section-title em { color: #8cb9d3; }

.contact-sub {
  color: rgba(38, 38, 38, 0.62);
  font-size: 1rem;
  margin: 20px 0 44px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: #25D366;
  color: #ffffff;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1ebe57; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: #111111; color: rgba(255,255,255,0.4); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.footer-brand .logo {
  color: #ffffff;
  display: inline-block;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col a {
  font-size: 0.875rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--clr-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.28);
  max-width: var(--container);
  margin: 0 auto;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(4) { grid-column: auto; }
  .portfolio-item { height: 260px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* ── Navbar ── */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #262626;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 101;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn-nav) { font-size: 1.375rem; color: #ffffff; }
  .btn-nav { padding: 14px 40px !important; font-size: 1rem !important; color: #262626 !important; }
  .hamburger { display: flex; }
  .hamburger.open span { background: #ffffff; }

  /* ── Section padding ── */
  .services,
  .portfolio,
  .testimonials { padding: 72px 0; }
  .about { padding: 64px 0 52px; }
  .contact { padding: 72px 0; }
  .map-section { padding: 64px 0 0; }
  .section-header { margin-bottom: 48px; }

  /* ── Hero ── */
  .hero-deco { width: 340px; height: 340px; top: -80px; right: -80px; }
  .hero-content { padding: 40px 0 72px; }
  .hero-subtitle { font-size: 1rem; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 36px 28px; }

  /* ── Portfolio ── */
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .portfolio-item { height: 220px; }
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(4) { grid-column: auto; }

  /* ── About ── */
  .about-desc { grid-template-columns: 1fr; }
  .about-stats { max-width: 100%; grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(38,38,38,0.12); padding: 28px 24px; }
  .stat:last-child { border-bottom: none; }

  /* ── Map ── */
  .world-svg { width: 100%; }
  .map-header { max-width: 100%; }
  .map-locations { gap: 8px 20px; padding: 32px 0 64px; }

  /* ── Testimonials ── */
  .testimonial-card { flex: 0 0 calc(100% - 12px); padding: 32px 28px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* ── Hero ── */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; width: 100%; }

  /* ── Services ── */
  .service-card { padding: 28px 20px; }

  /* ── About ── */
  .stat { padding: 22px 18px; }
  .stat strong { font-size: 1.8rem; }

  /* ── Map ── */
  .map-header { margin-bottom: 32px; }
  .map-locations { gap: 6px 14px; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 28px 20px; }
  .quote-icon { font-size: 3rem; }

  /* ── Contact ── */
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn-primary,
  .contact-actions .btn-ghost { text-align: center; width: 100%; }

  /* ── Footer ── */
  .footer-grid { padding-top: 48px; padding-bottom: 36px; }
}
