:root {
  --bg: #ffffff;
  --surface: #f5f7f6;
  --surface-strong: #e7ece9;
  --ink: #1f2a33;
  --muted: #5f6f77;
  --line: #d9e0de;
  --navy: #102f46;
  --green: #1f5c4f;
  --teal: #0c6b74;
  --terracotta: #b7613d;
  --terracotta-dark: #93492e;
  --shadow: 0 18px 46px rgba(20, 48, 64, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 3.1vw, 3.45rem);
  max-width: 860px;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.32rem, 1.8vw, 1.95rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
}

p {
  color: var(--muted);
}

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

.narrow {
  width: min(calc(100% - 40px), 920px);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.6rem 0.85rem;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--navy);
  text-decoration: none;
  min-width: 230px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
  margin-top: 0.12rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
}

.primary-nav a,
.language-switcher a {
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
}

.primary-nav a {
  padding: 0.62rem 0.72rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--navy);
  background: var(--surface);
}

.language-switcher {
  display: inline-flex;
  gap: 0.22rem;
  padding: 0.22rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher a {
  min-width: 38px;
  padding: 0.42rem 0.5rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.language-switcher a.is-active {
  color: #fff;
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.section,
.page-intro,
.hero {
  padding: 70px 0;
}

.section-band {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 246, 0.88) 48%, rgba(231, 242, 239, 0.84) 100%);
}

.muted {
  background: var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: clamp(2rem, 4vw, 4.2rem);
  align-items: center;
}

.hero-copy,
.hero-media,
.split > *,
.card-grid > *,
.commodity-grid > *,
.value-list > * {
  min-width: 0;
}

.page-home h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 3.35vw, 3.7rem);
}

.hero-copy p {
  max-width: 680px;
  font-size: 1.04rem;
}

.hero-media {
  margin: 0;
  padding: 0;
}

.hero-media img {
  width: 100%;
  filter: drop-shadow(0 24px 38px rgba(16, 47, 70, 0.16));
}

.photo-frame,
.section-photo,
.contact-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-frame img,
.section-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-photo {
  aspect-ratio: 4 / 3;
  min-height: 330px;
}

.hero-photo-stack {
  position: relative;
  min-height: 430px;
}

.hero-photo-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 47, 70, 0.78));
  pointer-events: none;
}

.hero-photo-stack figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff;
}

.hero-photo-stack figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: #dce9e7;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo-stack figcaption strong {
  display: block;
  max-width: 430px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-points {
  display: grid;
  gap: 0.6rem;
  max-width: 620px;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
}

.hero-points .mini-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
}

.hero-points .mini-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-section {
  padding: 54px 0 0;
}

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

.section-photo {
  aspect-ratio: 16 / 9;
}

.wide-photo {
  margin: 0 0 1.4rem;
  aspect-ratio: 16 / 6;
  box-shadow: none;
}

.contact-photo {
  margin: 0 0 1.15rem;
  aspect-ratio: 16 / 10;
  box-shadow: none;
}

.eyebrow,
.section-kicker,
.section-heading span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.section-heading span::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
  background: var(--terracotta);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  color: #fff;
  background: var(--navy);
}

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

.button.secondary:hover {
  color: var(--navy);
  border-color: var(--green);
}

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

.home-cards .feature-card {
  min-height: 235px;
}

.home-split-photo {
  aspect-ratio: 16 / 11;
}

.compact-list {
  margin-top: 1.2rem;
}

.compact-list li {
  padding: 0.68rem 0.78rem;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.snapshot-grid .info-card:last-child {
  grid-column: span 4;
}

.info-card,
.feature-card,
.commodity-card,
.contact-card,
.contact-form,
.document-panel,
.notice,
.legal-list article,
.value-list article,
.policy-meta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-card {
  padding: 1.05rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 47, 70, 0.12);
}

.icon-badge svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge.terracotta {
  background: linear-gradient(135deg, var(--terracotta), var(--navy));
}

.icon-badge.navy {
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.info-card .icon-badge,
.legal-list .icon-badge {
  width: 38px;
  height: 38px;
  margin-bottom: 0.85rem;
}

.info-card .icon-badge svg,
.legal-list .icon-badge svg {
  width: 20px;
  height: 20px;
}

.info-card > span:not(.icon-badge),
.legal-list article > span:not(.icon-badge),
.contact-card dt {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-card strong,
.legal-list strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 2.2rem;
  align-items: center;
}

.align-start {
  align-items: start;
}

.split p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.page-intro {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-intro p {
  max-width: 830px;
  font-size: 1.1rem;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 260px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0.82rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.check-list .mini-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 0.05rem;
  color: var(--teal);
  background: #e6f3f1;
  border-radius: 6px;
}

.check-list .mini-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice {
  padding: 1.3rem;
  border-left: 5px solid var(--terracotta);
}

.notice strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.notice p {
  margin-bottom: 0;
}

.commodity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.commodity-card {
  padding: 1.15rem;
  min-height: 410px;
}

.commodity-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 1rem;
  background: var(--surface);
  border-radius: 8px;
}

.commodity-card img.photo-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.commodity-card h2 {
  font-size: 1.14rem;
}

.commodity-card p {
  font-size: 0.96rem;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-list article {
  min-height: 156px;
  padding: 1.2rem;
}

.value-list article:nth-child(3n) .icon-badge {
  background: linear-gradient(135deg, var(--terracotta), var(--navy));
}

.value-list h2 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.legal-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.legal-list {
  display: grid;
  gap: 0.75rem;
}

.legal-list article {
  padding: 1.05rem;
}

.contact-card h2,
.document-panel h2,
.notice strong,
.text-section h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.heading-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  background: #e7f2ef;
  border-radius: 8px;
}

.heading-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.field-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.field-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-panel,
.contact-card,
.contact-form {
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.document-panel img {
  width: min(100%, 280px);
  margin-bottom: 1rem;
}

.document-panel ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

.contact-card dl {
  margin: 0;
}

.contact-card dd {
  margin: 0.24rem 0 1rem;
  color: var(--ink);
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(12, 107, 116, 0.16);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 0.22rem;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  padding: 0.8rem 0.95rem;
  border-radius: 8px;
  font-weight: 700;
}

.form-message[hidden] {
  display: none;
}

.form-message.success {
  color: #134537;
  background: #e6f5ef;
  border: 1px solid #b7dfd0;
}

.form-message.error {
  color: #7b2e22;
  background: #fff0ea;
  border: 1px solid #efc6b9;
}

.legal-document {
  display: grid;
  gap: 1rem;
  max-width: 980px;
}

.policy-meta {
  padding: 1.15rem;
}

.policy-meta dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.policy-meta div {
  min-width: 0;
}

.policy-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.policy-meta dd {
  margin: 0.24rem 0 0;
  overflow-wrap: anywhere;
}

.text-section {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.text-section h2 {
  font-size: 1.28rem;
}

.text-section ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.site-footer {
  color: #dce9e7;
  background: var(--navy);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 0.8rem;
}

.footer-brand p,
.site-footer address {
  color: #b8c9cf;
  margin: 0.35rem 0 0;
  font-style: normal;
}

.site-footer a {
  color: #f4d0bf;
}

.site-footer address {
  display: grid;
  gap: 0.5rem;
}

.footer-meta {
  display: grid;
  gap: 0.18rem;
  margin-top: 0.45rem;
  padding-top: 0.7rem;
  color: #dce9e7;
  font-size: 0.84rem;
  border-top: 1px solid rgba(220, 233, 231, 0.18);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    white-space: normal;
  }

  .language-switcher {
    order: 2;
  }

  .hero-grid,
  .split,
  .legal-grid,
  .contact-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section,
  .page-intro,
  .hero {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 68px;
    gap: 0.6rem;
  }

  .brand {
    min-width: 0;
    gap: 0.55rem;
  }

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

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .language-switcher a {
    min-width: 34px;
  }

  .eyebrow,
  .section-kicker,
  .section-heading span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .eyebrow::before,
  .section-kicker::before,
  .section-heading span::before {
    width: 22px;
  }

  h1 {
    font-size: 2rem;
  }

  .page-home h1 {
    font-size: 2.2rem;
  }

  .hero-copy p {
    max-width: 20rem;
  }

  .snapshot-grid,
  .card-grid.three,
  .check-list,
  .commodity-grid,
  .value-list,
  .policy-meta dl,
  .footer-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .snapshot-grid .info-card:last-child {
    grid-column: auto;
  }

  .feature-card,
  .commodity-card {
    min-height: 0;
  }

  .hero-photo {
    min-height: 260px;
  }

  .hero-photo-stack {
    min-height: 300px;
  }

  .hero-photo-stack figcaption {
    right: 1.6rem;
  }

  .hero-photo-stack figcaption strong {
    max-width: 18rem;
    font-size: 0.95rem;
  }

  .wide-photo {
    aspect-ratio: 16 / 10;
  }

  .footer-grid {
    gap: 1.4rem;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
