:root {
  --gold: #866701;
  --gold-dark: #5c4801;
  --gold-light: #c49a1a;
  --ink: #1a1510;
  --ink-soft: #2d261c;
  --paper: #faf6ee;
  --paper-warm: #f0e8d8;
  --section-dark: #2a2318;
  --section-mid: #3d3426;
  --cream: #fffef9;
  --accent-contrast: #f4e4bc;
  --border-subtle: rgba(134, 103, 1, 0.35);
  --shadow: 0 12px 40px rgba(26, 21, 16, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "El Messiri", "Times New Roman", serif;
  --max: 1120px;
  --focus: 3px solid var(--gold-light);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  min-width: 320px;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

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

.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;
}

.pattern-band {
  background-color: var(--section-dark);
  background-image:
    linear-gradient(30deg, rgba(244, 228, 188, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(244, 228, 188, 0.08) 87.5%, rgba(244, 228, 188, 0.08) 100%),
    linear-gradient(150deg, rgba(244, 228, 188, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(244, 228, 188, 0.08) 87.5%, rgba(244, 228, 188, 0.08) 100%),
    linear-gradient(30deg, rgba(244, 228, 188, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(244, 228, 188, 0.08) 87.5%, rgba(244, 228, 188, 0.08) 100%),
    linear-gradient(150deg, rgba(244, 228, 188, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(244, 228, 188, 0.08) 87.5%, rgba(244, 228, 188, 0.08) 100%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.pattern-light {
  background-color: var(--paper-warm);
  background-image: radial-gradient(circle at 20% 30%, rgba(134, 103, 1, 0.12) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(134, 103, 1, 0.1) 0, transparent 40%),
    repeating-linear-gradient(45deg, rgba(134, 103, 1, 0.04) 0 2px, transparent 2px 14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 238, 0.96);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle i {
  font-size: 1.5rem;
  color: var(--gold);
}

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

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

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

.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/picture.jpg") center / cover no-repeat;
  z-index: -2;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero:hover::before {
  transform: scale(1.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 21, 16, 0.55) 0%, rgba(42, 35, 24, 0.88) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 38ch;
  margin: 0 0 1.5rem;
  color: var(--accent-contrast);
}

.hero-cards {
  display: grid;
  gap: 0.75rem;
}

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

.hero-card {
  background: rgba(250, 246, 238, 0.12);
  border: 1px solid rgba(244, 228, 188, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  background: rgba(250, 246, 238, 0.2);
  border-color: var(--gold-light);
}

.hero-card i {
  font-size: 1.75rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.35rem;
}

.hero-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--cream);
}

.hero-card span {
  font-size: 0.88rem;
  color: var(--accent-contrast);
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 228, 188, 0.6);
}

.btn-ghost:hover {
  background: rgba(250, 246, 238, 0.15);
  color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.section {
  padding: 3rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
 
}

.section-dark .section-kicker {
  color: var(--gold-light);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
  color: var(--cream);
}

.section-dark a {
  color: var(--accent-contrast);
}

.section-dark .card {
  background: rgba(250, 246, 238, 0.08);
  border-color: rgba(244, 228, 188, 0.3);
}

.section-dark .card p,
.section-dark .card li {
  color: var(--accent-contrast);
}

.section-dark .card h3 {
  color: var(--cream);
}

.split {
  display: grid;
  gap: 1.75rem;
}

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

  .split-aside {
    grid-template-columns: 1.4fr 0.9fr;
  }
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.icon-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.85rem;
  align-items: start;
}

.icon-list i {
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.2;
}

.section-dark .icon-list i {
  color: var(--gold-light);
}

.card {
  background: var(--cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 4px 20px rgba(134, 103, 1, 0.08);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(134, 103, 1, 0.12);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.pill i {
  color: var(--gold);
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

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

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

.disclaimer {
  background: var(--ink);
  color: var(--accent-contrast);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.disclaimer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.disclaimer strong {
  color: var(--cream);
}

.disclaimer-meta {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  opacity: 0.95;
}

.disclaimer-meta a {
  color: var(--cream);
  text-decoration-color: rgba(255, 254, 249, 0.45);
}

.disclaimer-meta a:hover {
  text-decoration-color: var(--cream);
}

.block-highlight {
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
}

.quote-block {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  color: var(--gold-dark);
}

.section-dark .quote-block {
  color: var(--accent-contrast);
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--cream);
}

th,
td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

th {
  background: rgba(134, 103, 1, 0.15);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .faq-item {
  border-color: rgba(244, 228, 188, 0.25);
}

.section-dark .faq-item p {
  color: var(--accent-contrast);
}

.calendar-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.calendar-list time {
  font-weight: 800;
  color: var(--gold-dark);
}

.section-dark .calendar-list li {
  background: rgba(250, 246, 238, 0.1);
  border-color: rgba(244, 228, 188, 0.25);
}

.section-dark .calendar-list time {
  color: var(--gold-light);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font: inherit;
  background: var(--cream);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
}

.check input {
  margin-top: 0.25rem;
  accent-color: var(--gold);
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-lg);
  filter: grayscale(20%) contrast(1.05);
}

.site-footer {
  background: var(--section-dark);
  color: var(--accent-contrast);
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.footer-legal a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.footer-legal a:hover {
  text-decoration-color: #fff;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--accent-contrast);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #fff;
}

.footer-meta a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.footer-meta a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(26, 21, 16, 0.15);
  padding: 1rem 1.25rem 1.25rem;
  transform: translateY(110%);
  transition: transform 0.4s ease;
}

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

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cookie-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-cookie {
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(134, 103, 1, 0.1);
  color: var(--ink);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.65);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
}

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

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.toggle-row:last-of-type {
  border-bottom: none;
}

.toggle-label strong {
  display: block;
  font-size: 0.95rem;
}

.toggle-label span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.switch {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #c4b8a4;
  border-radius: 999px;
  transition: background 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}

.switch input:checked + .slider {
  background: var(--gold);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.policy-page .section-inner {
  max-width: 860px;
}

.policy-page h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.policy-page ul {
  padding-left: 1.2rem;
}

.policy-page .btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

.policy-page .btn-outline:hover {
  background: rgba(134, 103, 1, 0.1);
  color: var(--ink);
}

.policy-page code {
  font-size: 0.9em;
  background: rgba(134, 103, 1, 0.12);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
}

.success-card .btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

.success-card .btn-outline:hover {
  background: rgba(134, 103, 1, 0.1);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  background: var(--paper);
}

.success-card {
  max-width: 520px;
  text-align: center;
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
}

.success-card i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-card h1 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  color: var(--ink);
}

.success-card p {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--border-subtle);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 480px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
}

.section-mono-feature {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 3.5rem 1.25rem;
}

.mono-feature-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 880px) {
  .mono-feature-inner {
    grid-template-columns: 1fr min(42vw, 480px);
    gap: 2.5rem 3rem;
  }
}

.mono-feature-text {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mono-feature-copy {
  margin-bottom: 2rem;
}

.mono-feature-copy p {
  color: rgba(245, 245, 245, 0.82);
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.mono-feature-copy p:last-child {
  margin-bottom: 0;
}

.mono-feature-head {
  margin-top: auto;
  padding-top: 0.5rem;
}

.mono-feature-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(245, 245, 245, 0.55);
}

.mono-feature-title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.mono-feature-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  max-width: 520px;
  width: 100%;
  justify-self: center;
}

@media (min-width: 880px) {
  .mono-feature-photo {
    justify-self: end;
  }
}

.mono-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.mono-feature-photo:hover img,
.mono-feature-photo:focus-within img {
  filter: grayscale(0.85) contrast(1.05) brightness(1);
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .mono-feature-photo img {
    transition: none;
  }

  .mono-feature-photo:hover img,
  .mono-feature-photo:focus-within img {
    transform: none;
    filter: grayscale(1) contrast(1.08) brightness(0.95);
  }
}

@media (max-width: 879px) {
  .mono-feature-inner {
    align-items: stretch;
  }

  .mono-feature-photo {
    order: 2;
    max-width: 100%;
  }

  .mono-feature-text {
    order: 1;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    padding: 2.25rem 1rem 2.75rem;
  }

  .section {
    padding: 2.25rem 1rem;
  }

  .section-mono-feature {
    padding: 2.5rem 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }
}
