:root {
  --text: #191918;
  --muted: #656560;
  --line: #deded8;
  --soft: #f4f4ef;
  --white: #ffffff;
  --orange: #ff5b35;
  --orange-dark: #cf3618;
  --yellow: #ffcf33;
  --page: min(1180px, calc(100vw - 64px));
  --sans: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; width: 100%; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--yellow);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: var(--page);
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
}
.brand b { color: var(--orange); font-size: 1.5em; }
nav { display: flex; gap: clamp(1rem, 3vw, 2.6rem); }
nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
nav a:hover,
nav a:focus-visible { color: var(--orange-dark); }

.hero {
  position: relative;
  width: var(--page);
  min-height: 670px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.kicker {
  margin: 0 0 1.1rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 6.6vw, 6.2rem);
}
h1 span,
.statement h2 span {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
h1 span::after,
.statement h2 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.2em;
  background: var(--yellow);
  transform: rotate(-1deg);
}
.intro {
  max-width: 680px;
  margin: 2rem 0 1.8rem;
  color: #454541;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}
.primary-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.15rem;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}
.primary-link:hover,
.primary-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  background: var(--white);
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.detail-grid { position: relative; min-height: 430px; }
.detail {
  position: absolute;
  margin: 0;
  background: var(--white);
  border: 8px solid var(--white);
  box-shadow: 0 14px 40px rgba(25, 25, 24, 0.13);
}
.detail img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03) brightness(1.06);
}
.detail figcaption {
  position: absolute;
  right: -8px;
  bottom: -35px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.detail-a {
  top: 6px;
  left: 0;
  width: 48%;
  height: 245px;
  transform: rotate(-2.5deg);
}
.detail-a img { object-position: 58% 50%; }
.detail-b {
  top: 52px;
  right: 0;
  width: 45%;
  height: 205px;
  transform: rotate(2.2deg);
}
.detail-b img { object-position: 52% 50%; }
.detail-c {
  left: 22%;
  bottom: 0;
  width: 51%;
  height: 180px;
  transform: rotate(1deg);
}
.detail-c img { object-position: 30% 40%; }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 2rem;
  margin: 0;
  padding: 0.35rem 0.6rem;
  background: var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
  transform: rotate(-1.2deg);
}

.benefits {
  padding: clamp(5rem, 9vw, 8rem) max(32px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}
.section-heading { max-width: 750px; }
.section-heading h2,
.statement h2,
.about h2,
.contact h2 { font-size: clamp(2.7rem, 5vw, 4.9rem); }
.benefit-grid {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card {
  min-height: 310px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}
.benefit-card.featured {
  border-top: 8px solid var(--yellow);
  padding-top: calc(clamp(1.5rem, 3vw, 2.5rem) - 7px);
}
.number { color: var(--orange-dark); font-size: 0.82rem; font-weight: 800; }
.benefit-card h3 {
  margin-top: auto;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}
.benefit-card p { margin: 1rem 0 0; color: var(--muted); }

.story {
  padding: clamp(5rem, 10vw, 9rem) max(32px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 240px minmax(0, 800px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: #fff7e8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-badge {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--orange);
  color: var(--white);
  transform: rotate(-3deg);
}
.story-badge strong {
  font-size: 6rem;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.story-badge span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.story-content { max-width: 800px; }
.story-content h2 { font-size: clamp(2.6rem, 4.8vw, 4.8rem); }
.story-content > p:not(.kicker) {
  max-width: 680px;
  color: #454541;
  font-size: 1.05rem;
}
.story-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 0 1.2rem 1.5rem;
  border-left: 7px solid var(--yellow);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.story-content .story-end {
  color: var(--text);
  font-weight: 650;
}
.story-content .story-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 650;
}

.statement {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}
.statement-copy > p {
  max-width: 560px;
  margin: 0;
  color: #454541;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.6;
}
.statement ul {
  margin: 2rem 0 0;
  padding: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  border-top: 1px solid var(--line);
  list-style: none;
}
.statement li {
  padding: 0.35rem 0.7rem;
  background: var(--soft);
  color: #494945;
  font-size: 0.86rem;
  font-weight: 700;
}

.about {
  padding: clamp(5rem, 10vw, 9rem) max(32px, calc((100vw - 1180px) / 2));
  background: var(--yellow);
}
.about-label {
  margin: 0 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about h2 { max-width: 900px; }
.about > p:not(.about-label) {
  max-width: 690px;
  margin: 2rem 0 1rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}
.about > span { color: #4a3b00; font-size: 0.9rem; font-weight: 700; }

.contact {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}
.contact p:not(.kicker) { margin: 1rem 0 0; color: var(--muted); font-size: 1.15rem; }
.contact-link { flex: 0 0 auto; }
.site-footer {
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.footer-links a {
  color: inherit;
  text-underline-offset: 0.2em;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--orange-dark); }

@media (max-width: 900px) {
  :root { --page: min(100% - 40px, 720px); }
  .hero { grid-template-columns: 1fr; }
  .detail-grid { width: min(100%, 520px); }
  .hero-note { bottom: 1.2rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 230px; }
  .story { grid-template-columns: 1fr; }
  .story-badge { width: 160px; height: 160px; }
  .story-badge strong { font-size: 4.8rem; }
  .statement { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 32px); }
  .site-header { height: 74px; }
  nav { display: none; }
  .hero { min-height: auto; padding-top: 3.5rem; gap: 2.8rem; }
  h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  h1 span,
  .statement h2 span { white-space: normal; }
  .detail-grid { min-height: 350px; }
  .detail-a { height: 205px; }
  .detail-b { height: 170px; }
  .detail-c { height: 150px; }
  .hero-note { right: auto; left: 0; }
  .benefits,
  .story,
  .about { padding-right: 20px; padding-left: 20px; }
  .contact { align-items: stretch; flex-direction: column; }
  .contact-link { align-self: flex-start; }
  .site-footer { padding: 1.5rem 0; align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .footer-links { flex-wrap: wrap; gap: 0.7rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .primary-link,
  .contact-link { transition: none; }
}
