:root {
  --ink: #101828;
  --ink-soft: #344054;
  --ink-muted: #667085;
  --paper: #fffaf1;
  --surface: #ffffff;
  --surface-soft: #fff1ee;
  --coral: #e9543e;
  --coral-dark: #bd3424;
  --gold: #ba7b22;
  --line: #eadfd3;
  --success: #1c6b4a;
  --danger: #b42318;
  --focus: #f79076;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.07);
  --shadow-md: 0 20px 50px rgba(16, 24, 40, 0.12);
  --shadow-lg: 0 30px 80px rgba(16, 24, 40, 0.18);
  --container: 1180px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a,
button,
summary,
select,
input[type="checkbox"] {
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 5px var(--coral-dark);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 24, 40, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tagline {
  margin-top: 4px;
  color: #d0d5dd;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #eaecf0;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--coral-dark);
  color: #fff;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  background: #94271e;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-button svg,
.icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.cod-strip {
  background: #fff3d6;
  color: #5f3d08;
  font-size: 0.85rem;
  font-weight: 650;
  text-align: center;
}

.cod-strip .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cod-strip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 86px;
  background:
    radial-gradient(circle at 88% 18%, rgba(233, 84, 62, 0.2), transparent 34%),
    radial-gradient(circle at 5% 95%, rgba(186, 123, 34, 0.13), transparent 30%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -170px;
  border: 72px solid rgba(233, 84, 62, 0.07);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
.display-copy {
  margin-top: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--coral);
  font-style: italic;
  font-weight: 500;
}

.lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row-spaced {
  margin-top: 24px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:active,
.menu-button:active,
.filter-button:active {
  opacity: 0.78;
}

.button-primary {
  background: var(--coral-dark);
  color: #fff;
  box-shadow: 0 9px 22px rgba(189, 52, 36, 0.23);
}

.button-primary:hover {
  background: #94271e;
  box-shadow: 0 12px 28px rgba(189, 52, 36, 0.28);
}

.button-secondary {
  border-color: #c9b9aa;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: #fff;
}

.button-ghost {
  border-color: #d0d5dd;
  background: transparent;
  color: var(--ink-soft);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-note {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.hero-note svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  inset: 30px 0 0 40px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.72);
  border-radius: 42% 20% 34% 18%;
  background: #ede4da;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.floating-card.top {
  top: 0;
  right: -16px;
}

.floating-card.bottom {
  left: 0;
  bottom: 16px;
}

.floating-card strong {
  display: block;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.25rem;
}

.floating-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.trust-rail {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

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

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--coral-dark);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.9rem;
}

.trust-item span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(233, 84, 62, 0.25), transparent 35%);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
}

.section-dark .eyebrow {
  color: #ff9a87;
}

.section-dark .section-copy,
.section-dark .muted {
  color: #d0d5dd;
}

.section-soft {
  background: #f7eee5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-copy {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  border-color: #d5b8a5;
  box-shadow: var(--shadow-md);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efe6dc;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0;
}

.product-price strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.product-price span {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions .button {
  flex: 1;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #cfbfae;
  border-radius: 999px;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.process-grid {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  counter-increment: process;
  min-width: 0;
  padding: 26px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 34px;
  color: #ff9a87;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  font-size: 1.35rem;
}

.process-step p {
  margin: 0;
  color: #cfd4dc;
  font-size: 0.88rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(40px, 7vw, 92px);
}

.feature-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li + li,
.check-list li + li {
  margin-top: 14px;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg);
}

.info-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid #e5c277;
  border-radius: 14px;
  background: #fff8df;
  color: #61410a;
  font-size: 0.9rem;
}

.notice svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.page-hero {
  padding: 78px 0 66px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(233, 84, 62, 0.15), transparent 32%),
    #f8efe6;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--coral-dark);
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  align-items: start;
  gap: 70px;
}

.side-nav {
  position: sticky;
  top: 120px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.side-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav a {
  display: block;
  padding: 8px 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.side-nav a:hover {
  color: var(--coral-dark);
}

.prose {
  min-width: 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin-top: 58px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.prose h3 {
  margin-top: 34px;
  font-family: inherit;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--coral-dark);
  font-weight: 650;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li + li {
  margin-top: 8px;
}

.policy-date {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f0e4d8;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.policy-table-wrap {
  width: 100%;
  margin: 26px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.policy-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.85rem;
}

.policy-table th,
.policy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: #f7eee5;
  color: var(--ink);
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item + .contact-item {
  margin-top: 24px;
}

.contact-item .icon-badge {
  width: 40px;
  height: 40px;
}

.contact-item strong,
.contact-item span,
.contact-item a {
  display: block;
}

address {
  font-style: normal;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 78% 14%, rgba(233, 84, 62, 0.26), transparent 32%),
    var(--ink);
  color: #fff;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -250px;
  border: 74px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.about-hero .eyebrow,
.contact-hero .eyebrow {
  color: #ffab9c;
}

.about-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.8vw, 6.4rem);
}

.about-hero .lead {
  color: #d0d5dd;
}

.about-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.about-hero .button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.about-hero-visual {
  position: relative;
  min-width: 0;
  padding: 12px 0 36px 28px;
}

.about-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 34px 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
}

.about-hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36);
}

.about-visual-note {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 250px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.about-visual-note span,
.about-visual-note strong {
  display: block;
}

.about-visual-note span {
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-visual-note strong {
  margin-top: 4px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.18rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 9vw, 128px);
  align-items: start;
}

.about-statement h2 {
  max-width: 560px;
}

.about-editorial-copy {
  padding-top: 34px;
}

.about-editorial-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.about-editorial-copy p + p {
  margin-top: 24px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.principle-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.principle-card-featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.principle-card .icon-badge {
  margin: 34px 0 24px;
}

.principle-card-featured .icon-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffab9c;
}

.principle-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle-card-featured .principle-number,
.principle-card-featured p {
  color: #cbd1da;
}

.principle-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.principle-card.principle-card-featured p {
  color: #cbd1da;
}

.about-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 9vw, 120px);
}

.about-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-process-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-process-list li:first-child {
  padding-top: 4px;
}

.about-process-list span {
  color: #ffab9c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-process-list strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 84, 62, 0.22), transparent 40%),
    var(--ink);
  color: #fff;
}

.contact-hero-inner {
  max-width: 900px;
  text-align: center;
}

.contact-hero .eyebrow {
  justify-content: center;
}

.contact-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
}

.contact-hero .lead {
  max-width: 730px;
  margin-inline: auto;
  color: #d0d5dd;
}

.contact-email-line {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.contact-email-line .icon-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffab9c;
}

.contact-email-line span,
.contact-email-line a {
  display: block;
}

.contact-email-line span {
  color: #aeb6c2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email-line a {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-email-line a:hover {
  text-decoration: underline;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-route-card {
  min-width: 0;
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-route-card:hover {
  border-color: #d5b8a5;
  box-shadow: var(--shadow-md);
}

.contact-route-card h3 {
  margin-bottom: 12px;
}

.contact-route-card p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-route-label {
  margin-bottom: 8px !important;
  color: var(--coral-dark) !important;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  color: var(--coral-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.address-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.address-banner-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffab9c;
}

.address-banner-icon svg {
  width: 24px;
  height: 24px;
}

.address-banner-copy > span {
  display: block;
  color: #aeb6c2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.address-banner address {
  margin-top: 4px;
  color: #fff;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 650;
  line-height: 1.45;
}

.address-banner p {
  margin: 4px 0 0;
  color: #aeb6c2;
  font-size: 0.76rem;
}

.address-banner .button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: #fff;
  color: var(--ink);
}

.contact-next-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.contact-next-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-next-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-next-list li:first-child {
  padding-top: 4px;
}

.contact-next-list > li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-next-list strong {
  display: block;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.16rem;
}

.contact-next-list p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.address-inline {
  display: block;
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.customizer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: start;
  gap: 34px;
}

.customizer-form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-section {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-section + .form-section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.form-section legend {
  width: 100%;
  margin-bottom: 18px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfc2b5;
  border-radius: 10px;
  background: #fffdf9;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #a7917c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(233, 84, 62, 0.14);
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 0.74rem;
}

.required-mark {
  color: var(--danger);
}

.required-note {
  margin: -6px 0 20px;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.76rem;
  font-weight: 650;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.check-field[aria-invalid="true"] {
  padding: 10px;
  border-left: 4px solid var(--danger);
  background: #fff1f0;
}

.check-field > .field-error {
  grid-column: 2;
}

.check-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--coral);
}

.check-field label {
  font-size: 0.84rem;
}

.form-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--danger);
  border-radius: 8px;
  background: #fff1f0;
  color: var(--danger);
  font-size: 0.86rem;
}

.form-actions {
  margin-top: 24px;
}

.preview-panel {
  position: sticky;
  top: 116px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.preview-stage {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, #26334a, #101828);
}

.preview-stage::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  bottom: -130px;
  border: 44px solid rgba(233, 84, 62, 0.3);
  border-radius: 50%;
}

.card-holder-preview {
  position: relative;
  z-index: 1;
  width: 76%;
  max-width: 310px;
  aspect-ratio: 1.55;
  border-radius: 15px 15px 28px 15px;
  background: #f4e4ca;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  transform: rotate(-5deg);
  transition: background 240ms ease, border-radius 240ms ease, transform 240ms ease;
}

.card-holder-preview::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 67%;
  left: 14%;
  top: -16%;
  border-radius: 10px;
  background: var(--preview-card, #e9543e);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.card-holder-preview::after {
  content: "MGC";
  position: absolute;
  left: 22px;
  bottom: 17px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-holder-preview[data-format="folio"] {
  border-radius: 9px;
  background: #1f3152;
}

.card-holder-preview[data-format="folio"]::after,
.card-holder-preview[data-format="box"]::after {
  color: #fff;
}

.card-holder-preview[data-format="box"] {
  border: 10px solid #1f3152;
  border-radius: 8px;
  background: #fff3dc;
}

.card-holder-preview[data-palette="ivory-coral"] {
  --preview-card: #e9543e;
}

.card-holder-preview[data-palette="navy-ivory"] {
  --preview-card: #f4e4ca;
}

.card-holder-preview[data-palette="terracotta-sand"] {
  --preview-card: #c76643;
}

.card-holder-preview[data-palette="custom"] {
  --preview-card: #ba7b22;
}

.preview-summary {
  padding: 28px;
}

.preview-summary h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.summary-list {
  margin: 0;
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-row dt {
  color: #bfc5ce;
  font-size: 0.8rem;
}

.summary-row dd {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.summary-price {
  margin-top: 22px;
  color: #ffb8aa;
  font-size: 0.82rem;
  font-weight: 700;
}

.success-panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #8ac6a7;
  border-radius: 16px;
  background: #effaf4;
}

.success-panel h3 {
  color: var(--success);
}

.success-panel p {
  color: var(--ink-soft);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 6vw, 66px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta-panel h2 {
  margin-bottom: 12px;
}

.cta-panel p {
  max-width: 650px;
  margin: 0;
  color: #d0d5dd;
}

.site-footer {
  padding: 68px 0 24px;
  background: #0b1220;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.65fr) minmax(220px, 0.9fr);
  gap: 46px;
}

.footer-intro {
  max-width: 340px;
}

.footer-intro p {
  color: #aeb6c2;
  font-size: 0.88rem;
}

.footer-heading {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #b9c0ca;
  font-size: 0.84rem;
  text-align: left;
  text-decoration: none;
}

.footer-links a,
.footer-links button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) 1px minmax(0, 1.35fr);
  align-items: stretch;
  gap: 28px;
  margin-top: 46px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.footer-contact-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-contact-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.footer-contact-label {
  color: #98a2b3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-contact-value {
  color: #e9edf3;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-contact-copy a {
  min-height: 44px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.footer-contact-copy a:hover {
  color: #ffb6a8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 171, 156, 0.2);
  border-radius: 13px;
  background: rgba(255, 171, 156, 0.09);
  color: #ffab9c;
}

.footer-contact-icon svg {
  width: 19px;
  height: 19px;
}

.footer-contact-divider {
  width: 1px;
  min-height: 44px;
  display: block;
  background: rgba(255, 255, 255, 0.11);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #98a2b3;
  font-size: 0.75rem;
}

.cookie-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  align-items: end;
  padding: 22px;
  background: rgba(5, 10, 18, 0.52);
  backdrop-filter: blur(4px);
}

.cookie-dialog {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid #e1d7cc;
  border-radius: 22px;
  background: #fffdf9;
  box-shadow: var(--shadow-lg);
}

.cookie-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cookie-dialog p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cookie-dialog a {
  color: var(--coral-dark);
  font-weight: 700;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.cookie-actions .button {
  width: 100%;
}

.cookie-settings-toggle {
  margin-top: 14px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: underline;
}

.cookie-settings-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f2eb;
}

.cookie-setting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cookie-setting + .cookie-setting {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cookie-setting strong,
.cookie-setting span {
  display: block;
}

.cookie-setting span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.switch {
  position: relative;
  width: 48px;
  height: 28px;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #98a2b3;
  transition: background 180ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.switch input:checked + .switch-track {
  background: var(--coral);
}

.switch input:checked + .switch-track::after {
  transform: translateX(20px);
}

.switch input:disabled + .switch-track {
  background: var(--ink);
  opacity: 0.7;
}

.switch input:focus-visible + .switch-track {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 0.84rem;
}

.reveal {
  animation: reveal-up 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-delay-1 {
  animation-delay: 80ms;
}

.reveal-delay-2 {
  animation-delay: 150ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ink);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    padding-inline: 16px;
  }

  .nav-links .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 40px;
  }

  .hero-visual {
    min-height: 440px;
  }

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

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

  .customizer-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(160px, 0.75fr));
    gap: 32px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero {
    padding: 70px 0 64px;
  }

  .hero-grid,
  .split-grid,
  .customizer-grid,
  .contact-grid,
  .cta-panel,
  .content-grid,
  .about-hero-grid,
  .about-intro-grid,
  .about-process-grid,
  .contact-next-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-hero,
  .contact-hero {
    padding: 68px 0 72px;
  }

  .about-hero-grid {
    gap: 54px;
  }

  .about-hero-visual {
    max-width: 620px;
    padding-left: 20px;
  }

  .about-editorial-copy {
    padding-top: 0;
  }

  .principle-grid,
  .contact-route-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-route-card {
    min-height: 0;
  }

  .address-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .address-banner .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-intro {
    max-width: 620px;
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo {
    inset: 30px 18px 0 40px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 74px 0;
  }

  .page-hero {
    padding: 64px 0 54px;
  }

  .side-nav {
    position: static;
  }

  .preview-panel {
    position: static;
  }

  .cta-panel .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-links {
    top: 70px;
  }

  .cod-strip .container {
    padding-block: 8px;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .about-hero-visual {
    padding: 8px 0 32px 10px;
  }

  .about-hero-visual::before {
    inset: 0 18px 14px 0;
  }

  .about-visual-note {
    min-width: 210px;
    padding: 14px 16px;
  }

  .contact-email-line {
    border-radius: 18px;
    overflow-wrap: anywhere;
  }

  .address-banner {
    grid-template-columns: minmax(0, 1fr);
    padding: 26px;
  }

  .address-banner .button {
    grid-column: auto;
    width: 100%;
  }

  .about-process-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-photo {
    inset: 20px 0 0 22px;
    border-width: 8px;
  }

  .floating-card {
    max-width: 172px;
    padding: 13px;
  }

  .floating-card.top {
    right: 0;
  }

  .floating-card.bottom {
    bottom: 0;
  }

  .product-grid,
  .process-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-contact-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
  }

  .footer-contact-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }

  .field-full {
    grid-column: auto;
  }

  .button-row,
  .product-actions {
    width: 100%;
  }

  .button-row .button,
  .product-actions .button {
    flex: 1 1 100%;
  }

  .cookie-layer {
    padding: 10px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-dialog {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

@media (forced-colors: active) {
  .button,
  .product-card,
  .cookie-dialog,
  .info-panel {
    border: 1px solid ButtonText;
  }
}
