/* Paleta tomada de la gráfica Instagram de la marca:
   café chocolate cálido (paneles), dorado «Rucamalal» (acentos), crema (fondos). */
:root {
  --ground: #F6EEE5;
  --card: #FCF7F0;
  --ink: #3A241C;
  --ink-soft: #7A5A48;
  --line: #E6D5C4;
  --teal: #7C3B2C;      /* café de marca (antes teal) — botones y enlaces */
  --teal-dark: #61291C; /* café oscuro — hover y texto de enlace */
  --copper: #C6994B;    /* dorado del logo — acentos, estrellas, eyebrows */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Albert Sans", "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; text-wrap: balance; margin: 0 0 .5rem; }
h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; }
h2 { font-size: 1.6rem; }
a { color: var(--teal-dark); }
img { max-width: 100%; }
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line); background: var(--card);
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 2px 12px rgba(58, 36, 28, .06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: 12px; padding-top: 10px; padding-bottom: 10px;
  max-width: 1200px;
}
.brand { text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; }
.cart-link {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--teal-dark); border-radius: 99px;
  padding: 6px 14px 6px 12px !important; color: var(--teal-dark) !important;
  margin-left: 8px;
}
.cart-link::after { display: none !important; }
.cart-link:hover, .cart-link.active { background: var(--teal-dark); color: var(--card) !important; }
.cart-badge {
  background: var(--copper); color: #fff; border-radius: 99px;
  font-size: .7rem; font-weight: 700; padding: 1px 7px;
  font-variant-numeric: tabular-nums;
}
.brand-name { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; font-weight: 600; white-space: nowrap; }
.brand-sub { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--copper); }
.main-nav { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  position: relative; text-decoration: none; color: var(--ink);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  padding: 8px 10px 10px;
  transition: color .15s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 2px;
  background: var(--copper); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav a:hover { color: var(--teal-dark); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--teal-dark); }
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.social { padding: 6px 6px 8px; color: var(--teal-dark); display: inline-flex; }
.main-nav a.social::after { display: none; }
.main-nav a.social:hover { color: var(--copper); }
.nav-toggle { display: none; background: none; border: none; color: var(--teal-dark); cursor: pointer; padding: 6px; }
@media (max-width: 940px) and (min-width: 701px) {
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .brand-sub { display: none; }
}
@media (max-width: 700px) {
  .nav-toggle { display: inline-flex; }
  .header-inner { flex-wrap: wrap; }
  .main-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    gap: 0; padding: 6px 0 12px; border-top: 1px solid var(--line); margin-top: 8px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 8px; font-size: .85rem; }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--teal-dark); background: var(--ground); border-radius: 8px; }
  .cart-link { margin: 8px 0 0; justify-content: center; }
  .main-nav a.social { align-self: center; }
}
@media (prefers-reduced-motion: reduce) {
  .main-nav a::after { transition: none; }
}

/* Hero — foto: volcán Villarrica, Thomas Fuhrmann, CC BY-SA 4.0 (Wikimedia Commons) */
.hero-photo {
  background:
    linear-gradient(100deg, rgba(24, 14, 8, .78) 0%, rgba(24, 14, 8, .45) 55%, rgba(24, 14, 8, .15) 100%),
    url("/img/hero-villarrica.jpg") center 35% / cover no-repeat;
}
.hero { padding-top: 96px; padding-bottom: 84px; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 700; color: #E9C98F; }
.hero h1 { color: #FAF4EA; max-width: 18ch; text-shadow: 0 2px 18px rgba(0, 0, 0, .45); }
.hero p.tagline { font-family: "Fraunces", Georgia, serif; font-style: italic; font-size: 1.3rem; color: #E9C98F; max-width: 36ch; text-shadow: 0 1px 10px rgba(0, 0, 0, .5); }
.hero .actions { margin-top: 1.5rem; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-outline { border-color: #E9C98F; color: #FAF4EA; }
.btn-hero-outline:hover { background: #E9C98F; color: #33231B; }
@media (max-width: 600px) { .hero { padding-top: 56px; padding-bottom: 48px; } }

/* Buttons */
.btn { display: inline-block; padding: 10px 22px; border-radius: 8px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline { border-color: var(--teal); color: var(--teal-dark); }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* Sections */
section.band { padding: 48px 0; border-top: 1px solid var(--line); }
.section-title { margin-bottom: 1.2rem; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px; display: flex; flex-direction: column; gap: .4rem;
  text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(51, 35, 27, .08); }
.product-card .product-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; background: #fff;
}
.product-card .product-img.placeholder {
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem;
  background: var(--ground); color: var(--ink-soft);
}
.product-card .cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--copper); font-weight: 700; }
.product-card h3 { font-size: 1.08rem; font-weight: 600; margin: 0; }
.product-card .price { margin-top: auto; font-weight: 700; color: var(--teal-dark); font-variant-numeric: tabular-nums; }
.product-card .price.consultar { color: var(--ink-soft); font-weight: 600; font-size: .9rem; }

/* Category filter */
.cat-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 1.2rem 0 1.8rem; }
.cat-filter a {
  padding: 6px 16px; border-radius: 99px; border: 1px solid var(--line);
  background: var(--card); text-decoration: none; color: var(--ink); font-size: .88rem; font-weight: 600;
}
.cat-filter a.active, .cat-filter a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* Product detail */
.product-detail { padding-top: 48px; padding-bottom: 48px; max-width: 980px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 760px) { .product-detail-grid { grid-template-columns: 420px 1fr; } }
.product-photo-frame {
  background: #4A2115; padding: 4px; border-radius: 16px;
  box-shadow: 0 10px 26px rgba(58, 36, 28, .15);
  align-self: start;
}
.product-photo { display: block; width: 100%; border-radius: 13px; background: #fff; box-shadow: 0 0 0 1px #E4B96F; }
.product-title { max-width: 18ch; }
.product-gallery { display: flex; flex-direction: column; gap: 10px; }
.thumb-row { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb {
  width: 68px; height: 68px; padding: 0; border-radius: 9px; overflow: hidden;
  border: 2px solid var(--line); background: #fff; cursor: pointer;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active, .thumb:hover { border-color: var(--copper); }
.price-consultar {
  display: inline-block; background: #F3E5CC; color: #8A6320;
  border-radius: 99px; padding: 5px 18px; font-weight: 700; font-size: 1rem;
}
.flash { background: #F3E5CC; color: #6B4A17; border-radius: 8px; padding: 10px 16px; margin: .8rem 0; font-weight: 600; }
.qty-form { display: flex; gap: 8px; align-items: center; }
.qty-form input { width: 70px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px; font: inherit; }
.qty-form .btn { border: none; cursor: pointer; font: inherit; }
.data-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); }
.data-table th, .data-table td { padding: 10px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.data-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.table-wrap { overflow-x: auto; }
.form-stack { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.form-stack label { display: flex; flex-direction: column; gap: 4px; font-weight: 600; font-size: .92rem; }
.form-stack input, .form-stack select, .form-stack textarea {
  font: inherit; font-weight: 400; padding: 9px 12px; border: 1px solid var(--line);
  border-radius: 8px; background: var(--card); color: var(--ink);
}
.form-stack fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.form-stack .radio { flex-direction: row; align-items: center; gap: 8px; font-weight: 400; }
.form-stack .btn { border: none; cursor: pointer; font: inherit; align-self: flex-start; }
.error { color: #A3452F; font-size: .85rem; font-weight: 400; }
.btn-small {
  font: inherit; font-size: .82rem; font-weight: 600; padding: 4px 12px;
  border-radius: 6px; border: 1px solid var(--line); background: var(--card);
  color: var(--ink); cursor: pointer;
}
.btn-small:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-small.btn-danger:hover { border-color: #A3452F; color: #A3452F; }
.product-detail .price { font-size: 1.5rem; font-weight: 700; color: var(--teal-dark); }
.product-detail .iva { font-size: .85rem; color: var(--ink-soft); }

/* Prose pages */
.prose { padding-top: 48px; padding-bottom: 64px; max-width: 720px; }
.prose p { max-width: 68ch; }
.callout {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--copper);
  border-radius: 8px; padding: 16px 20px; margin: 1.4rem 0;
}

/* 6 chocolates calientes */
.hot-choc-band { background: var(--card); }
.hot-choc-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.hot-choc-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px;
  box-shadow: 0 10px 26px rgba(58, 36, 28, .15);
}
@media (max-width: 760px) { .hot-choc-layout { grid-template-columns: 1fr; } .hot-choc-photo { aspect-ratio: 16/10; } }
.hot-choc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px; margin-top: 1.6rem; max-width: 640px;
}
.hot-choc-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600; text-align: center; color: var(--ink);
}
.swatch {
  width: 58px; height: 58px; border-radius: 50%;
  box-shadow: 0 3px 8px rgba(58,36,28,.15);
  border: 1px solid var(--line);
}
.swatch.bitter-55 { background: linear-gradient(160deg, #6E4429, #55311C); }
.swatch.bitter-70 { background: linear-gradient(160deg, #4F2E19, #391F10); }
.swatch.bitter-80 { background: linear-gradient(160deg, #33200F, #211307); }
.swatch.leche { background: linear-gradient(160deg, #C0925C, #A67746); }
.swatch.blanco { background: linear-gradient(160deg, #F3E6D1, #E9D5AE); }
.swatch.caramelo { background: linear-gradient(160deg, #D9A24B, #BE8730); }

/* Rating badges */
.rating-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: .6rem; }
.rating-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 18px; text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.rating-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(58, 36, 28, .1); }
.rb-score { font-family: "Fraunces", Georgia, serif; font-size: 1.7rem; font-weight: 600; color: var(--teal-dark); font-variant-numeric: tabular-nums; }
.rb-stars { color: var(--copper); letter-spacing: .1em; font-size: .85rem; }
.rb-meta { font-size: .85rem; color: var(--ink-soft); }
.rb-meta strong { color: var(--ink); }
.rb-icon { display: inline-flex; align-items: center; }
.rb-col { display: flex; flex-direction: column; }
.quote-card figcaption { display: flex; align-items: center; gap: 6px; }
.src-icon { flex-shrink: 0; }

/* Regalo / dedicatoria */
.gift-box {
  background: var(--card); border: 1px dashed var(--copper); border-radius: 10px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 10px;
}
.gift-toggle { flex-direction: row; align-items: center; gap: 8px; font-weight: 600; }
.gift-hint { margin: 0; font-size: .82rem; color: var(--ink-soft); }

/* Carrito */
.cart-product { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--teal-dark); }
.cart-product:hover span { text-decoration: underline; }
.cart-thumb {
  width: 54px; height: 54px; object-fit: cover; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; flex-shrink: 0;
}
.cart-thumb.placeholder { display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; background: var(--ground); }
.cart-thumb.small { width: 38px; height: 38px; vertical-align: middle; }
.checkout-line { display: flex; align-items: center; gap: 10px; margin: 4px 0; }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.quote-card {
  margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: .5rem;
}
.quote-card .stars { color: var(--copper); letter-spacing: .15em; font-size: .85rem; }
.quote-card blockquote { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; line-height: 1.45; }
.quote-card figcaption { font-size: .82rem; color: var(--ink-soft); }

/* Historia */
.historia-intro { float: right; margin: 0 0 12px 24px; width: min(260px, 45%); text-align: center; }
.pamela-photo { width: 100%; border-radius: 14px; border: 1px solid var(--line); }
.pamela-caption { font-size: .82rem; color: var(--ink-soft); margin: .4em 0 0; }
@media (max-width: 540px) { .historia-intro { float: none; width: min(220px, 65%); margin: 0 auto 16px; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 1.4rem; }
.blog-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(51, 35, 27, .08); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: .3rem; }
.blog-card-body time { font-size: .78rem; color: var(--copper); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.blog-card-body h2 { font-size: 1.15rem; margin: 0; }
.blog-card-body p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #4A2115; color: #EBD9C5;
  box-shadow: 0 -6px 24px rgba(58, 36, 28, .25);
}
.cookie-banner-inner {
  max-width: 1040px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: .88rem; max-width: 62ch; }
.cookie-banner-inner a { color: #E4B96F; }
.cookie-accept-btn {
  background: #E4B96F; color: #4A2115; border: none; cursor: pointer;
  font-weight: 700; padding: 9px 22px; white-space: nowrap; flex-shrink: 0;
}
.cookie-accept-btn:hover { background: #EBD9C5; }
body.has-cookie-banner .wa-float { bottom: 100px; }
@media (max-width: 640px) {
  body.has-cookie-banner .wa-float { bottom: 140px; }
  .cookie-banner-inner { padding: 14px 18px; flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-accept-btn { width: 100%; }
}

/* WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-dark); color: #F6EEE5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  transition: transform .15s ease, bottom .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-inline { white-space: nowrap; }
@media (max-width: 600px) { .wa-float { right: 14px; bottom: 14px; } }

/* Títulos de página */
.page-eyebrow {
  display: block; text-transform: uppercase; letter-spacing: .16em;
  font-size: .74rem; font-weight: 700; color: var(--copper); margin-bottom: .5rem;
}
h1 .accent, h2 .accent { font-style: italic; color: var(--teal); }
.lead-text { font-size: 1.08rem; max-width: 62ch; }

/* Feature cards */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin: 1.8rem 0;
}
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 22px 18px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(58, 36, 28, .1); }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin: .8rem 0 .3rem; }
.feature-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: #F3E5CC; color: var(--teal-dark);
}

/* Panel CTA chocolate */
.cta-panel {
  background: #4A2115; color: #EBD9C5; border-radius: 16px;
  padding: 30px 32px; margin: 2rem 0 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cta-title { font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; font-weight: 600; color: #E4B96F; display: block; }
.cta-panel p { margin: .3em 0 0; color: #EBD9C5; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btn-gold { background: #E4B96F; color: #4A2115; }
.cta-btn-gold:hover { background: #EBD9C5; }
.cta-btn-outline { border-color: #E4B96F; color: #EBD9C5; }
.cta-btn-outline:hover { background: #E4B96F; color: #4A2115; }
@media (max-width: 700px) { .cta-panel { flex-direction: column; align-items: flex-start; padding: 24px; } }

/* Mapa — marco chocolate y tinte cálido */
.map-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: #4A2115; padding: 4px;
  box-shadow: 0 10px 30px rgba(58, 36, 28, .18);
  margin-top: 1.2rem;
}
.map-card iframe {
  display: block; width: 100%; height: 420px; border: 0;
  border-radius: 13px;
  box-shadow: 0 0 0 1px #E4B96F;
  filter: sepia(.32) saturate(.85) contrast(1.02);
  transition: filter .25s ease;
}
.map-card:hover iframe { filter: none; }
.map-overlay {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(74, 33, 21, .93); color: #EBD9C5;
  border: 1px solid rgba(228, 185, 111, .5);
  border-radius: 12px; padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
  max-width: min(320px, calc(100% - 32px));
  font-size: .9rem;
}
.map-overlay-title { font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; font-weight: 600; color: #E4B96F; }
.map-btn { margin-top: 8px; align-self: flex-start; background: #E4B96F; color: #4A2115; padding: 7px 16px; font-size: .85rem; }
.map-btn:hover { background: #EBD9C5; color: #4A2115; }
@media (max-width: 540px) { .map-card iframe { height: 320px; } }

/* Footer — panel chocolate, texto crema, acentos dorados */
.site-footer { background: #4A2115; color: #EBD9C5; margin-top: 48px; }
.site-footer a { color: #FBF5EC; }
.site-footer a:hover { color: #E4B96F; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  padding-top: 44px; padding-bottom: 36px; font-size: .92rem;
}
.footer-brand { display: flex; flex-direction: column; gap: .35rem; }
.footer-name { font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; font-weight: 600; color: #E4B96F; }
.footer-tagline { font-family: "Fraunces", Georgia, serif; font-style: italic; color: #EBD9C5; max-width: 26ch; }
.footer-sub { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: #C99B5A; margin-top: .3rem; }
.footer-title {
  display: block; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem;
  font-weight: 700; color: #C99B5A; margin-bottom: .7rem;
}
.footer-contact { display: flex; flex-direction: column; gap: .35rem; }
.footer-contact a { color: #FBF5EC; text-decoration: none; }
.footer-contact a:hover { color: #E4B96F; text-decoration: underline; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid #C99B5A; color: #E4B96F;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover { background: #E4B96F; color: #4A2115; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(228, 185, 111, .25); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px;
  padding-top: 14px; padding-bottom: 16px; font-size: .78rem; color: #C7A98A;
}
.footer-bottom a { color: #E4B96F; }
.footer-photo-credit { font-size: .72rem; }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 26px; padding-top: 34px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-tagline { max-width: none; }
  .footer-social { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

