:root {
  --ink: #0d121c;
  --navy: #1b263b;
  --navy-soft: #708090;
  --ivory: #f1f2dd;
  --paper: #f8f8f1;
  --muted: rgba(27, 38, 59, 0.66);
  --line: rgba(27, 38, 59, 0.12);
  --accent: #c9cf6a;
  --accent-soft: rgba(201, 207, 106, 0.28);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 18px 40px rgba(13, 18, 28, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 20px;
}

.hero,
.card,
.signature,
footer {
  border-radius: var(--radius-xl);
}

.hero {
  padding: 34px;
  background: linear-gradient(180deg, #fbfbf6 0%, #f6f6ee 100%);
  border: 1px solid rgba(27, 38, 59, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-header {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.hero-logo {
  width: min(420px, 72vw);
  height: auto;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 18px 6px 8px;
}

.eyebrow,
.card-kicker,
.intro-kicker {
  margin: 0 0 16px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: "Poppins", system-ui, sans-serif;
  color: rgba(27, 38, 59, 0.58);
}

.hero h1,
.intro-text,
.card h2,
.modal h2,
.signature p {
  font-family: "Poppins", system-ui, sans-serif;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3rem, 6.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  font-weight: 300;
  font-style: italic;
}

.hero-subtitle {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: rgba(27, 38, 59, 0.72);
  text-decoration: none;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.95rem;
}

.profile-link-icon,
.chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--navy);
  flex-shrink: 0;
}

.profile-link-icon svg,
.chip-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 18px 36px rgba(13, 18, 28, 0.1);
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-light { background: var(--ivory); color: var(--ink); }
.button-light:hover { background: #f6f6ec; }
.button-outline-light { border-color: rgba(241, 242, 221, 0.4); color: var(--paper); background: transparent; }
.button-outline-light:hover { border-color: var(--accent); color: var(--paper); }
.button-dark { background: var(--navy); color: var(--paper); }
.button-dark:hover { background: var(--ink); }
.button-outline-dark { border-color: rgba(27, 38, 59, 0.18); color: var(--navy); background: transparent; }
.button-outline-dark:hover { border-color: var(--accent); background: rgba(201, 207, 106, 0.08); }
.full { width: 100%; }

.intro {
  padding: 72px 20px 64px;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.7fr);
  gap: 48px;
  align-items: start;
}

.intro-kicker {
  color: rgba(27, 38, 59, 0.54);
  margin-top: 10px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.intro-text {
  margin: 0;
  max-width: 820px;
  font-size: clamp(1.8rem, 3.4vw, 3.45rem);
  line-height: 1.17;
  letter-spacing: -0.045em;
  font-weight: 300;
}

.inline-highlight {
  display: inline-block;
  padding: 0 0.18em;
  border-radius: 0.28em;
  background: linear-gradient(transparent 35%, var(--accent-soft) 35%);
}

.inline-highlight strong {
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  min-height: 580px;
  padding: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.consultation {
  background: var(--ivory);
  color: var(--navy);
  display: flex;
  flex-direction: column;
}

.card-index {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(27, 38, 59, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.card-content {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.card h2 {
  margin: 0 0 16px;
  font-size: clamp(2.45rem, 5.4vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.card p:not(.card-kicker) {
  margin: 0;
  max-width: 510px;
  line-height: 1.75;
  font-size: 1rem;
}

.consultation .button {
  margin-top: 34px;
  width: fit-content;
}

.kitchen {
  background: var(--navy);
  color: var(--paper);
}

.kitchen h2 span {
  display: block;
}

.kitchen-title {
  max-width: 520px;
}

.kitchen-copy p:not(.card-kicker) {
  color: rgba(249, 249, 240, 0.78);
}

.kitchen-media {
  margin: 24px 0 0;
}

.kitchen-media img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.plan-buttons {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 400px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  text-underline-offset: 4px;
}

.light-link {
  color: rgba(249, 249, 240, 0.78);
}

.signature {
  margin: 18px 0;
  min-height: 240px;
  border: 1px solid var(--line);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: #fbfbf5;
}

.signature-mark-wrap {
  width: 180px;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-mark-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

.signature p {
  margin: 0;
  text-align: right;
  font-size: clamp(1.6rem, 3.2vw, 3.05rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 300;
}

.signature strong {
  font-weight: 700;
}

footer {
  margin-top: 18px;
  background: var(--ink);
  color: var(--paper);
  padding: 40px 28px 32px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-chip {
  min-width: 220px;
  border: 1px solid rgba(249, 249, 240, 0.14);
  border-radius: 999px;
  padding: 10px 20px 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: rgba(249, 249, 240, 0.02);
}

.contact-chip:hover {
  border-color: rgba(201, 207, 106, 0.48);
}

.legal {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(249, 249, 240, 0.58);
}

.modal {
  width: min(92vw, 620px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 28px;
  color: var(--navy);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(13, 18, 28, 0.3);
}

.modal::backdrop { background: rgba(13, 18, 28, 0.72); backdrop-filter: blur(4px); }
.modal-inner { position: relative; padding: 36px; }
.modal-close {
  position: absolute;
  right: 24px;
  top: 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 2rem;
  cursor: pointer;
}

.modal h2 {
  margin: 0;
  max-width: 440px;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.modal-intro { margin: 16px 0 28px; line-height: 1.6; color: var(--muted); }
form { display: grid; gap: 18px; }
form > label, fieldset { display: grid; gap: 8px; font-size: 0.78rem; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--navy);
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27, 38, 59, 0.08); }
textarea { resize: vertical; min-height: 110px; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { margin-bottom: 10px; }
.choice { display: flex; align-items: center; gap: 9px; font-weight: 500; }
.choice input { width: auto; }
.hidden-field { position: absolute; left: -9999px; }
.form-note { margin: -5px 0 0; font-size: 0.7rem; color: var(--muted); text-align: center; }

@media (max-width: 980px) {
  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-visual img {
    max-width: 100%;
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 60px;
  }

  .intro-kicker {
    white-space: normal;
  }

  .signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .signature p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-shell { padding: 10px; }
  .hero { padding: 22px; border-radius: 26px; }
  .hero-logo { width: min(280px, 70vw); }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero-subtitle { margin-top: 16px; font-size: 0.98rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .profile-link { margin-top: 16px; }
  .intro { padding: 54px 8px; }
  .intro-kicker { font-size: 0.82rem; }
  .intro-text { font-size: clamp(1.7rem, 8vw, 2.55rem); }
  .card,
  .signature,
  footer { border-radius: 26px; }
  .card { min-height: auto; padding: 24px; }
  .consultation .button { width: 100%; }
  .kitchen-media img { max-width: 100%; }

  .kitchen-title {
    font-size: clamp(2.55rem, 12.5vw, 3.85rem);
    line-height: 1.02;
  }
  .signature {
    padding: 30px 24px;
    align-items: center;
    gap: 24px;
  }
  .signature-mark-wrap {
    width: 104px;
    min-width: 104px;
  }
  .signature p {
    width: 100%;
    text-align: left;
  }
  .contact-chip { min-width: 100%; }
  footer { padding: 34px 22px 28px; }
  .modal-inner { padding: 34px 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
