/* ============================================================
   The Fox & Hounds — Blidworth Bottoms
   Colour scheme drawn from the pub logo: deep burgundy + gold
   ============================================================ */

:root {
  --burgundy: #5E1B33;
  --burgundy-dark: #471327;
  --burgundy-deep: #360D1D;
  --gold: #D8952F;
  --gold-light: #E8B45A;
  --gold-pale: #F3D9A4;
  --cream: #F7F0E1;
  --cream-dark: #EFE4CC;
  --ink: #2E2028;
  --ink-soft: #5C4A54;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(54, 13, 29, .18);
  --shadow-soft: 0 6px 18px rgba(54, 13, 29, .10);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--burgundy); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--burgundy); }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.9rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--burgundy-deep); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--burgundy-deep); }
.btn-burgundy { background: var(--burgundy); color: var(--cream); }
.btn-burgundy:hover { background: var(--burgundy-dark); color: var(--white); }
.btn-outline-dark { border-color: var(--burgundy); color: var(--burgundy); background: transparent; }
.btn-outline-dark:hover { background: var(--burgundy); color: var(--cream); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(54,13,29,.75), rgba(54,13,29,0));
}
.site-header.scrolled {
  background: var(--burgundy-deep);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  padding: 8px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { width: 54px; height: 54px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.35); transition: width .3s ease, height .3s ease; }
.scrolled .brand img { width: 44px; height: 44px; }
.brand-name { font-family: var(--font-display); color: var(--cream); font-size: 1.25rem; font-weight: 600; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: .4rem; }
.main-nav > a, .dropdown > button {
  color: var(--cream); font-family: var(--font-body); font-size: .97rem; font-weight: 500;
  padding: .55rem .85rem; border-radius: 999px; background: none; border: none; cursor: pointer;
  transition: background .25s ease, color .25s ease; position: relative;
}
.main-nav > a:hover, .dropdown > button:hover { background: rgba(216,149,47,.18); color: var(--gold-light); }
.main-nav > a.active { color: var(--gold-light); }
.main-nav > a.active::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: .1rem; width: 22px; height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { margin-left: .6rem; padding: .6rem 1.35rem !important; background: var(--gold) !important; color: var(--burgundy-deep) !important; font-weight: 600; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > button::after { content: "▾"; font-size: .7em; margin-left: .35rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  min-width: 210px; padding: .5rem; opacity: 0; visibility: hidden; transition: all .25s ease;
}
.dropdown.open .dropdown-menu, .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: .6rem .9rem; border-radius: 9px; color: var(--ink); font-size: .95rem; }
.dropdown-menu a:hover { background: var(--cream); color: var(--burgundy); }

/* Burger */
.burger { display: none; background: none; border: none; cursor: pointer; z-index: 1102; width: 44px; height: 44px; }
.burger span { display: block; width: 26px; height: 2.6px; background: var(--cream); margin: 5.5px auto; border-radius: 2px; transition: all .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav overlay */
@media (max-width: 920px) {
  .burger { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy));
    flex-direction: column; justify-content: center; gap: .6rem;
    opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 1100;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav > a, .dropdown > button { font-size: 1.35rem; font-family: var(--font-display); }
  .dropdown { text-align: center; }
  .dropdown-menu { position: static; transform: none; background: transparent; box-shadow: none; min-width: 0; display: none; }
  .dropdown.open .dropdown-menu { display: block; opacity: 1; visibility: visible; transform: none; }
  .dropdown-menu a { color: var(--gold-pale); font-size: 1.05rem; text-align: center; }
  .dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold-light); }
  .nav-cta { margin: 1rem 0 0; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  overflow: hidden; color: var(--cream); text-align: center;
}
.hero video, .hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero .hero-img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(54,13,29,.55) 0%, rgba(54,13,29,.35) 45%, rgba(54,13,29,.78) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 8rem 1rem 5rem; max-width: 860px; }
.hero-kicker {
  display: inline-block; font-size: .85rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem; font-weight: 500;
}
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 700; margin-bottom: 1.2rem; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--cream); opacity: .95; max-width: 620px; margin: 0 auto 2.2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gold-light); font-size: 1.6rem; animation: bob 2s ease-in-out infinite; text-decoration: none;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 10px);} }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; min-height: 52vh; display: grid; place-items: end center;
  overflow: hidden; text-align: center; padding-bottom: 3.5rem;
}
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(54,13,29,.5), rgba(54,13,29,.72)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: .6rem; }
.page-hero p { color: var(--gold-pale); font-size: 1.1rem; max-width: 640px; margin-inline: auto; }
.page-hero .hero-kicker { margin-bottom: .8rem; }

/* ---------- Sections ---------- */
section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-kicker { font-size: .8rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .7rem; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1rem; text-wrap: balance; }
.section-intro { max-width: 640px; color: var(--ink-soft); font-size: 1.08rem; }
.center { text-align: center; }
.center .section-intro { margin-inline: auto; }
.gold-rule { width: 64px; height: 3px; background: var(--gold); border-radius: 3px; margin: 1.1rem 0 1.6rem; border: none; }
.center .gold-rule { margin-inline: auto; }

.bg-burgundy { background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy)); color: var(--cream); }
.bg-burgundy .section-title, .bg-burgundy h3 { color: var(--white); }
.bg-burgundy .section-intro, .bg-burgundy p { color: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.6rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.card-body p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.card-link { margin-top: 1.1rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; }
.card-link:hover { color: var(--burgundy); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse { direction: rtl; } .split.reverse > * { direction: ltr; }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; } }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s ease; }
.split-img:hover img { transform: scale(1.04); }

/* ---------- Quotes ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.4rem; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  background: rgba(255,255,255,.06); border: 1px solid rgba(232,180,90,.28);
  border-radius: var(--radius); padding: 1.9rem;
}
.quote p { font-family: var(--font-display); font-size: 1.08rem; font-style: italic; color: var(--gold-pale); margin-bottom: 1rem; }
.quote cite { font-style: normal; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* ---------- Menu styling ---------- */
.menu-nav {
  position: sticky; top: 72px; z-index: 600; background: rgba(247,240,225,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(94,27,51,.12);
  padding: .8rem 0; margin-bottom: 1rem;
}
.menu-nav-inner { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; }
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-pill {
  flex: none; padding: .5rem 1.15rem; border-radius: 999px; font-size: .92rem; font-weight: 500;
  color: var(--burgundy); background: transparent; border: 1.5px solid rgba(94,27,51,.25);
  cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.menu-pill:hover { border-color: var(--gold); color: var(--gold); }
.menu-pill.active { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

.diet-filter { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; margin-top: 1.4rem; }
.diet-filter span { font-size: .85rem; color: var(--ink-soft); margin-right: .3rem; }
.diet-chip {
  padding: .35rem .95rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  border: 1.5px solid var(--gold); color: var(--burgundy); background: transparent; cursor: pointer; transition: all .2s ease;
}
.diet-chip.active, .diet-chip:hover { background: var(--gold); color: var(--burgundy-deep); }

.menu-section { padding: 2.6rem 0 1rem; }
.menu-section h2 {
  font-size: 1.9rem; display: flex; align-items: center; gap: 1rem; margin-bottom: .4rem;
}
.menu-section h2::after { content: ""; flex: 1; height: 1.5px; background: linear-gradient(to right, rgba(216,149,47,.55), transparent); }
.menu-section .menu-note { color: var(--ink-soft); font-size: .95rem; font-style: italic; margin-bottom: 1.4rem; }

.dish-list { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 3rem; }
@media (max-width: 820px) { .dish-list { grid-template-columns: 1fr; } }
.dish { padding: 1rem .9rem; border-radius: 12px; transition: background .25s ease; }
.dish:hover { background: rgba(255,255,255,.75); }
.dish.dimmed { opacity: .28; }
.dish-top { display: flex; align-items: baseline; gap: .6rem; }
.dish-name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--burgundy); }
.dish-dots { flex: 1; border-bottom: 2px dotted rgba(94,27,51,.28); transform: translateY(-4px); }
.dish-price { font-weight: 700; color: var(--gold); font-size: 1.05rem; white-space: nowrap; }
.dish-desc { color: var(--ink-soft); font-size: .95rem; margin-top: .25rem; }
.dish-tags { margin-top: .45rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; padding: .18rem .55rem;
  border-radius: 6px; background: var(--cream-dark); color: var(--burgundy); border: 1px solid rgba(94,27,51,.18);
}
.tag.vn { background: #E7EED9; border-color: #B8CD92; color: #45631F; }
.tag.v { background: #EAF1E2; border-color: #C4D6A8; color: #4F6B2A; }
.tag.gf, .tag.gfo { background: var(--gold-pale); border-color: var(--gold); color: #7A5210; }

.allergen-note {
  margin: 3rem 0 0; padding: 1.4rem 1.8rem; border-radius: var(--radius);
  background: var(--burgundy); color: var(--cream); font-size: .97rem; display: flex; gap: 1rem; align-items: flex-start;
}
.allergen-note strong { color: var(--gold-light); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  border-radius: 14px; overflow: hidden; cursor: zoom-in; position: relative;
  aspect-ratio: 1/1; background: var(--cream-dark);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2.2rem; color: var(--white); background: rgba(54,13,29,.35);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(30,6,16,.93);
  display: none; place-items: center;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); color: var(--cream); border: none;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: background .2s ease;
  display: grid; place-items: center;
}
.lb-btn:hover { background: var(--gold); color: var(--burgundy-deep); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: var(--gold-pale); font-size: .9rem; letter-spacing: .1em; }

/* Video block */
.video-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 2.4rem; }
.video-frame video { width: 100%; display: block; }

/* ---------- Tourism ---------- */
.attraction-card .card-img { aspect-ratio: 16/11; }
.travel-times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.2rem; }
@media (max-width: 900px) { .travel-times { grid-template-columns: repeat(2, 1fr); } }
.travel-time {
  background: rgba(255,255,255,.07); border: 1px solid rgba(232,180,90,.25);
  border-radius: 14px; padding: 1.4rem; text-align: center;
}
.travel-time strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-light); }
.travel-time span { font-size: .9rem; color: var(--cream); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2.6rem; margin-top: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--burgundy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem 1rem;
  border: 1.5px solid rgba(94,27,51,.22); border-radius: 10px; background: var(--cream);
  color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,149,47,.18);
}
.form-note { font-size: .9rem; color: var(--ink-soft); margin-top: 1rem; }
.form-actions { margin-top: 1.6rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.notice-banner {
  border-left: 5px solid var(--gold); background: var(--gold-pale);
  color: #6B4A11; border-radius: 0 12px 12px 0; padding: 1.1rem 1.5rem; margin-top: 1.6rem; font-weight: 500;
}

/* ---------- Info blocks ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.4rem; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }
.info-tile { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-soft); text-align: center; }
.info-tile .icon { font-size: 2rem; margin-bottom: .8rem; }
.info-tile h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.info-tile p { color: var(--ink-soft); font-size: .97rem; }
.info-tile a { font-weight: 600; }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 2.4rem; }
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--white); margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--burgundy-deep); color: var(--cream); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 84px; border-radius: 14px; margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; color: var(--gold-pale); max-width: 280px; }
.site-footer h4 { color: var(--gold-light); font-size: 1.05rem; letter-spacing: .06em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--cream); font-size: .95rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold-light); }
.footer-contact li { font-size: .95rem; color: var(--cream); }
.social-row { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); font-size: 1.1rem; transition: all .25s ease;
}
.social-row a:hover { background: var(--gold); color: var(--burgundy-deep); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(232,180,90,.2); padding: 1.4rem 0; text-align: center;
  font-size: .85rem; color: rgba(247,240,225,.65);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.site-credit {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(247,240,225,.65); font-size: .85rem;
  transition: opacity .25s ease;
}
.site-credit img { height: 26px; width: auto; display: inline-block; }
.site-credit:hover { opacity: .8; color: rgba(247,240,225,.85); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .hero-img { animation: none; }
  html { scroll-behavior: auto; }
}
