/* ============================================
   DORRIS — styles.css
   Privacy-first home safety for older people
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  /* Colours */
  --deep-teal: #123D45;
  --sage: #8EA694;
  --warm-linen: #F7F2EA;
  --soft-mist: #EAF1F3;
  --terracotta: #C97963;
  --charcoal: #1F2A30;
  --white: #FFFFFF;

  /* Derived */
  --terracotta-hover: #b56a55;
  --deep-teal-hover: #0e2f36;
  --sage-light: #c5d5c9;
  --sage-faint: #e8efe9;
  --overlay: rgba(18, 61, 69, 0.5);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(31, 42, 48, 0.06);
  --shadow-md: 0 4px 12px rgba(31, 42, 48, 0.08);
  --shadow-lg: 0 8px 24px rgba(31, 42, 48, 0.1);
  --shadow-header: 0 2px 8px rgba(31, 42, 48, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 72px;
}

/* ----- Reset / Normalize ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  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;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--warm-linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--deep-teal);
  text-decoration-skip-ink: auto;
}

a:hover {
  color: var(--terracotta);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--deep-teal);
  line-height: 1.25;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p + p {
  margin-top: var(--space-md);
}

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--deep-teal);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: 1000;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top var(--transition-fast);
}

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

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--deep-teal);
  color: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition-base);
}

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

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo svg {
  height: 36px;
  width: auto;
}

/* Invert logo colours for dark bg */
.site-header__logo svg text {
  fill: var(--white);
}

.site-header__logo svg path {
  stroke: var(--sage);
}

.site-header__logo svg ellipse {
  fill: var(--sage);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.site-nav__list {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.site-nav__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--white);
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width var(--transition-base);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--deep-teal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 105;
  }

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

  .site-nav__list {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .site-nav__link {
    font-size: 1.25rem;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  line-height: 1.4;
}

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

.btn--primary {
  background-color: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--terracotta-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--deep-teal);
  border: 2px solid var(--deep-teal);
}

.btn--secondary:hover {
  background-color: var(--deep-teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--secondary-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--secondary-light:hover {
  background-color: var(--white);
  color: var(--deep-teal);
}

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

/* ----- Sections ----- */
.section {
  padding: var(--space-3xl) 0;
}

.section--linen {
  background-color: var(--warm-linen);
}

.section--mist {
  background-color: var(--soft-mist);
}

.section--teal {
  background-color: var(--deep-teal);
  color: var(--white);
}

.section--teal h2,
.section--teal h3,
.section--teal h4 {
  color: var(--white);
}

.section--terracotta {
  background-color: var(--terracotta);
  color: var(--white);
}

.section--terracotta h2,
.section--terracotta h3 {
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
}

.section__header p {
  margin-top: var(--space-md);
  font-size: 1.125rem;
  opacity: 0.85;
}

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

/* ----- Hero ----- */
.hero {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero--home {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background-color: var(--warm-linen);
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: var(--sage);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero__title {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.hero__subtitle {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* Decorative shapes */
.hero__shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.15;
  z-index: 0;
}

.hero__shape--1 {
  width: 300px;
  height: 300px;
  background: var(--sage);
  top: -80px;
  right: -60px;
}

.hero__shape--2 {
  width: 180px;
  height: 180px;
  background: var(--soft-mist);
  bottom: -40px;
  left: -40px;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-4xl) 0;
  }
  .hero--home {
    padding: var(--space-4xl) 0 var(--space-4xl);
  }
}

/* ----- Cards ----- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(142, 166, 148, 0.15);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.card__icon--sage {
  background-color: var(--sage-faint);
  color: var(--deep-teal);
}

.card__icon--teal {
  background-color: var(--deep-teal);
  color: var(--white);
}

.card__icon--mist {
  background-color: var(--soft-mist);
  color: var(--deep-teal);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Card grid */
.card-grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

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

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

/* ----- Steps ----- */
.steps {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--deep-teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.step__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--sage-faint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.step__icon svg {
  width: 32px;
  height: 32px;
  color: var(--deep-teal);
}

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

.step__text {
  font-size: 0.9375rem;
  opacity: 0.85;
  max-width: 320px;
  margin: 0 auto;
}

/* Connector line between steps on desktop */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -12%;
    width: 24%;
    height: 2px;
    background: var(--sage-light);
    z-index: 0;
  }
}

/* ----- Accordion (FAQ) ----- */
.accordion {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--sage-light);
}

.accordion__item:first-child {
  border-top: 1px solid var(--sage-light);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--deep-teal);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.accordion__trigger:hover {
  color: var(--terracotta);
}

.accordion__trigger:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--sage);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.accordion__panel[aria-hidden="false"] {
  max-height: 600px;
}

.accordion__content {
  padding-bottom: var(--space-lg);
  font-size: 0.9375rem;
  line-height: 1.8;
  opacity: 0.85;
}

.accordion__content p + p {
  margin-top: var(--space-md);
}

/* ----- Forms ----- */
.form {
  max-width: 560px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--deep-teal);
  margin-bottom: var(--space-xs);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--charcoal);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 3px rgba(18, 61, 69, 0.1);
}

.form__input.is-error,
.form__textarea.is-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form__error {
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: var(--space-xs);
  display: none;
}

.form__group.has-error .form__error {
  display: block;
}

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

.form__success {
  display: none;
  padding: var(--space-lg);
  background: var(--sage-faint);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--deep-teal);
}

.form__success.is-visible {
  display: block;
}

/* ----- CTA Strip ----- */
.cta-strip {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-strip h2 {
  margin-bottom: var(--space-md);
}

.cta-strip p {
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn--primary {
  background-color: var(--white);
  color: var(--terracotta);
}

.cta-strip .btn--primary:hover {
  background-color: var(--warm-linen);
  color: var(--terracotta-hover);
}

/* ----- Footer ----- */
.site-footer {
  background-color: var(--deep-teal);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

.footer-grid__brand p {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-grid__heading {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

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

.footer-grid ul a {
  font-size: 0.875rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__disclaimer {
  font-size: 0.8125rem;
  opacity: 0.6;
  max-width: 720px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}

/* Footer logo */
.site-footer .site-header__logo svg text {
  fill: var(--white);
}

/* ----- Cookie Consent ----- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(31, 42, 48, 0.12);
  padding: var(--space-lg);
  z-index: 200;
  display: none;
  border-top: 2px solid var(--sage-light);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

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

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ----- Utility Classes ----- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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

/* ----- Prose ----- */
.prose {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.prose p {
  margin-bottom: var(--space-lg);
}

.prose h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.prose h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: var(--space-sm);
}

/* ----- Fade In Animation ----- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Highlight Box ----- */
.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.highlight-box--teal {
  border-left-color: var(--deep-teal);
}

.highlight-box--terracotta {
  border-left-color: var(--terracotta);
}

/* ----- Two Column Layout ----- */
.two-col {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

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

/* ----- Empathy / Quote Block ----- */
.empathy-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.empathy-block__text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--deep-teal);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* ----- Icon List ----- */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.icon-list__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.icon-list__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--sage-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-list__icon svg {
  width: 24px;
  height: 24px;
  color: var(--deep-teal);
}

.icon-list__content h4 {
  margin-bottom: var(--space-xs);
}

.icon-list__content p {
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* ----- Big Statement ----- */
.big-statement {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.big-statement__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* ----- No Camera Badge ----- */
.no-camera-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--sage-faint);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--deep-teal);
}

.no-camera-badge svg {
  width: 20px;
  height: 20px;
}

/* ----- Photo Utilities ----- */
.photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.photo--hero {
  margin-top: var(--space-2xl);
  max-height: 500px;
  object-fit: cover;
}
.photo--feature {
  max-height: 400px;
  object-fit: cover;
}
.photo--rounded {
  border-radius: var(--radius-xl);
}

/* ----- Print Styles ----- */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .nav-toggle,
  .cta-strip,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  h1, h2, h3, h4 {
    color: black;
  }

  .section {
    padding: 1rem 0;
    background: white !important;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
  }
}

/* ----- Focus Visible ----- */
*:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}
