
:root {
  --navy: #132A44;
  --slate: #52667A;
  --dusty: #7D92A6;
  --sand: #E6D6BF;
  --off-white: #FAF7F2;
  --white: #ffffff;
  --ink: var(--navy);
  --ink-soft: var(--slate);
  --paper: var(--off-white);
  --paper-deep: #f2eadf;
  --sun: var(--sand);
  --coral: var(--dusty);
  --sky: #dce5ec;
  --line: rgba(19, 42, 68, 0.16);
  --shadow: 0 18px 50px rgba(19, 42, 68, 0.13);
  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 49, 45, 0.08);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 174px;
  height: auto;
  object-fit: contain;
}
.footer-brand img { width: 210px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}
.nav-links a:hover { color: var(--dusty); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23,49,45,.12); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); border-color: transparent; }
.btn-ghost { background: transparent; }

.hero {
  padding: 76px 0 48px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--dusty);
}
h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.2rem); margin-bottom: 26px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 22px; }
h3 { font-size: 1.45rem; margin-bottom: 10px; }
.hero-copy {
  max-width: 610px;
  font-size: 1.18rem;
  color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.hero-art {
  position: relative;
  min-height: 610px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { height: 100%; object-fit: cover; }
.hero-photo.one {
  inset: 0 10% 12% 8%;
  border-radius: 180px 180px 38px 38px;
}
.hero-photo.two {
  width: 42%;
  height: 39%;
  right: 0;
  bottom: 0;
  border: 9px solid var(--paper);
  border-radius: 50% 50% 24px 24px;
}
.stamp {
  position: absolute;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  left: -10px;
  bottom: 62px;
  border: 2px solid var(--dusty);
  border-radius: 50%;
  color: var(--dusty);
  background: var(--paper);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-align: center;
  transform: rotate(-9deg);
}

.section { padding: 92px 0; }
.section-soft { background: var(--paper-deep); }
.section-dark { background: var(--ink); color: var(--white); }
.section-intro { max-width: 760px; margin-bottom: 42px; }
.section-intro p { color: var(--ink-soft); font-size: 1.1rem; }
.section-dark .section-intro p { color: rgba(255,255,255,.74); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(23,49,45,.08);
}
.card-image { aspect-ratio: 4 / 3; overflow: hidden; }
.card-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-image img { transform: scale(1.035); }
.card-body { padding: 26px; }
.card-body p { color: var(--ink-soft); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame img { aspect-ratio: 4 / 4.2; object-fit: cover; }
.kicker-list { display: grid; gap: 20px; margin: 30px 0; }
.kicker {
  padding-left: 22px;
  border-left: 3px solid var(--sun);
}
.kicker strong { display: block; font-size: 1.05rem; }

.quote-band {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}
.quote-band p {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: -.04em;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--sky);
}
.cta p { max-width: 650px; margin-bottom: 0; color: var(--ink-soft); }

.page-hero { padding: 90px 0 54px; }
.page-hero p { max-width: 720px; font-size: 1.16rem; color: var(--ink-soft); }

.form {
  display: grid;
  gap: 16px;
  max-width: 760px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  color: var(--ink);
}
textarea { min-height: 150px; resize: vertical; }
.notice {
  padding: 16px 18px;
  border: 1px dashed var(--coral);
  border-radius: 12px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.35);
}

.site-footer {
  padding: 56px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration: none; color: var(--ink-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--ink-soft);
}

@media (max-width: 840px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .cta, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-art { min-height: 500px; }
  .cards { grid-template-columns: 1fr; }
  .cta { padding: 34px; }
}
@media (max-width: 560px) {
  h1 { font-size: 3.7rem; }
  .section { padding: 68px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-art { min-height: 420px; }
  .hero-photo.one { inset: 0 4% 10% 0; }
  .hero-photo.two { width: 48%; height: 36%; }
  .stamp { width: 94px; height: 94px; font-size: .58rem; }
  .footer-bottom { flex-direction: column; }
}

.brand-note {
  margin-top: 18px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 800;
}
.movement-line {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--slate);
}
.stamp-image {
  position: absolute;
  left: -24px;
  bottom: 50px;
  width: 145px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 10px 20px rgba(19,42,68,.14));
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(19,42,68,.14);
  border: 1px solid rgba(19,42,68,.14);
  border-radius: 28px;
  overflow: hidden;
}
.value {
  padding: 34px;
  background: var(--off-white);
}
.value strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
@media (max-width: 840px) {
  .value-grid { grid-template-columns: 1fr; }
}
