:root {
  --bg: #f6f3ec;
  --card: #fffcf7;
  --ink: #1a2430;
  --mid: #5b6673;
  --line: #e4ddd0;
  --blue: #1d6aa8;
  --green: #2b9a5b;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  overflow: visible;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 252, 247, 0.96);
}

.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  margin-right: auto;
}

.brand img {
  height: 92px;
  width: auto;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 0;
}

.btn:hover {
  background: var(--green);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-line:hover {
  background: var(--card);
  color: var(--ink);
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu span {
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.hero {
  padding: 72px 0 24px;
  text-align: center;
}

.hero-inner {
  max-width: 740px;
}

.kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.lead {
  color: var(--mid);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-shot {
  border-radius: 20px;
  overflow: hidden;
  max-height: 420px;
}

.hero-shot img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: #efeae0;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.intro p {
  color: var(--mid);
}

.intro.single {
  grid-template-columns: 1fr;
  text-align: center;
  margin-bottom: 28px;
}

.intro.single p {
  margin-top: 10px;
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.tile p,
.shot-card p {
  color: var(--mid);
  font-size: 0.95rem;
}

.shot-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.shot-card div {
  padding: 18px 18px 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.shot-round {
  border-radius: 20px;
  overflow: hidden;
}

.shot-round img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.checks {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.checks li {
  color: var(--mid);
  padding-left: 16px;
  border-left: 3px solid var(--green);
}

.checks strong {
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.steps p {
  color: var(--mid);
  font-size: 0.94rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item button span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
}

.faq-item.is-open button span {
  transform: rotate(225deg);
}

.faq-item p {
  display: none;
  padding: 0 18px 16px;
  color: var(--mid);
}

.faq-item.is-open p {
  display: block;
}

.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 8px;
}

.form-box iframe {
  display: block;
  width: 100%;
  height: 1140px;
  min-height: 1140px;
  border: 0;
}

.footer {
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  height: 56px;
  width: auto;
}

.footer-brand p,
.footer-copy,
.footer nav a {
  color: var(--mid);
  font-size: 0.9rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer nav a:hover,
.footer-brand a:hover {
  color: var(--blue);
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }

@media (max-width: 980px) {
  .menu {
    display: flex;
  }

  .header .btn {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 20px;
    right: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 8px;
  }

  .intro,
  .grid-4,
  .grid-3,
  .split,
  .split.reverse,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-shot img,
  .shot-round img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .narrow {
    width: min(1080px, calc(100% - 28px));
  }

  .hero,
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .brand img {
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
