/*
  DESIGN SYSTEM: "Warm Editorial Outback — Refinement Edition"
  Generated for Me Go Lifestyle Media

  Visual Direction:
  - Handcrafted editorial interface inspired by Australian earth, flora, and light.
  - Asymmetric compositions with angular geometric accents and generous whitespace.
  - Warm, grounded palette avoiding generic blue/white SaaS conventions.
  - Premium SaaS-level finish through refined shadows, soft gradients, and layered depth.

  Color System:
  --bg       Warm cream page background
  --surface  Clean white cards and panels
  --accent1  Terracotta (earth, clay)
  --accent2  Sage green (native foliage)
  --accent3  Golden wattle (sunlight)
  --text     Deep charcoal
  --muted    Warm grey
  --border   Soft clay line

  Typography Pairing:
  - Headings: Cormorant Garamond (elegant serif, editorial tension)
  - Body/UI:  Inter (clean, highly readable sans-serif)

  Spacing Rhythm:
  - Base unit: 0.8rem
  - Container: 1200px max-width
  - Section padding scales from 5.6rem (mobile) to 10rem (desktop)

  Components:
  - Cards with subtle 6px radius, soft shadow, and 1px border.
  - Buttons with refined radius, smooth hover lift, and clear focus rings.
  - Inline SVG decorations only.
  - Micro-interactions via transform, shadow, and opacity.

  Animation Style:
  - Subtle fade-up on scroll (0.5s ease-out).
  - Hover state uses shadow lift and color shift, no blur or glass.
  - prefers-reduced-motion respected.
*/

/* ---------- CSS RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --bg: #F7F3EE;
  --surface: #FFFFFF;
  --accent1: #C45D3F;
  --accent2: #6B8E6E;
  --accent3: #E8A347;
  --text: #2C2825;
  --muted: #7A726A;
  --border: #E5DDD4;

  --shadow-sm: 0 1px 2px rgba(44, 40, 37, 0.04);
  --shadow-md: 0 4px 12px rgba(44, 40, 37, 0.06);
  --shadow-lg: 0 12px 32px rgba(44, 40, 37, 0.08);
  --shadow-xl: 0 24px 56px rgba(44, 40, 37, 0.1);

  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.8rem;
  --space-sm: 1.6rem;
  --space-md: 2.4rem;
  --space-lg: 3.2rem;
  --space-xl: 5.6rem;
  --space-2xl: 8rem;
  --space-3xl: 10rem;

  --transition: 0.2s ease-out;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- FOCUS & ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--accent1);
  outline-offset: 0.2rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent1);
  outline-offset: 0.2rem;
  border-radius: var(--radius-sm);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(3rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
}

h4 {
  font-size: clamp(1.7rem, 1.8vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
}

.text-muted {
  color: var(--muted);
}

.text-accent1 { color: var(--accent1); }
.text-accent2 { color: var(--accent2); }
.text-accent3 { color: var(--accent3); }

.label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent1);
  margin-bottom: var(--space-sm);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 78rem;
}

section {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: var(--space-3xl) 0;
  }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}

.logo-mark {
  width: 3.2rem;
  height: 3.2rem;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-md);
}

.nav-desktop a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent1);
  transition: width var(--transition);
}

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

.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after {
  width: 100%;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.search-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  min-width: 4.4rem;
  min-height: 4.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.search-toggle:hover {
  border-color: var(--accent1);
  background: var(--bg);
}

.search-toggle:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 4.4rem;
  height: 4.4rem;
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding: 0 1rem;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.7rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.7rem) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-desktop,
  .search-toggle {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  inset: 6.4rem 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: var(--space-lg) var(--space-md);
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--text);
  padding: 0.4rem 0;
}

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 40, 37, 0.92);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-xl) var(--space-md) 0;
}

.search-overlay.open {
  display: flex;
}

.search-box {
  width: min(100%, 72rem);
  background: var(--surface);
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  margin-top: 8vh;
}

.search-box label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--space-xs);
}

.search-input {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: var(--space-xs) 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.search-input:focus {
  border-color: var(--accent1);
}

.search-results {
  margin-top: var(--space-md);
  max-height: 40vh;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}

.search-result-item:hover,
.search-result-item:focus-visible {
  color: var(--accent1);
  background: var(--bg);
}

.search-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--bg);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  margin-bottom: var(--space-sm);
}

.hero h1 {
  margin-bottom: var(--space-md);
  max-width: 18ch;
}

.hero-lead {
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 48rem;
  border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 4.4rem;
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--accent1);
  color: var(--surface);
  border-color: var(--accent1);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #a84d33;
  border-color: #a84d33;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--surface);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent1);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent1);
  background: rgba(196, 93, 63, 0.04);
}

/* ---------- DECORATIVE SHAPES ---------- */
.shape-stack {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.shape-stack--tr {
  top: var(--space-md);
  right: var(--space-md);
}

.shape-stack--bl {
  bottom: var(--space-md);
  left: var(--space-md);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  margin-bottom: var(--space-lg);
  max-width: 68ch;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--muted);
  font-size: 1.7rem;
}

/* ---------- CARDS ---------- */
.why-grid,
.overview-grid,
.info-grid,
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.why-card,
.overview-card,
.info-card,
.transparency-card,
.contact-detail-card,
.contact-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover,
.overview-card:hover,
.info-card:hover,
.contact-detail-card:hover,
.contact-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 93, 63, 0.25);
}

.why-card-icon {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: var(--space-sm);
  color: var(--accent1);
}

.why-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 2.2rem;
}

.why-card p,
.overview-card p,
.info-card p {
  color: var(--muted);
  margin: 0;
}

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

  .overview-grid,
  .transparency-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-strip-visual {
  display: flex;
  justify-content: center;
}

.about-strip-illustration {
  width: 100%;
  max-width: 40rem;
  border-radius: var(--radius-md);
}

.about-strip-content p {
  color: var(--muted);
  font-size: 1.7rem;
}

@media (min-width: 1024px) {
  .about-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- LIFESTYLE OVERVIEW ---------- */
.overview-card {
  position: relative;
  padding-top: calc(var(--space-md) + 0.8rem);
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent2);
}

.overview-card:nth-child(2)::before {
  background: var(--accent1);
}

.overview-card:nth-child(3)::before {
  background: var(--accent3);
}

.overview-card h3 {
  margin-bottom: var(--space-xs);
}

/* ---------- LOCAL GUIDES ---------- */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.guide-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.guide-card-visual {
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(196, 93, 63, 0.04) 100%);
  border-bottom: 1px solid var(--border);
}

.guide-card-visual svg {
  width: 80%;
  max-width: 22rem;
}

.guide-card-body {
  padding: var(--space-md);
}

.guide-card h3 {
  margin-bottom: var(--space-xs);
}

.guide-card p {
  color: var(--muted);
}

.guide-card-meta {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent1);
}

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

  .guide-card {
    grid-template-columns: 1fr 1.2fr;
  }

  .guide-card-visual {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

/* ---------- WEEKEND IDEAS ---------- */
.weekend-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.weekend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.weekend-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  width: 100%;
  padding: var(--space-md);
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.weekend-item:hover {
  border-color: var(--accent2);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.weekend-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--accent2);
  line-height: 1;
  width: 4.8rem;
}

.weekend-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.weekend-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.weekend-desc {
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.5;
}

.weekend-arrow {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent1);
  transition: transform var(--transition);
}

.weekend-item:hover .weekend-arrow {
  transform: translateX(0.4rem);
}

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

/* ---------- COMMUNITY STORIES ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.story-card blockquote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.35;
  margin-bottom: var(--space-md);
}

.story-card blockquote::before {
  content: '“';
  color: var(--accent1);
}

.story-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.author-avatar svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent1);
}

.author-info strong {
  display: block;
  font-size: 1.5rem;
}

.author-info span {
  font-size: 1.3rem;
  color: var(--muted);
}

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

/* ---------- INFO CARDS ---------- */
.info-card {
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, transparent 50%, var(--accent3) 50%);
  opacity: 0.25;
}

.info-card h3 {
  margin-bottom: var(--space-xs);
}

/* ---------- FAQ ---------- */
.faq-preview {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--accent1);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--muted);
}

/* ---------- TRANSPARENCY ---------- */
.transparency-section {
  background: linear-gradient(135deg, #25221f 0%, var(--text) 100%);
  color: var(--bg);
}

.transparency-section .section-header h2,
.transparency-section .section-header p {
  color: var(--bg);
}

.transparency-section .label {
  color: var(--accent3);
}

.transparency-card {
  border: 1px solid rgba(247, 243, 238, 0.15);
  background: rgba(247, 243, 238, 0.04);
}

.transparency-card:hover {
  border-color: rgba(247, 243, 238, 0.3);
}

.transparency-card h3 {
  color: var(--accent3);
  margin-bottom: var(--space-xs);
}

.transparency-card p {
  color: rgba(247, 243, 238, 0.75);
  margin: 0;
}

/* ---------- CONTACT PREVIEW ---------- */
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.contact-preview-info {
  display: grid;
  gap: var(--space-md);
}

.contact-preview-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-preview-card svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent1);
  flex-shrink: 0;
}

.contact-preview-card strong {
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.contact-preview-card span {
  color: var(--muted);
}

.contact-preview-visual {
  display: flex;
  justify-content: center;
}

.contact-preview-visual svg {
  width: 100%;
  max-width: 40rem;
  border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
  .contact-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- ANCHOR NAVIGATION ---------- */
.anchor-nav {
  position: sticky;
  top: 6.4rem;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
}

.anchor-nav ul {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.anchor-nav ul::-webkit-scrollbar {
  display: none;
}

.anchor-nav a {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.anchor-nav a:hover,
.anchor-nav a:focus-visible {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--muted);
  font-size: 1.8rem;
  max-width: 60ch;
}

/* ---------- CONTENT PAGES ---------- */
.content-section {
  padding: var(--space-lg) 0 var(--space-3xl);
}

.content-section h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-section h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 1.7rem;
}

.content-section ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.content-section li {
  margin-bottom: var(--space-xs);
}

.content-section a {
  color: var(--accent1);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.content-section a:hover {
  color: var(--text);
}

/* ---------- FAQ PAGE ---------- */
.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-page-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-details {
  display: grid;
  gap: var(--space-md);
}

.contact-detail-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--accent1);
}

.contact-detail-card p {
  color: var(--muted);
  margin: 0;
}

.contact-detail-card a {
  color: var(--accent1);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-detail-card a:hover {
  color: var(--text);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 4.4rem;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(196, 93, 63, 0.1);
}

.form-group textarea {
  min-height: 14rem;
  resize: vertical;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-md);
  z-index: 300;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-xl);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

.cookie-banner p {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0;
}

.cookie-banner a {
  color: var(--accent1);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: linear-gradient(135deg, #25221f 0%, var(--text) 100%);
  color: var(--bg);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  color: rgba(247, 243, 238, 0.7);
  margin-top: var(--space-sm);
}

.footer-links h4 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: var(--accent3);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  color: rgba(247, 243, 238, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent3);
}

.footer-disclaimer {
  border-top: 1px solid rgba(247, 243, 238, 0.15);
  padding-top: var(--space-md);
  font-size: 1.3rem;
  color: rgba(247, 243, 238, 0.55);
}

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

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -4rem;
  left: var(--space-md);
  background: var(--accent1);
  color: var(--surface);
  padding: 0.8rem 1.6rem;
  z-index: 1000;
  transition: top var(--transition);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ---------- UTILITY ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
