/* Pheasants Den — forest & gold theme */
:root {
  --color-bg: #0f1f18;
  --color-bg-elevated: #152a22;
  --color-surface: #1a3328;
  --color-border: rgba(201, 162, 39, 0.22);
  --color-gold: #c9a227;
  --color-gold-soft: #e8d48a;
  --color-text: #f0ebe3;
  --color-muted: #a8b5ad;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-gold);
  color: var(--color-bg);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.container.narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(15, 31, 24, 0.97) 0%, rgba(15, 31, 24, 0.92) 100%);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1100px, 92vw);
  margin-inline: auto;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--color-gold);
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-gold);
  border-radius: 1px;
}

.header-cta {
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    order: 2;
  }

  .header-cta {
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav a {
    font-size: 1.05rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, #a88620 100%);
  color: #1a1508;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
  filter: brightness(1.06);
  color: #1a1508;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(201, 162, 39, 0.45);
}

.btn--ghost:hover {
  background: rgba(201, 162, 39, 0.12);
  color: #fff;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15, 31, 24, 0.15) 0%, rgba(15, 31, 24, 0.75) 55%, rgba(15, 31, 24, 0.92) 100%),
    url("https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 162, 39, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: 22ch;
}

.hero__title-line {
  display: block;
}

.hero__title-line--sub {
  font-size: 0.58em;
  font-weight: 600;
  color: var(--color-gold-soft);
  margin-top: 0.35em;
  max-width: 28ch;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

.intro {
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}

.lead {
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
  color: var(--color-text);
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card__image {
  height: 200px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(15, 31, 24, 0.85)),
    url("https://images.unsplash.com/photo-1478131143081-80f7f84ca84d?auto=format&fit=crop&w=800&q=80") center/cover no-repeat;
}

.feature-card__image--2 {
  background:
    linear-gradient(180deg, transparent 40%, rgba(15, 31, 24, 0.85)),
    url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=800&q=80") center/cover no-repeat;
}

.feature-card__image--3 {
  background:
    linear-gradient(180deg, transparent 40%, rgba(15, 31, 24, 0.85)),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=800&q=80") center/cover no-repeat;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

.feature-card p,
.feature-card .checklist {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
  color: var(--color-muted);
}

.feature-card .checklist {
  list-style: none;
}

.feature-card .checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
}

.feature-card .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.feature-card h2 {
  padding: 1rem 1.35rem 0;
}

.feature-card__emoji {
  margin-right: 0.2em;
  opacity: 0.95;
}

.location h2 .feature-card__emoji {
  margin-right: 0.25em;
}

.two-col h2 .feature-card__emoji {
  margin-right: 0.25em;
}

/* Two column */
.perfect-for {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 50%, var(--color-bg) 100%);
}

.two-col {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.two-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
}

.two-col__text p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.tagline {
  color: var(--color-gold-soft) !important;
  font-size: 1.1rem;
  margin-bottom: 1.5rem !important;
}

.two-col__image {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

/* Location */
.location {
  border-top: 1px solid var(--color-border);
}

.location h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
}

.location__lead {
  color: var(--color-muted);
  max-width: 70ch;
}

.location__address {
  margin: 1.25rem 0 2rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.postcode {
  font-variant-numeric: tabular-nums;
}

.location__sub {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.attractions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.35rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.attractions li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.attractions li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

/* Tents */
.tents {
  background: var(--color-bg-elevated);
  border-block: 1px solid var(--color-border);
}

.tent-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 600px) {
  .tent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .tent-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tent-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.tent-card__image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.tent-card__body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tent-card__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
  color: var(--color-gold-soft);
}

.tent-card__price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}

.tent-card__dates {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.tent-card__spec {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.tent-card__spec li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tent-card__spec li:last-child {
  border-bottom: none;
}

.tent-card__amenities {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--color-muted);
  flex: 1;
}

.tent-card__amenities strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 0.35rem;
}

.tent-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Booking embed */
.booking-widget {
  border-bottom: 1px solid var(--color-border);
}

.booking-widget__actions {
  text-align: center;
  margin-bottom: 1.25rem;
}

.booking-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.booking-block__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  text-align: center;
}

.booking-block__lede {
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.98rem;
  max-width: 52ch;
  margin-inline: auto;
}

/* Shared embed shell */
.booking-embed {
  position: relative;
  overflow: hidden;
}

/* Compact widget — Outdore dashboard snippet (white card, max 350px) */
.booking-embed--widget {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.booking-embed__frame {
  width: 100%;
  border: 0;
  display: block;
}

.booking-embed__frame--widget {
  height: 600px;
  min-height: 0;
}

@media only screen and (max-width: 768px) {
  .booking-embed__frame--widget {
    height: 500px;
  }
}

/* Full public Outdore page — map + listing */
.booking-embed--full {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: #0a1612;
  box-shadow: var(--shadow);
}

.booking-embed__frame--full {
  height: min(72vh, 820px);
  min-height: 480px;
}

@media (min-width: 900px) {
  .booking-embed__frame--full {
    min-height: 560px;
  }
}

.booking-embed__fallback {
  padding: 1rem 1.25rem;
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  background: #f5f5f5;
  color: #333;
}

.booking-embed__fallback a {
  color: #1a3328;
}

.booking-embed__fallback--on-dark {
  background: var(--color-bg-elevated);
  color: var(--color-muted);
}

.booking-embed__fallback--on-dark a {
  color: var(--color-gold-soft);
}

/* Terms */
.terms-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.terms-intro {
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}

.terms-panel-wrap {
  margin-top: 0.5rem;
}

.terms-panel {
  max-height: min(70vh, 560px);
  overflow-y: auto;
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.terms-panel:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.terms-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.terms-list > li {
  margin-bottom: 1rem;
}

.terms-list ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.terms-agreement {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}

.terms-page .terms-panel {
  max-height: none;
}

.terms-section--page {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.terms-section--page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
}

/* Contact form */
.contact-section {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
}

.contact-section__inner {
  max-width: 640px;
}

.section-header--left {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}

.section-header--left p {
  color: var(--color-muted);
}

.contact-form {
  margin-top: 1.5rem;
}

.contact-form__row {
  margin-bottom: 1.1rem;
}

.contact-form__row--half {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .contact-form__row--half {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.contact-form__req {
  color: var(--color-gold);
}

.contact-form__opt {
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__input::placeholder {
  color: rgba(168, 181, 173, 0.65);
}

.contact-form__input:hover {
  border-color: rgba(201, 162, 39, 0.45);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__note {
  min-height: 1.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--color-gold-soft);
}

.contact-form__submit {
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  background: #0a1612;
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-tag {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--color-gold-soft);
}

.footer-contact a[href^="tel"] {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-contact a[href^="tel"]:hover {
  color: var(--color-gold);
}

.map-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 2px dashed var(--color-border);
  background: linear-gradient(145deg, var(--color-surface), var(--color-bg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.map-placeholder span:first-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold-soft);
}

.map-placeholder__hint {
  font-size: 0.8rem;
  opacity: 0.85;
}

.footer-terms-link {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.footer-terms-link .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.footer-copy {
  text-align: center;
  margin: 1.25rem auto 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}
