@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #161716;
  --muted: #676661;
  --paper: #f3f2ee;
  --panel: #fffefa;
  --soft: #e8e5df;
  --warm: #b49a84;
  --line: rgba(22, 23, 22, 0.14);
  --shadow: 0 18px 48px rgba(22, 23, 22, 0.07);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 254, 250, 0.92), transparent 31%),
    linear-gradient(135deg, #f6f5f1 0%, #eceae4 52%, #f7f4ef 100%);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  line-height: 1.72;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 10px 36px rgba(22, 23, 22, 0.07);
  backdrop-filter: blur(16px);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.86rem;
  font-weight: 400;
}

.site-nav a {
  opacity: 0.86;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-contact {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.section {
  padding: clamp(78px, 10vw, 126px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 88px;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 96vh;
  padding-top: 120px;
  padding-bottom: clamp(62px, 8vw, 98px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
}

.hero .kicker {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  letter-spacing: 0.14em;
  line-height: 1.7;
  white-space: nowrap;
}

.hero-visual {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: clamp(380px, 48vw, 620px);
  background: transparent;
}

.hero-visual img {
  width: min(112%, 720px);
  height: auto;
  display: block;
  opacity: 0.9;
  filter: saturate(0.9) contrast(0.96);
}

.kicker,
.list-label {
  margin: 0 0 16px;
  color: #6d6258;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 300;
}

.hero-subtitle {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(22, 23, 22, 0.68);
  font-size: clamp(1.12rem, 1.82vw, 1.36rem);
  line-height: 1.58;
}

.hero-meta {
  margin: 22px 0 0;
  color: #6d6258;
  font-size: 0.92rem;
  font-weight: 400;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 400;
  line-height: 1.2;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--panel);
  background: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(22, 23, 22, 0.34);
  color: var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.section-grid.reverse {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.compact-copy-grid {
  grid-template-columns: minmax(160px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(18px, 3vw, 44px);
}

.section-side {
  align-self: start;
}

.section-sticky {
  position: sticky;
  top: 116px;
}

.section-side p:not(.kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.18vw, 1.16rem);
}

.offer-jump-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-jump-list a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.28vw, 1.2rem);
  line-height: 1.35;
}

.offer-jump-list a + a {
  border-top: 1px solid var(--line);
}

.offer-jump-list a:hover,
.offer-jump-list a:focus-visible {
  color: var(--warm);
}

.text-flow p {
  margin: 0;
  color: rgba(22, 23, 22, 0.62);
  font-size: clamp(1.05rem, 1.18vw, 1.16rem);
}

.text-flow.larger p {
  font-size: clamp(1.12rem, 1.55vw, 1.26rem);
}

.text-flow p + p,
.text-flow .qualification-block + p {
  margin-top: 18px;
}

.intro-section {
  background: rgba(232, 229, 223, 0.62);
  backdrop-filter: blur(16px);
}

.intro-section .kicker {
  color: #6d6258;
}

.intro-section .text-flow p {
  color: rgba(22, 23, 22, 0.68);
}

.about-section {
  background: rgba(255, 254, 250, 0.7);
  backdrop-filter: blur(16px);
}

.offer-section,
.cost-section {
  background: rgba(243, 242, 238, 0.74);
  backdrop-filter: blur(16px);
}

.offers-stack {
  display: grid;
  gap: 24px;
}

.content-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.86);
  box-shadow: none;
}

.offer-card > .kicker {
  margin-bottom: 10px;
}

.offer-card h3 {
  margin-bottom: 16px;
}

.offer-card > .text-flow p {
  font-size: clamp(1.12rem, 1.55vw, 1.26rem);
  line-height: 1.65;
}

.topic-list,
.qualification-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.topic-list li,
.qualification-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: var(--radius);
  background: rgba(22, 23, 22, 0.055);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
}

.topic-list li::before,
.qualification-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
}

.more-info {
  margin-top: 38px;
  border-top: 1px solid rgba(22, 23, 22, 0.11);
}

.more-info + .more-info {
  margin-top: 26px;
}

.more-info summary {
  padding-top: 20px;
  color: rgba(22, 23, 22, 0.84);
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.more-info summary::-webkit-details-marker {
  display: none;
}

.more-info summary::after {
  content: " +";
  color: rgba(141, 114, 95, 0.72);
}

.more-info[open] summary::after {
  content: " −";
}

.more-info .text-flow {
  margin-top: 18px;
}

.more-info .text-flow p {
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  line-height: 1.64;
}

.more-info a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.about-photo {
  max-width: 360px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-section .section-grid.reverse > .text-flow {
  padding-top: clamp(118px, 8vw, 154px);
}

.qualification-block {
  margin: 30px 0;
}

.qualification-block .list-label {
  margin-bottom: 12px;
  color: rgba(22, 23, 22, 0.5);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.qualification-list {
  gap: 7px;
  margin-top: 0;
}

.qualification-list li {
  padding: 2px 0 2px 26px;
  border-radius: 0;
  background: transparent;
  color: rgba(22, 23, 22, 0.56);
  font-size: clamp(0.88rem, 1.04vw, 0.98rem);
  font-weight: 400;
  line-height: 1.58;
}

.qualification-list li::before {
  content: "—";
  left: 0;
  top: 2px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: rgba(180, 154, 132, 0.48);
  font-weight: 300;
}

.cost-list {
  display: grid;
  align-content: start;
}

.cost-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cost-row:first-child {
  border-top: 1px solid var(--line);
}

.cost-row span {
  color: var(--ink);
  font-weight: 400;
}

.cost-row strong {
  color: var(--ink);
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 300;
  white-space: nowrap;
}

.cost-price {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.cost-price small {
  color: rgba(22, 23, 22, 0.54);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.35;
}

.cost-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--warm);
  background: rgba(255, 254, 250, 0.64);
  color: var(--muted);
}

.cost-note p {
  margin: 0;
}

.cost-note p + p {
  margin-top: 8px;
}

.contact-section {
  background: rgba(255, 254, 250, 0.78);
  backdrop-filter: blur(16px);
}

.contact-inner {
  display: grid;
  justify-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.contact-inner p:not(.kicker) {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.18vw, 1.16rem);
}

.contact-inner .button {
  margin-top: 34px;
}

.contact-frame {
  color: var(--ink) !important;
  font-weight: 400;
}

.contact-disclaimer {
  width: 100%;
  margin-top: 50px;
  padding: 18px 20px;
  border-left: 4px solid rgba(22, 23, 22, 0.28);
  background: rgba(22, 23, 22, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-disclaimer p {
  margin: 0;
}

.contact-disclaimer p + p {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 400;
}

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: clamp(36px, 6vw, 72px);
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-section {
  padding-top: 0;
  background: rgba(243, 242, 238, 0.72);
  backdrop-filter: blur(16px);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.legal-block + .legal-block {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block p {
  margin: 0;
}

.legal-block p + p,
.legal-block ul + p {
  margin-top: 12px;
}

.legal-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-block a {
  color: var(--ink);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: rgba(22, 23, 22, 0.06);
  }

  .nav-contact {
    border-radius: var(--radius);
  }

  .section-grid,
  .section-grid.reverse,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-grid,
  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-grid {
    gap: 24px;
    margin: 0;
  }

  .hero .kicker {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero .kicker .nowrap {
    display: block;
    white-space: normal;
  }

  .hero h1,
  .hero-subtitle,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-visual {
    width: min(100%, 360px);
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
    order: -1;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
  }

  .about-section .section-grid.reverse > .text-flow {
    padding-top: 0;
  }

  .section-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 72px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero .kicker {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero .kicker .nowrap {
    display: block;
    white-space: normal;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    gap: 14px;
    margin-top: 34px;
    max-width: 100%;
  }

  .hero-visual {
    width: min(100%, 318px);
    max-width: 100%;
    min-height: 0;
    margin: 0 auto 4px;
  }

  .hero-visual img {
    width: 100%;
    opacity: 0.92;
  }

  .content-panel,
  .contact-disclaimer {
    padding: 24px;
  }

  .cost-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cost-row strong {
    white-space: normal;
  }

  .cost-price {
    justify-items: start;
    text-align: left;
  }

  .button {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }

  .nav-toggle,
  .site-nav a,
  .button,
  .more-info summary {
    cursor: default;
  }
}

@media (hover: none), (pointer: coarse) {
  .nav-toggle,
  .site-nav a,
  .button,
  .more-info summary {
    cursor: default;
  }
}

@media (max-width: 640px) {
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
  }

  .hero.section {
    width: 100%;
    min-height: 100svh;
    padding: 92px 22px 78px;
    overflow-x: hidden;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0;
    margin: 0;
    overflow: hidden;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    max-width: 310px;
    min-height: 0;
    margin: 78px auto 74px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero .kicker {
    width: 100%;
    max-width: 100%;
    margin: 0 0 28px;
    font-size: 0.7rem;
    line-height: 1.75;
    letter-spacing: 0.14em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero .kicker .nowrap {
    display: block;
    white-space: normal;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3rem, 14.5vw, 3.65rem);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 100%;
    margin-top: 34px;
    font-size: 1.18rem;
    line-height: 1.62;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    gap: 14px;
    margin-top: 44px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    white-space: normal;
  }
}
