/* ==========================================================================
   Davis Hardwood & Hardware — Layton, Utah
   Estetica: "Lumberyard Editorial" — kraft cálido, nogal, verde bosque,
   acento ámbar industrial. Display: Fraunces · Cuerpo: Archivo.
   ========================================================================== */

:root {
  /* Superficies cálidas (kraft / madera clara) */
  --bg:        #f1e8d8;
  --bg-2:      #e9ddc8;
  --paper:     #fbf7ee;
  --cream:     #f1e8d8;

  /* Tinta */
  --ink:       #221c13;
  --ink-soft:  #6a5c46;
  --ink-faint: #9b8c72;

  /* Marca */
  --forest:    #2c3d23;
  --forest-700:#37502c;
  --forest-600:#46663a;
  --walnut:    #6b4423;
  --walnut-900:#41280f;
  --amber:     #c2761c;
  --amber-bright: #df8c27;

  --line:      #d8c9ae;
  --line-soft: #e6dac2;

  --ok: #2f7d4f;
  --err:#a83a32;

  --radius: 4px;        /* esquinas mas rectas, editorial */
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(65,40,15,.06), 0 2px 10px rgba(65,40,15,.05);
  --shadow-md: 0 10px 30px rgba(65,40,15,.12);
  --shadow-lg: 0 24px 60px rgba(65,40,15,.20);

  --container: 1180px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  /* Grano de papel sutil */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--forest-700); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 10px; left: 10px; width: auto; height: auto; clip: auto;
  background: var(--forest); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 4px;
}

/* Etiqueta tipo "kicker" editorial */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--walnut);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--amber); }

/* --- Botones ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; line-height: 1;
  letter-spacing: .01em; cursor: pointer; padding: 15px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; text-decoration: none;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-primary { background: var(--forest); color: #f6efe0; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-700); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-block { width: 100%; }

/* --- Header / Nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 18px; padding-block: 4px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); }
.brand-mark { color: var(--walnut); flex: none; display: grid; place-items: center; }
.brand-mark svg { --bg: var(--bg); }
/* PNG brand logo — replaces the SVG mark. Change --logo-size to resize. */
.brand-logo { --logo-size: 88px; width: var(--logo-size); height: var(--logo-size); object-fit: contain; flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.02em; }
.brand-text small { font-size: .7rem; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  color: var(--ink); font-weight: 500; font-size: .95rem; padding: 9px 13px; border-radius: var(--radius);
  position: relative; transition: color .15s var(--ease);
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease);
}
.nav > a:not(.btn):hover::after, .nav > a.active::after { transform: scaleX(1); }
.nav > a.active { color: var(--walnut); }
.nav-phone { font-variant-numeric: tabular-nums; color: var(--ink-soft) !important; font-weight: 600 !important; }
.nav .nav-cta { color: #f6efe0; margin-left: 6px; }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--forest-700); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: .25s var(--ease); }

/* --- Hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: #f4ecdb; background: var(--walnut-900); }
.hero-bg {
  --hero-photo-opacity: .30;   /* tenue: sube/baja para mas o menos presencia de la foto */
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(70,102,58,.55), transparent 55%),
    linear-gradient(155deg, #2c3d23 0%, #3a2817 60%, #41280f 100%);
}
/* Foto del frente, tenue y tonada al paleta calida; se difumina hacia la
   izquierda para no competir con el titular. luminosity toma solo la luz de la
   foto y deja que el degradado verde/nogal aporte el color. */
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/storefront.jpg") center 35% / cover no-repeat;
  opacity: var(--hero-photo-opacity);
  filter: grayscale(.35) sepia(.4) saturate(1.15) contrast(1.02) brightness(.92);
  mix-blend-mode: luminosity;
  -webkit-mask-image: linear-gradient(102deg, transparent 0%, transparent 34%, rgba(0,0,0,.5) 64%, #000 100%);
          mask-image: linear-gradient(102deg, transparent 0%, transparent 34%, rgba(0,0,0,.5) 64%, #000 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-inner { position: relative; z-index: 1; padding: clamp(64px, 11vw, 140px) 26px clamp(54px, 8vw, 110px); max-width: 980px; }
.hero .eyebrow { color: var(--amber-bright); }
.hero .eyebrow::before { background: var(--amber-bright); }
.hero h1 { color: #f7f0e1; margin-top: 22px; }
.hero h1 .accent { color: var(--amber-bright); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(244,236,219,.82); margin: 26px 0 34px; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero .btn-primary { background: var(--amber); color: var(--walnut-900); }
.hero .btn-primary:hover { background: var(--amber-bright); }
.hero .btn-ghost { color: #f4ecdb; border-color: rgba(244,236,219,.4); }
.hero .btn-ghost:hover { background: #f4ecdb; color: var(--walnut-900); }

/* Tira de especificaciones bajo el hero */
.hero-specs { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(244,236,219,.18); }
.hero-specs li { list-style: none; padding: 18px 32px 6px 0; margin-right: 32px; border-right: 1px solid rgba(244,236,219,.14); }
.hero-specs li:last-child { border-right: 0; }
.hero-specs .spec-k { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber-bright); }
.hero-specs .spec-v { font-family: var(--font-display); font-size: 1.15rem; color: #f4ecdb; }

/* Reveal animado en carga */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal .7s var(--ease) forwards; }
.reveal-1 { animation-delay: .05s; } .reveal-2 { animation-delay: .15s; }
.reveal-3 { animation-delay: .25s; } .reveal-4 { animation-delay: .35s; } .reveal-5 { animation-delay: .45s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* --- Secciones ----------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--paper); border-block: 1px solid var(--line); }
.section--center { text-align: center; }
.section-head { max-width: 64ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.08rem; }
.section-num {
  font-family: var(--font-display); font-style: italic; color: var(--amber);
  font-size: 1rem; letter-spacing: .04em;
}

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { background: var(--paper); padding: 38px 30px; transition: background .2s var(--ease); }
.value-card:hover { background: var(--bg-2); }
.value-ico { font-family: var(--font-display); font-size: 1.6rem; color: var(--walnut); width: 54px; height: 54px; border: 1.5px solid var(--line); border-radius: 50%; display: grid; place-items: center; margin-bottom: 20px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); }

/* Product grid (home) */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.prod-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  overflow: hidden;
}
.prod-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform .25s var(--ease); }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--walnut); }
.prod-card:hover::before { transform: scaleY(1); }
.prod-tag { font-family: var(--font-display); font-style: italic; color: var(--amber); font-size: .95rem; }
.prod-card h3 { margin: 6px 0 10px; }
.prod-card p { color: var(--ink-soft); margin-bottom: 18px; }
.link-arrow { font-weight: 600; color: var(--walnut); display: inline-flex; gap: 8px; align-items: center; }
.link-arrow span { transition: transform .15s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* Areas served (local SEO line) */
.areas-served { margin: 40px auto 0; padding-top: 26px; border-top: 1px solid var(--line); max-width: 82ch; text-align: center; color: var(--ink-soft); font-size: .96rem; }

/* FAQ accordion */
.faq-list { max-width: 840px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 6px; gap: 18px;
  font-family: var(--font-display); font-size: 1.18rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.6rem; color: var(--amber); line-height: 1; flex: none; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--walnut); }
.faq-answer { padding: 0 6px 24px; color: var(--ink-soft); }
.faq-answer p { max-width: 70ch; }

/* Info split (hours + map) */
.info-split { display: grid; grid-template-columns: .85fr 1.25fr; gap: 48px; align-items: start; }
.info-hours h2, .info-map h2 { margin-bottom: 22px; }
.muted { color: var(--ink-soft); font-size: .9rem; margin-top: 16px; }

/* Hours list */
.hours-list { list-style: none; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list span:first-child { color: var(--ink-soft); }
.hours-list span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-list .is-closed { color: var(--err); }
.hours-list--lg li { font-size: 1.06rem; padding: 14px 0; }
.hours-list--mini li { padding: 5px 0; font-size: .85rem; }

/* Map */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 380px; border: 0; filter: saturate(.92) contrast(1.02); }
.map-placeholder { background: var(--bg-2); display: grid; place-items: center; text-align: center; min-height: 300px; padding: 24px; color: var(--walnut); }
.map-placeholder p { font-family: var(--font-display); font-size: 1.4rem; }
.map-placeholder small { color: var(--ink-soft); margin-top: 6px; }
.map-placeholder code { background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 4px; font-size: .82em; }
/* Storefront photo block */
.storefront-figure { margin: 0; display: grid; gap: 18px; }
.storefront-figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.storefront-figure figcaption {
  color: var(--ink-soft); font-size: 1.05rem; display: flex; flex-direction: column; gap: 8px;
  text-align: center; align-items: center;
}
.storefront-figure figcaption strong { color: var(--ink); }

.map-wide { line-height: 0; border-top: 1px solid var(--line); }
.map-wide iframe { width: 100%; height: 440px; border: 0; filter: saturate(.92) contrast(1.02); }
.map-placeholder--wide { min-height: 340px; }

/* --- CTA band ------------------------------------------------------------ */
.cta-band { position: relative; background: var(--forest); color: #f4ecdb; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none;
}
.cta-inner { position: relative; text-align: center; padding: clamp(54px, 7vw, 92px) 26px; }
.cta-inner h2 { color: #f7f0e1; }
.cta-inner p { color: rgba(244,236,219,.82); margin: 14px auto 30px; max-width: 50ch; }
.cta-band .btn-primary { background: var(--amber); color: var(--walnut-900); }
.cta-band .btn-primary:hover { background: var(--amber-bright); }

/* --- Page hero (interior) ----------------------------------------------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(54px, 7vw, 92px) 0 clamp(40px, 5vw, 60px); }
.page-hero-sub { color: var(--ink-soft); font-size: 1.14rem; margin-top: 14px; max-width: 62ch; }
.page-hero h1 { margin-top: 18px; }

/* Prose */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 20px; font-size: 1.12rem; color: var(--ink); }
.prose p.lead { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.9rem); line-height: 1.35; color: var(--ink); }

/* Product rows */
.prod-row { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; padding: 46px 0; border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.prod-row:last-child { border-bottom: 1px solid var(--line); }
.prod-row--rev .prod-row-media { order: 2; }
.prod-row-media {
  position: relative; background:
    repeating-linear-gradient(125deg, rgba(107,68,35,.10) 0 9px, transparent 9px 22px),
    linear-gradient(140deg, var(--bg-2), var(--paper));
  border: 1px solid var(--line); border-radius: var(--radius); min-height: 230px; display: grid; place-items: center;
}
.prod-row-num { font-family: var(--font-display); font-style: italic; font-size: clamp(4rem, 8vw, 6rem); color: var(--walnut); opacity: .85; }
.prod-row-body h2 { margin-bottom: 14px; }
.prod-row-body > p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1.08rem; max-width: 52ch; }
.chk-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px 26px; }
.chk-list li { position: relative; padding-left: 26px; color: var(--ink); }
.chk-list li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

/* --- Contacto ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { margin-bottom: 26px; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 24px; }
.contact-list li { display: flex; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: 0; }
.ci-ico { color: var(--walnut); flex: none; width: 40px; height: 40px; display: grid; place-items: center; border: 1.5px solid var(--line); border-radius: 50%; background: var(--paper); }
.address-block { font-style: normal; margin-bottom: 20px; }
.address-block p { padding: 3px 0; }

.contact-form { display: grid; gap: 20px; background: var(--paper); padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.req { color: var(--amber); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--forest-600); background: var(--paper);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--forest-600) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { color: var(--ink-faint); font-size: .8rem; justify-self: end; font-variant-numeric: tabular-nums; }
.form-note { font-size: .82rem; color: var(--ink-soft); text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 15px 18px; border-radius: var(--radius); margin-bottom: 22px; font-size: .95rem; border-left: 4px solid; }
.alert-ok { background: #e9f3ec; color: #1d5e38; border-color: var(--ok); }
.alert-err { background: #f6e8e6; color: #8f2c26; border-color: var(--err); }
.alert ul { margin: 8px 0 0; padding-left: 20px; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--walnut-900); color: rgba(244,236,219,.78); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 40px; padding: 64px 26px 44px; }
.footer-col h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber-bright); margin-bottom: 18px; font-weight: 600; }
.brand--footer { color: #f4ecdb; margin-bottom: 16px; }
.brand--footer .brand-mark { color: var(--amber-bright); }
.brand--footer .brand-text strong { font-size: 1.22rem; }
.brand--footer .brand-text small { color: rgba(244,236,219,.55); }
.footer-tag { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; max-width: 30ch; margin-bottom: 18px; color: rgba(244,236,219,.9); }
.social-row { display: flex; gap: 12px; }
.footer-links a, .site-footer address a { color: rgba(244,236,219,.78); transition: color .15s var(--ease); }
.footer-links a:hover, .site-footer address a:hover { color: var(--amber-bright); }
.social-ico {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(244,236,219,.22); border-radius: 9px;
  color: rgba(244,236,219,.82);
  transition: color .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.social-ico:hover { color: var(--walnut-900); background: var(--amber-bright); border-color: var(--amber-bright); transform: translateY(-2px); }

/* Symmetric, aligned hours block (footer) — compact 2 columns, no wrapping */
.hours-grid { display: grid; grid-template-columns: auto auto; justify-content: start; row-gap: 9px; column-gap: 16px; align-items: baseline; }
.hours-grid dt { color: rgba(244,236,219,.6); white-space: nowrap; }
.hours-grid dd { margin: 0; text-align: left; color: #f4ecdb; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-grid dd.is-closed { color: rgba(244,236,219,.5); font-weight: 500; }
.site-footer address { font-style: normal; display: grid; gap: 9px; font-variant-numeric: tabular-nums; }
.site-footer .hours-list li { border-color: rgba(244,236,219,.12); }
.site-footer .hours-list span:first-child { color: rgba(244,236,219,.55); }
.site-footer .hours-list span:last-child { color: #f4ecdb; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(244,236,219,.12); }
.footer-bottom .container { padding-block: 22px; }
.footer-bottom p { font-size: .84rem; color: rgba(244,236,219,.5); }

/* --- Chatbot ------------------------------------------------------------- */
.chatbot { position: fixed; right: 24px; bottom: 24px; z-index: 150; }
.chatbot-launcher {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--forest); color: #f4ecdb; border: 0; border-radius: 999px;
  padding: 14px 22px; font: inherit; font-weight: 600; box-shadow: var(--shadow-lg);
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.chatbot-launcher:hover { background: var(--forest-700); transform: translateY(-2px); }
.chatbot-launcher-ico { display: inline-flex; }

.chatbot-panel {
  --chat-open-dur: 250ms; --chat-close-dur: 150ms;
  --chat-ease: cubic-bezier(.22, 1, .36, 1);
  position: absolute; right: 0; bottom: 66px; width: min(372px, calc(100vw - 48px));
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column;
  max-height: min(580px, calc(100vh - 120px));
  transform-origin: bottom right;
  opacity: 0; transform: translateY(10px) scale(.96);
  transition: opacity var(--chat-open-dur) var(--chat-ease),
              transform var(--chat-open-dur) var(--chat-ease);
}
.chatbot-panel[hidden] { display: none; }
.chatbot-panel.is-open { opacity: 1; transform: none; }
.chatbot-panel.is-closing {
  opacity: 0; transform: translateY(6px) scale(.97);
  transition-duration: var(--chat-close-dur);
}
@media (prefers-reduced-motion: reduce) {
  .chatbot-panel { transition: none; }
}
.chatbot-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; background: var(--forest); color: #f4ecdb; }
.chatbot-head strong { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: block; }
.chatbot-head small { color: rgba(244,236,219,.75); font-size: .76rem; }
.chatbot-close { background: none; border: 0; color: #f4ecdb; line-height: 1; cursor: pointer; padding: 2px; display: grid; place-items: center; opacity: .85; transition: opacity .15s var(--ease); }
.chatbot-close:hover { opacity: 1; }
.chatbot-log { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--bg); }
.chat-msg { max-width: 86%; padding: 11px 15px; border-radius: 14px; font-size: .92rem; line-height: 1.5; }
.chat-msg.bot { background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--forest); color: #f4ecdb; border-bottom-right-radius: 4px; align-self: flex-end; }
.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 7px; padding: 12px 16px; border-top: 1px solid var(--line); background: var(--paper); }
.chip { background: var(--bg-2); color: var(--walnut); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .82rem; cursor: pointer; font: inherit; line-height: 1.2; transition: background .15s var(--ease); }
.chip:hover { background: var(--amber); color: var(--walnut-900); }
.chatbot-form { display: flex; gap: 8px; padding: 13px 14px; border-top: 1px solid var(--line); background: var(--paper); }
.chatbot-form input { flex: 1; padding: 11px 14px; font: inherit; border: 1.5px solid var(--line); border-radius: 999px; background: var(--bg); }
.chatbot-form input:focus { outline: none; border-color: var(--forest-600); }
.chatbot-form button { background: var(--forest); color: #f4ecdb; border: 0; border-radius: 50%; width: 42px; height: 42px; cursor: pointer; flex: none; display: grid; place-items: center; transition: background .15s var(--ease); }
.chatbot-form button:hover { background: var(--amber); color: var(--walnut-900); }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 96px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 2px; background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px 18px 22px;
    box-shadow: var(--shadow-md); display: none;
  }
  .nav.open { display: flex; }
  .nav > a { padding: 14px; }
  .nav-phone { order: 5; }
  .nav .nav-cta { text-align: center; margin: 8px 0 0; }
  .value-grid, .prod-grid { grid-template-columns: 1fr; }
  .info-split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .prod-row, .prod-row--rev .prod-row-media { grid-template-columns: 1fr; }
  .prod-row--rev .prod-row-media { order: 0; }
  .prod-row-media { min-height: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  /* Stack hero specs vertically so values don't run together on phones */
  .hero-specs { flex-direction: column; gap: 0; }
  .hero-specs li {
    width: 100%; display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; padding: 12px 0; margin: 0;
    border-right: 0; border-bottom: 1px solid rgba(244,236,219,.14);
  }
  .hero-specs li:last-child { border-bottom: 0; }
  .hero-specs .spec-k { padding-top: 0; }
  .chatbot { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Coming-soon / under-construction page
   ========================================================================== */
.cs-hero { position: relative; overflow: hidden; color: #f4ecdb; background: var(--walnut-900); }
.cs-inner { position: relative; z-index: 1; max-width: 840px; padding: clamp(48px, 8vw, 100px) 26px clamp(40px, 6vw, 76px); }
.cs-brand { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.cs-brand .brand-mark { color: var(--amber-bright); }
.cs-brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.cs-brand-text strong { font-family: var(--font-display); font-size: 1.4rem; color: #f7f0e1; }
.cs-brand-text small { font-size: .8rem; color: rgba(244,236,219,.6); font-style: italic; }
.cs-badge { display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-bright); border: 1px solid rgba(223,140,39,.45); border-radius: 999px; padding: 7px 15px; margin-bottom: 22px; }
.cs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-bright); animation: cs-pulse 1.8s var(--ease) infinite; }
@keyframes cs-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.cs-hero h1 { color: #f7f0e1; }
.cs-hero h1 .accent { color: var(--amber-bright); font-style: italic; }
.cs-sub { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: rgba(244,236,219,.82); margin: 22px 0 32px; max-width: 60ch; }
.cs-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cs-hero .btn-primary { background: var(--amber); color: var(--walnut-900); }
.cs-hero .btn-primary:hover { background: var(--amber-bright); }
.cs-hero .btn-ghost { color: #f4ecdb; border-color: rgba(244,236,219,.4); }
.cs-hero .btn-ghost:hover { background: #f4ecdb; color: var(--walnut-900); }

.cs-info { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(40px, 6vw, 76px) 0; }
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cs-card { background: var(--paper); padding: 32px 28px; }
.cs-card h2 { font-size: 1.18rem; margin-bottom: 14px; }
.cs-card address { font-style: normal; color: var(--ink-soft); line-height: 1.7; }
.cs-card p { padding: 3px 0; }
.cs-social { display: flex; gap: 12px; margin-top: 18px; }
.cs-social .social-ico { color: var(--walnut); border-color: var(--line); }
.cs-social .social-ico:hover { color: var(--walnut-900); background: var(--amber-bright); border-color: var(--amber-bright); }
.hours-grid--light dt { color: var(--ink-soft); }
.hours-grid--light dd { color: var(--ink); }
.hours-grid--light dd.is-closed { color: var(--err); }

.cs-photo { background: var(--bg); padding: 0 0 clamp(40px, 6vw, 76px); }
.cs-photo img { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.cs-footer { background: var(--walnut-900); color: rgba(244,236,219,.6); padding: 22px 0; }
.cs-footer p { font-size: .85rem; }

@media (max-width: 760px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-actions { flex-direction: column; align-items: stretch; }
}
