/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #FAF8F5;
  --bg-2:      #F0EAE0;
  --bg-3:      #E8DDD0;
  --ink:       #1A1A1A;
  --ink-soft:  #3A3530;
  --ink-mute:  #7A746E;
  --accent:    #8B6F5E;
  --accent-2:  #5C6B5A;
  --line:      rgba(26,26,26,0.10);
  --cream:     #FAF8F5;

  --serif:  "Playfair Display", Georgia, serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --gutter: clamp(1.25rem, 5vw, 3rem);
  --max-w:  1200px;
  --nav-h:  68px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-family: var(--serif); }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--cream); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 6px; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

/* =============================================================
   4. Typography scale
   ============================================================= */
.display-xl {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.1;
}

.kicker {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================================
   5. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; } /* A.4.5 safety */

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}

.nav.is-solid {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--ink);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  font-family: var(--sans);
  font-weight: 400;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

@media (hover: hover) {
  .nav-link:hover::after { transform: scaleX(1); }
}

.nav-cta {
  display: none;
  align-items: center;
  padding: .5rem 1.25rem;
  gap: .75rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

@media (hover: hover) {
  .nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem var(--gutter) 2rem;
  border-bottom: 1px solid var(--line);
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}

.nav.menu-open .nav-mobile { display: flex; }

.nav-mobile-link {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-mobile-cta {
  margin-top: .5rem;
  padding: .75rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
}

/* =============================================================
   6b. Nav actions (WhatsApp + phone group)
   ============================================================= */
.nav-actions {
  display: none;
  align-items: center;
  gap: .5rem;
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

@media (hover: hover) {
  .nav-wa:hover { border-color: #25d366; color: #1a9e4e; background: rgba(37,211,102,0.06); }
}

/* Mobile contact buttons */
.nav-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}

.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
}

.nav-mobile-cta--wa {
  background: #1a9e4e;
  color: #fff;
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Subtle linen texture via CSS grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(139,111,94,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(92,107,90,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: background 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

@media (hover: hover) {
  .btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  color: #1a9e4e;
  background: rgba(37,211,102,0.06);
  transition: background 0.25s var(--ease-out), border-color 0.25s, transform 0.2s var(--ease-out);
}

@media (hover: hover) {
  .btn-whatsapp:hover { background: rgba(37,211,102,0.12); border-color: #25d366; transform: translateY(-2px); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: border-color 0.25s, color 0.25s, transform 0.2s var(--ease-out);
}

@media (hover: hover) {
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--ink-mute);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero image column — fabric texture (shown on larger screens) */
.hero-image-col {
  display: none;
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
  background-color: #EDE3D8;
  background-image:
    repeating-linear-gradient(
      -52deg,
      transparent 0,
      transparent 5px,
      rgba(139, 111, 94, 0.08) 5px,
      rgba(139, 111, 94, 0.08) 6px
    ),
    repeating-linear-gradient(
      38deg,
      transparent 0,
      transparent 5px,
      rgba(139, 111, 94, 0.05) 5px,
      rgba(139, 111, 94, 0.05) 6px
    );
}

.hero-image-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FAF8F5 0%, transparent 42%);
  z-index: 1;
  pointer-events: none;
}

.hero-tools-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* =============================================================
   8. Section: Servicios
   ============================================================= */
.section-pad {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .kicker {
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: background 0.25s var(--ease-out);
}

@media (hover: hover) {
  .service-card:hover { background: var(--bg-2); }
}

.service-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.service-desc {
  font-size: .875rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* =============================================================
   9. Section: Precios
   ============================================================= */
.prices-section {
  background: var(--bg-2);
}

.prices-intro {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: .75rem;
}

.prices-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.price-tab {
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-mute);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: var(--bg);
}

.price-tab.is-active,
.price-tab:focus-visible {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

@media (hover: hover) {
  .price-tab:not(.is-active):hover {
    border-color: var(--accent);
    color: var(--accent);
  }
}

.price-panel {
  display: none;
}

.price-panel.is-active {
  display: block;
  animation: fadeInPanel 0.3s var(--ease-out);
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.price-table tr:last-child { border-bottom: 0; }

@media (hover: hover) {
  .price-table tr:hover { background: rgba(139,111,94,0.04); }
}

.price-table td {
  padding: .85rem .25rem;
  font-size: .9rem;
}

.price-table td:first-child {
  color: var(--ink-soft);
  padding-right: 1rem;
}

.price-table td:last-child {
  text-align: right;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}

.price-note {
  margin-top: 1.25rem;
  font-size: .8rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* =============================================================
   10. Section: Por qué elegirnos (Stats)
   ============================================================= */
.why-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.why-card {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.why-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .4rem;
  display: block;
}

.why-label {
  font-size: .8rem;
  color: var(--ink-mute);
  letter-spacing: .05em;
}

.why-text-col {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-point-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: .1rem;
}

.why-point-body h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .2rem;
  line-height: 1.2;
}

.why-point-body p {
  font-size: .875rem;
  color: var(--ink-mute);
}

/* =============================================================
   10b. FAQ accordion
   ============================================================= */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

@media (hover: hover) {
  .faq-question:hover { color: var(--accent); }
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer.is-open {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Contact channels (phone + WhatsApp) */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .25rem;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  width: fit-content;
  transition: color 0.2s;
}

@media (hover: hover) {
  .contact-channel:hover { color: var(--accent); }
  .contact-channel--wa:hover { color: #1a9e4e; }
}

.contact-channel--wa {
  color: #1a9e4e;
}

/* =============================================================
   11. Section: Cómo encontrarnos
   ============================================================= */
.contact-section {
  background: var(--bg-2);
}

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block {}

.contact-block-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  font-weight: 500;
}

.contact-block-value {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-block-value a {
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s;
}

@media (hover: hover) {
  .contact-block-value a:hover { color: var(--accent); }
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
  color: var(--ink-soft);
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child { border-bottom: 0; }

.hours-day { font-weight: 500; color: var(--ink); }

.contact-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap 0.2s var(--ease-out);
}

@media (hover: hover) {
  .contact-cta-link:hover { gap: .7rem; }
}

.map-frame {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================
   12. Divider
   ============================================================= */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-block: .75rem;
}

/* =============================================================
   13. Footer
   ============================================================= */
.footer {
  background: var(--ink);
  color: var(--bg-2);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--cream);
}

.footer-logo svg { color: var(--accent); }

.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: .8rem;
  color: rgba(250,248,245,0.4);
  margin-top: .2rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
}

.footer-link {
  font-size: .85rem;
  color: rgba(250,248,245,0.55);
  transition: color 0.2s;
}

@media (hover: hover) {
  .footer-link:hover { color: var(--cream); }
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,248,245,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(250,248,245,0.3);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.footer-contact a {
  font-size: .85rem;
  color: rgba(250,248,245,0.6);
  transition: color 0.2s;
}

@media (hover: hover) {
  .footer-contact a:hover { color: var(--cream); }
}

/* =============================================================
   8. Responsive breakpoints
   ============================================================= */
@media (min-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }

  .hero-image-col { display: block; }
  .hero-content { max-width: 55%; }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================================
   9. Reduced-motion (only INTRUSIVE effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; opacity: 0.4; }
  .hero-kicker-dot { animation: none; }
}
