/* ==========================================================================
   Ballybunion Pumpkin Patch — ballybunionpumpkinpatch.ie
   Palette and type are drawn from the farm logo: coastal blue, pumpkin
   orange, sunflower yellow and dark bark brown on a cream ground.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --bark:        #3E2A1C;
  --bark-soft:   #57402D;
  --cream:       #F8F1E0;
  --cream-deep:  #EFE3CB;
  --pumpkin:     #E07B1E;
  --pumpkin-dk:  #C4640F;
  --sky:         #9CCFE6;
  --sky-dk:      #5FA3C4;
  --sunflower:   #F3C34C;
  --meadow:      #5C7143;
  --meadow-dk:   #44552F;

  /* Ink */
  --ink:         #2E2016;
  --ink-mid:     #5D4B3C;
  --ink-soft:    #7C6B5C;
  --line:        rgba(62, 42, 28, 0.14);
  --line-strong: rgba(62, 42, 28, 0.28);

  /* Type */
  --font-display: "Alfa Slab One", Georgia, "Times New Roman", serif;
  --font-body:    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space + shape */
  --wrap:     1180px;
  --wrap-narrow: 820px;
  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(62, 42, 28, 0.08);
  --shadow:    0 10px 30px rgba(62, 42, 28, 0.13);
  --shadow-lg: 0 22px 60px rgba(62, 42, 28, 0.20);

  --header-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* The browser's built-in [hidden] rule is only `display: none`, so any author
   rule that sets display (e.g. .btn { display: inline-flex }) silently beats it
   and the element stays on screen. Make hidden actually mean hidden. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  /* Stop sticky header covering anchor targets */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--pumpkin-dk); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--bark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--bark);
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.25rem, 6.2vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.45rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.15em; padding-left: 1.25em; }

:focus-visible {
  outline: 3px solid var(--sky-dk);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 200;
  background: var(--bark);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; color: var(--cream); }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream-deep { background: var(--cream-deep); }
.section--bark { background: var(--bark); color: var(--cream-deep); }
.section--bark h2, .section--bark h3 { color: var(--cream); }

.section-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2rem, 4vw, 3.25rem); }
.section-head p { color: var(--ink-mid); font-size: 1.1rem; }
.section--bark .section-head p { color: rgba(248, 241, 224, 0.82); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pumpkin-dk);
  margin-bottom: 0.75rem;
}
.section--bark .eyebrow { color: var(--sunflower); }

/* Little vine/leaf divider under section headings */
.rule {
  width: 96px; height: 12px;
  margin: 0 auto 1.35rem;
  background:
    radial-gradient(circle at 50% 50%, var(--pumpkin) 0 4.5px, transparent 5px),
    linear-gradient(to right, transparent 0 12px, var(--line-strong) 12px calc(50% - 12px), transparent calc(50% - 12px) calc(50% + 12px), var(--line-strong) calc(50% + 12px) calc(100% - 12px), transparent calc(100% - 12px));
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 2px;
  background-position: center, center;
}
.section--bark .rule {
  background:
    radial-gradient(circle at 50% 50%, var(--sunflower) 0 4.5px, transparent 5px),
    linear-gradient(to right, transparent 0 12px, rgba(248,241,224,.35) 12px calc(50% - 12px), transparent calc(50% - 12px) calc(50% + 12px), rgba(248,241,224,.35) calc(50% + 12px) calc(100% - 12px), transparent calc(100% - 12px));
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 2px;
  background-position: center, center;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.92em 1.9em;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--pumpkin);
  border-color: var(--pumpkin);
  color: #fff;
  box-shadow: 0 6px 18px rgba(224, 123, 30, 0.36);
}
.btn--primary:hover { background: var(--pumpkin-dk); border-color: var(--pumpkin-dk); color: #fff; box-shadow: 0 10px 26px rgba(224, 123, 30, 0.45); }

.btn--ghost {
  background: transparent;
  border-color: var(--bark);
  color: var(--bark);
}
.btn--ghost:hover { background: var(--bark); color: var(--cream); }

.btn--light {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.94);
  color: var(--bark);
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: #fff; border-color: #fff; color: var(--bark); }

.btn--outline-light {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn--outline-light:hover { background: #fff; color: var(--bark); border-color: #fff; }

.btn--sm { padding: 0.62em 1.25em; font-size: 0.92rem; }

/* Keep every button at the 44px minimum tap target on touch screens and at
   phone/tablet widths. Both conditions so it holds on touch laptops too. */
@media (pointer: coarse), (max-width: 1020px) {
  .btn { min-height: 44px; }
}
.btn--lg { padding: 1.05em 2.4em; font-size: 1.08rem; }

/* --------------------------------------------------------------------------
   5. Announcement bar
   -------------------------------------------------------------------------- */
.announce {
  background: var(--bark);
  color: var(--cream-deep);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
  position: relative;
  z-index: 60;
}
.announce a { color: var(--sunflower); text-underline-offset: 3px; }
.announce a:hover { color: #fff; }
.announce .dot { color: var(--pumpkin); margin: 0 0.5rem; }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 224, 0.93);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
/* backdrop-filter establishes a containing block for position:fixed
   descendants. With it on the header, the off-canvas drawer was positioned
   against the header's 75px box instead of the viewport, so it opened
   clipped to one and a half links. Restrict it to desktop widths, where the
   drawer is not used. The header background is 93% opaque anyway, so the
   blur is barely perceptible either way. */
@media (min-width: 1021px) {
  .header { backdrop-filter: blur(12px); }
}
.header.is-stuck { box-shadow: 0 6px 22px rgba(62, 42, 28, 0.13); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand__img { height: 54px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--bark);
  letter-spacing: 0.01em;
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-dk);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: block;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bark-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}
.nav__link:hover { background: rgba(62, 42, 28, 0.07); color: var(--bark); }
.nav__link.is-active { color: var(--pumpkin-dk); background: rgba(224, 123, 30, 0.12); }

.nav__cta { margin-left: 0.6rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  color: var(--bark);
}
.nav-toggle__bars { position: relative; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: background-color 0.15s ease; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.22s ease, top 0.22s ease;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    background: var(--cream);
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(62, 42, 28, 0.18);
    overflow-y: auto;
    /* The closed drawer is removed from layout completely.

       Parking it off-canvas with transform:translateX(100%) looked hidden but
       still occupied its full width, making the page 690px wide on a 375px
       phone. That produced a blank strip down the right-hand side, and left
       position:fixed resolving against the wrong width, so the opened menu
       landed outside the visible area and the button seemed dead.

       display:none contributes no width, no paint and no tab stops. */
    display: none;
  }
  .nav.is-open {
    display: flex;
    animation: nav-slide-in 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__link {
    padding: 0.95rem 0.75rem;
    border-radius: 10px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta { margin: 1.25rem 0 0; width: 100%; }
  .nav__cta .btn { width: 100%; }

  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(46, 32, 22, 0.5);
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 90;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* You cannot transition out of display:none, so the drawer slides in with a
   keyframe animation instead. Closing is instant, which is fine. */
@keyframes nav-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Just above the drawer breakpoint the full nav bar only barely fits and
   spills a couple of pixels. Tighten the spacing for that narrow band only. */
@media (min-width: 1021px) and (max-width: 1120px) {
  .nav__link { padding: 0.5rem 0.55rem; font-size: 0.88rem; }
  .nav__cta { margin-left: 0.35rem; }
  .brand__img { height: 46px; }
}

@media (max-width: 420px) {
  .brand__img { height: 44px; }
  .brand__name { font-size: 0.9rem; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 860px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(46,32,22,0.62) 0%, rgba(46,32,22,0.34) 40%, rgba(46,32,22,0.78) 100%);
}

/* Keep the container full width so the copy anchors left, and cap the
   measure on the children rather than on the wrap itself. */
.hero__inner { padding: clamp(3rem, 8vh, 6rem) 0; color: #fff; }
.hero__inner > * { max-width: 44rem; }
.hero h1 { color: #fff; text-shadow: 0 3px 24px rgba(0,0,0,0.42); margin-bottom: 0.4em; }
.hero__lede {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  margin-bottom: 1.1em;
}
.hero__body {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255,255,255,0.94);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--sunflower);
  color: var(--bark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.hero__scroll:hover { color: #fff; }
.hero__scroll svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 640px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   8. Intro
   -------------------------------------------------------------------------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro__copy p { font-size: 1.08rem; color: var(--ink-mid); }
.intro__copy p:first-of-type {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

.intro__media { position: relative; }
.intro__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.intro__stamp {
  position: absolute;
  /* Kept close to the image edge: the badge is rotated, so its bounding box
     spills ~8px wider than it looks and a bigger offset pushes past the
     viewport on narrow desktops. */
  right: -4px; bottom: -22px;
  background: var(--sky);
  color: var(--bark);
  border: 4px solid var(--cream);
  border-radius: 50%;
  width: 128px; height: 128px;
  display: grid; place-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.86rem;
  line-height: 1.25;
  padding: 0.5rem;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.intro__stamp strong { display: block; font-size: 1.5rem; }

@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { order: -1; }
  .intro__stamp { width: 104px; height: 104px; font-size: 0.75rem; right: 6px; bottom: -18px; }
  .intro__stamp strong { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   9. Attractions
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1); }
.card:hover .card__media img { transform: scale(1.06); }

.card__icon {
  position: absolute;
  left: 14px; top: 14px;
  width: 44px; height: 44px;
  display: grid; place-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.card__body { padding: 1.35rem 1.5rem 1.6rem; flex: 1; }
.card__body h3 { margin-bottom: 0.45rem; }
.card__body p { color: var(--ink-mid); font-size: 0.98rem; margin: 0; }

/* -------------------------------------------------------------------------
   10. Why families love us
   ------------------------------------------------------------------------- */
.perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.15rem;
}
.perk {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(248, 241, 224, 0.18);
  border-radius: var(--radius);
  padding: 1.6rem 1.25rem;
  text-align: center;
}
.perk__icon { font-size: 2rem; line-height: 1; display: block; margin-bottom: 0.7rem; }
.perk__label {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--cream);
  line-height: 1.25;
}
.perk__note { font-size: 0.88rem; color: rgba(248, 241, 224, 0.72); margin: 0.4rem 0 0; }

/* -------------------------------------------------------------------------
   11. Farm map
   ------------------------------------------------------------------------- */
.farmmap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 2vw, 1.35rem);
  box-shadow: var(--shadow);
}
.farmmap__frame { border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--cream-deep); border: 0; padding: 0; display: block; width: 100%; }
.farmmap__frame img { width: 100%; }
.farmmap__caption {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}
.farmmap__caption strong { color: var(--bark); }

/* Lightbox — tap-to-zoom on the farm map */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(30, 20, 13, 0.93);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 48px; height: 48px;
  display: grid; place-content: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.26); }

/* -------------------------------------------------------------------------
   13. Plan your visit
   ------------------------------------------------------------------------- */
.visit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.panel__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; }
.panel__head h3 { margin: 0; }
.panel__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-content: center;
  background: var(--cream-deep);
  border-radius: 12px;
  font-size: 1.3rem; line-height: 1;
}
.panel address { font-style: normal; color: var(--ink-mid); line-height: 1.75; }
.panel .eircode {
  display: inline-block;
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--cream-deep);
  color: var(--bark);
  padding: 0.12em 0.5em;
  border-radius: 6px;
}

.hours { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.hours li:last-child { border-bottom: 0; }
.hours .hours__day { font-weight: 700; color: var(--bark); }
.hours .hours__time { color: var(--ink-mid); white-space: nowrap; }

.note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--cream-deep);
  border-left: 3px solid var(--sunflower);
  padding: 0.7rem 0.95rem;
  border-radius: 0 8px 8px 0;
  margin: 0;
}

.pricing { list-style: none; margin: 0; padding: 0; }
.pricing li { padding: 0.7rem 0; border-bottom: 1px dashed var(--line); font-size: 0.98rem; }
.pricing li:last-child { border-bottom: 0; }
.pricing strong { color: var(--bark); display: block; }
.pricing span { color: var(--ink-mid); font-size: 0.92rem; }

.mapembed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
  background: var(--cream-deep);
}
.mapembed iframe { width: 100%; height: 420px; border: 0; }
@media (max-width: 640px) { .mapembed iframe { height: 320px; } }

.directions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------
   14. FAQs
   ------------------------------------------------------------------------- */
.faqs { max-width: 46rem; margin-inline: auto; }
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.faq[open] { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.03rem;
  color: var(--bark);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--pumpkin);
  border-bottom: 2.5px solid var(--pumpkin);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.22s ease;
}
.faq[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq summary:hover { background: rgba(224, 123, 30, 0.05); }
.faq__body { padding: 0 1.4rem 1.35rem; color: var(--ink-mid); }
.faq__body p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   15. Booking
   ------------------------------------------------------------------------- */
.book {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.book__media { position: absolute; inset: 0; z-index: -2; }
.book__media img { width: 100%; height: 100%; object-fit: cover; }
.book::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(46,32,22,0.90), rgba(62,42,28,0.80) 55%, rgba(196,100,15,0.72));
}
.book h2 { color: #fff; }
.book__lede { font-size: 1.12rem; color: rgba(255,255,255,0.92); max-width: 40rem; margin: 0 auto 1.75rem; }
.book__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-bottom: 2.25rem; }
.book .eyebrow { color: var(--sunflower); }
.book .rule {
  background:
    radial-gradient(circle at 50% 50%, var(--sunflower) 0 4.5px, transparent 5px),
    linear-gradient(to right, transparent 0 12px, rgba(255,255,255,.4) 12px calc(50% - 12px), transparent calc(50% - 12px) calc(50% + 12px), rgba(255,255,255,.4) calc(50% + 12px) calc(100% - 12px), transparent calc(100% - 12px));
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 2px;
  background-position: center, center;
}

.book__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}
.book__point {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.book__point strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 0.2rem; }
.book__point span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* -------------------------------------------------------------------------
   16. Contact
   ------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__list { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.contact__list li { display: flex; gap: 0.9rem; padding: 0.85rem 0; border-bottom: 1px dashed var(--line); }
.contact__list li:last-child { border-bottom: 0; }
.contact__list .ico {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-content: center;
  background: var(--cream-deep); border-radius: 10px; font-size: 1.15rem; line-height: 1;
}
.contact__list .lbl { display: block; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
/* The email address is one long unbreakable string and forces the whole
   contact list wider than a 320px screen. Let it wrap instead. */
.contact__list .val { font-weight: 700; color: var(--bark); overflow-wrap: anywhere; }
.contact__list .val a { color: var(--bark); text-decoration: none; overflow-wrap: anywhere; }
.footer address, .footer__brand p, .footer a { overflow-wrap: anywhere; }
.contact__list .val a:hover { color: var(--pumpkin-dk); text-decoration: underline; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.form__row { margin-bottom: 1.1rem; }
.form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px) { .form__row--split { grid-template-columns: 1fr; } }

.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bark-soft);
  margin-bottom: 0.4rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--pumpkin);
  background: #fff;
}
.form textarea { resize: vertical; min-height: 130px; }
.form__hint { font-size: 0.85rem; color: var(--ink-soft); margin: 0.9rem 0 0; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { margin: 0.9rem 0 0; font-weight: 700; font-size: 0.95rem; }
.form__status--ok { color: var(--meadow-dk); }
.form__status--err { color: #A8321B; }

/* -------------------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------------------- */
.footer { background: var(--bark); color: rgba(248, 241, 224, 0.78); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer h4, .footer__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sunflower);
  margin-bottom: 1rem;
}
.footer__brand img { height: 96px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.94rem; }
.footer address { font-style: normal; font-size: 0.94rem; line-height: 1.9; }

.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a { color: rgba(248, 241, 224, 0.78); text-decoration: none; font-size: 0.94rem; }
.footer__links a:hover { color: var(--sunflower); text-decoration: underline; }

.social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social a {
  width: 42px; height: 42px;
  display: grid; place-content: center;
  background: rgba(248, 241, 224, 0.1);
  border: 1px solid rgba(248, 241, 224, 0.2);
  border-radius: 50%;
  color: var(--cream);
  transition: background-color 0.16s ease, transform 0.16s ease;
}
.social a:hover { background: var(--pumpkin); border-color: var(--pumpkin); transform: translateY(-2px); color: #fff; }
.social svg { width: 19px; height: 19px; fill: currentColor; }

.footer__bar {
  border-top: 1px solid rgba(248, 241, 224, 0.16);
  padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.86rem;
}
.footer__bar p { margin: 0; }
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bar a { color: rgba(248, 241, 224, 0.7); text-decoration: none; }
.footer__bar a:hover { color: var(--sunflower); text-decoration: underline; }

/* Back to top */
.totop {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  width: 48px; height: 48px;
  display: grid; place-content: center;
  background: var(--pumpkin);
  color: #fff;
  border: 0; border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s, background-color 0.16s ease;
  z-index: 80;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--pumpkin-dk); }
.totop svg { width: 20px; height: 20px; fill: currentColor; }

/* -------------------------------------------------------------------------
   18. Reveal-on-scroll
   ------------------------------------------------------------------------- */
/* Only hide the starting state when JavaScript is running (the `js` class is
   set by an inline script in <head>). Without JS every section stays visible. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0, 0.2, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* -------------------------------------------------------------------------
   19. Sub-pages (terms, privacy, 404)
   ------------------------------------------------------------------------- */
.pagehead {
  background: var(--bark);
  color: var(--cream-deep);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}
.pagehead h1 { color: var(--cream); font-size: clamp(1.9rem, 4.5vw, 3rem); }
.pagehead p { color: rgba(248, 241, 224, 0.78); margin: 0; }

.legal { max-width: 48rem; margin-inline: auto; }
.legal h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-top: 2.5rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--font-body); font-weight: 900; font-size: 1.03rem; margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal p, .legal li { color: var(--ink-mid); }
.legal li { margin-bottom: 0.5rem; }
.legal .updated {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.notfound { text-align: center; padding: clamp(4rem, 12vw, 8rem) 0; }
.notfound .pumpkin { font-size: clamp(4rem, 14vw, 7rem); line-height: 1; display: block; margin-bottom: 1rem; }
.notfound p { color: var(--ink-mid); max-width: 34rem; margin-inline: auto; font-size: 1.1rem; }
.notfound .btn { margin-top: 1.75rem; }

/* -------------------------------------------------------------------------
   20. Print
   ------------------------------------------------------------------------- */
@media print {
  .header, .announce, .totop, .hero__scroll, .nav, .form, .mapembed, .lightbox { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding: 1rem 0; page-break-inside: avoid; }
  .hero { min-height: auto; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
