/* ==========================================================================
   Visit Creekside — site styles
   Palette is drawn from the property itself: hemlock shade, creek water,
   river stone, and the garnet that Franklin NC's gem mines are known for.
   ========================================================================== */

:root {
  --ink:      #14231c;   /* deep hemlock, near-black green */
  --forest:   #24443a;   /* primary brand green */
  --creek:    #3e7a78;   /* water teal, used for links + accents */
  --moss:     #7d9078;   /* muted foliage, for meta text on dark */
  --stone:    #e4e2da;   /* river stone, borders + fills */
  --paper:    #f3f2ee;   /* page background */
  --white:    #ffffff;
  --garnet:   #8e2c3b;   /* Franklin gem country — reserved for actions */
  --garnet-d: #74222f;

  --text:      #22302a;
  --text-soft: #5c6a63;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shell: 1200px;
  --gut: clamp(1.25rem, 4vw, 3rem);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(20,35,28,.06), 0 4px 14px rgba(20,35,28,.06);
  --shadow-md: 0 2px 6px rgba(20,35,28,.08), 0 18px 40px rgba(20,35,28,.10);

  --header-h: 84px;
}

/* --------------------------------------------------------- reset + base */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

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

a { color: var(--creek); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest); }

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

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.shell-wide { max-width: 1440px; }
.shell-narrow { max-width: 760px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------- sections */

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--forest { background: var(--forest); color: #dfe6e0; }
.section--forest h2, .section--forest h3 { color: var(--white); }
.section--stone { background: var(--stone); }

/* Eyebrow doubles as a trail marker: a short rule then a small-caps label. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--creek);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--garnet);
  flex: none;
}
.section--forest .eyebrow { color: #9dc0b6; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head.is-centered .eyebrow { justify-content: center; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }
.section--forest .section-head p { color: #b9c9c0; }

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--body);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--garnet); color: var(--white); }
.btn--primary:hover { background: var(--garnet-d); color: var(--white); }

.btn--forest { background: var(--forest); color: var(--white); }
.btn--forest:hover { background: var(--ink); color: var(--white); }

.btn--ghost { border-color: currentColor; color: var(--forest); background: transparent; }
.btn--ghost:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

.btn--light { background: var(--white); color: var(--forest); }
.btn--light:hover { background: var(--paper); color: var(--ink); }

.btn--sm { padding: .68rem 1.25rem; font-size: .8rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------- announcement */

.announce {
  background: var(--ink);
  color: #cfe0d6;
  font-size: .88rem;
  text-align: center;
  padding: .7rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.announce[hidden] { display: none; }
.announce strong { color: var(--white); font-weight: 600; }
.announce button {
  background: none;
  border: 1px solid #4a6558;
  color: #cfe0d6;
  border-radius: 999px;
  font: inherit;
  font-size: .78rem;
  padding: .18rem .8rem;
  cursor: pointer;
}
.announce button:hover { background: #24443a; color: var(--white); }

/* ------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 242, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
  transition: background-color .25s ease, border-color .25s ease;
}
/* Transparent over the hero video, solid once you scroll past it. */
.site-header.is-over-hero:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-over-hero:not(.is-scrolled) .nav-link,
.site-header.is-over-hero:not(.is-scrolled) .nav-toggle { color: var(--white); }
.site-header.is-over-hero:not(.is-scrolled) .brand-mark { filter: brightness(0) invert(1); }

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

.brand { display: inline-flex; align-items: center; flex: none; }
.brand-mark { height: 52px; width: auto; transition: filter .25s ease; }

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
/* The in-nav CTA belongs to the mobile drawer only; hide it on desktop so the
   separate .header-cta is the only Book Your Stay button above 1080px. */
.nav > .btn { display: none; }
.nav-link {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
  text-decoration: none;
  padding: .4rem 0;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--garnet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  padding: .4rem;
  cursor: pointer;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: var(--forest);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav .nav-link {
    color: #dfe6e0;
    font-size: 1.05rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav > .btn { display: inline-flex; margin-top: 1.5rem; }
  .nav-toggle { position: relative; z-index: 70; }
  body.nav-open .nav-toggle { color: var(--white); }
}

/* --------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,35,28,.55) 0%, rgba(20,35,28,.25) 45%, rgba(20,35,28,.80) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-block: 5rem 6rem; }
.hero h1 { color: var(--white); max-width: 15ch; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__sub {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: #e3ede6;
  max-width: 34ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero--compact { min-height: min(52vh, 460px); }
.hero--compact h1 { max-width: 20ch; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 2;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  opacity: .85;
}
.scroll-cue span { display: block; width: 1px; height: 34px; background: currentColor; animation: cue 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.35); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* -------------------------------------------------------- search band */

.search-band {
  position: relative;
  z-index: 5;
  margin-top: -3.5rem;
}
.search-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  min-height: 120px;
}
.search-card__note {
  font-size: .9rem;
  color: var(--text-soft);
  text-align: center;
  margin: 0;
}

/* ------------------------------------------------------- cabin cards */

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
/* 368px = 320px Hospitable widget minimum + 48px card body padding, so a card
   never squeezes its booking iframe below the widget's documented minimum. */
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(368px, 100%), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.cabin-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cabin-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cabin-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
.cabin-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cabin-card:hover .cabin-card__media img { transform: scale(1.045); }

.cabin-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.cabin-card__body h3 { margin-bottom: .35rem; }
.cabin-card__body h3 a { color: inherit; text-decoration: none; }
.cabin-card__body h3 a:hover { color: var(--creek); }

/* The rating dot nods to Franklin's gem mines rather than another star icon. */
.rating {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .9rem;
}
.rating::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--garnet);
  transform: rotate(45deg);
  flex: none;
}
.rating span { font-weight: 400; color: var(--text-soft); }

.specs {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: .9rem 0 0;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
  font-size: .87rem;
  color: var(--text-soft);
}
.specs li { display: flex; align-items: center; gap: .35rem; }
.specs li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--moss); }
.cabin-card .btn { margin-top: auto; }

/* --------------------------------------------------------- testimonials */

.reviews-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
}
.reviews-rail > * { scroll-snap-align: start; }

.review {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.section--forest .review { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.review__stars { color: var(--garnet); letter-spacing: .1em; font-size: .85rem; margin-bottom: .9rem; }
.section--forest .review__stars { color: #e8a0aa; }
.review__text { font-size: .97rem; line-height: 1.7; margin-bottom: 1.25rem; }
.review__by { margin-top: auto; font-size: .85rem; }
.review__by strong { display: block; font-family: var(--display); font-size: 1.02rem; font-weight: 600; }
.review__by span { color: var(--text-soft); }
.section--forest .review__by span { color: #9dc0b6; }
.review__text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ------------------------------------------------------------- split */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split--reverse .split__media { order: 2; }
@media (max-width: 780px) { .split--reverse .split__media { order: 0; } }

.contact-lines { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.contact-lines a { font-weight: 600; }

.social-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.social-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
  transition: background-color .18s ease, color .18s ease;
}
.social-row a:hover { background: var(--forest); color: var(--white); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }
.section--forest .social-row a { background: transparent; border-color: rgba(255,255,255,.25); color: #dfe6e0; }
.section--forest .social-row a:hover { background: var(--white); color: var(--forest); }

/* ----------------------------------------------------- things to do */

.tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  background: var(--ink);
}
.tile img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s ease, opacity .3s ease; }
.tile:hover img { transform: scale(1.06); opacity: .68; }
.tile__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(20,35,28,.88));
  color: var(--white);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.25;
}

/* ------------------------------------------------------- map + video */

.embed-frame {
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.embed-frame iframe { width: 100%; height: 520px; border: 0; display: block; }
@media (max-width: 640px) { .embed-frame iframe { height: 420px; } }

/* --------------------------------------------------- property detail */

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .6rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.gallery > :first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery > :first-child img { aspect-ratio: 4/3; }
@media (max-width: 780px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery > :first-child { grid-column: span 2; grid-row: auto; }
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(340px, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 980px) { .property-layout { grid-template-columns: 1fr; } }

.booking-panel {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
}
.booking-panel h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.booking-panel__note { font-size: .82rem; color: var(--text-soft); margin-bottom: 1rem; }
#booking-iframe { width: 100%; min-height: 900px; border: 0; display: block; }

/* Inline availability calendars on the cabin cards. 320px is Hospitable's
   documented minimum width; min-height gives a sensible starting size before
   the widget posts its real height (see site.js resize listener). */
.booking-widget {
  width: 100%;
  min-width: 320px;
  min-height: 480px;
  border: 0;
  display: block;
  margin-bottom: 1.25rem;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
  font-size: .95rem;
}
@media (max-width: 560px) { .amenities { columns: 1; } }
.amenities li { break-inside: avoid; padding: .4rem 0 .4rem 1.5rem; position: relative; }
.amenities li::before {
  content: "";
  position: absolute; left: 0; top: .95em;
  width: 8px; height: 8px;
  border-left: 1.5px solid var(--creek);
  border-bottom: 1.5px solid var(--creek);
  transform: translateY(-50%) rotate(-45deg);
}

.prose h2 { margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }

/* ---------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--stone); }
.faq details { border-bottom: 1px solid var(--stone); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: .5rem; top: 1.75rem;
  width: 10px; height: 10px;
  border-right: 2px solid var(--creek);
  border-bottom: 2px solid var(--creek);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > div { padding: 0 2.5rem 1.5rem 0; color: var(--text-soft); }

/* --------------------------------------------------------------- form */

.form-grid { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cfcec6;
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--creek); }

/* Honeypot: off-screen, never shown, never focusable. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: 0; font-size: .92rem; }
.form-status--err { color: var(--garnet); }
.form-status--ok { color: var(--forest); }
.form-status a { color: inherit; text-decoration: underline; }

.form-success {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.form-success h3 { margin-bottom: .5rem; }
.form-success p { margin: 0; }

/* ------------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: #b9c9c0; padding-block: 4rem 2rem; font-size: .92rem; }
.site-footer a { color: #dfe6e0; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-grid h4 {
  color: var(--white);
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-mark {
  box-sizing: content-box;
  height: 58px;
  width: auto;
  margin-bottom: 1.25rem;
  padding: .5rem .65rem;
  background: rgba(255, 255, 255, .07);
  border-radius: 10px;
}
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: #86988e;
}

.newsletter { display: flex; gap: .5rem; margin-top: .5rem; }
.newsletter input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: .9rem;
  padding: .7rem .8rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  color: var(--white);
}
.newsletter input::placeholder { color: #86988e; }
.newsletter button {
  font: inherit; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: .7rem 1.1rem;
  border: 0; border-radius: var(--r-sm);
  background: var(--garnet); color: #fff; cursor: pointer;
}
.newsletter button:hover { background: var(--garnet-d); }

/* -------------------------------------------------------- misc + a11y */

.badge-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge-row img { height: 26px; width: auto; opacity: .85; transition: opacity .2s ease; }
.badge-row img:hover { opacity: 1; }

.skip-link {
  position: absolute; top: -60px; left: 1rem; z-index: 200;
  background: var(--forest); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

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