* {
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #f2c602;
  --brown: #754616;
  --paper: #f7f4ec;
  --soft: #141414;
  --line: rgba(255,255,255,.18);
  --dark-line: rgba(0,0,0,.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  text-decoration: none;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}

nav a:hover {
  color: var(--yellow);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.kicker,
.section-label {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.055em;
  max-width: 850px;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.045em;
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.lead {
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--white);
}

.portrait {
  margin: 0;
  position: relative;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  border: 1px solid var(--brown);
  z-index: -1;
}

.portrait img,
.portrait-placeholder {
  width: 100%;
  height: min(72vh, 720px);
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(8%) contrast(1.03);
}

.portrait-placeholder {
  border: 1px dashed var(--line);
  color: rgba(255,255,255,.6);
  display: grid;
  place-items: center;
}

.about,
.thinking,
.services,
.pricing,
.contact {
  padding: 120px 0;
}

.about {
  background: var(--paper);
  color: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.about .section-label {
  color: var(--brown);
}

.article-text {
  max-width: 760px;
}

.article-text p {
  margin: 0 0 28px;
  font-size: clamp(1.12rem, 1.65vw, 1.55rem);
  line-height: 1.75;
  color: rgba(0,0,0,.78);
}

.manifesto {
  background: var(--black);
  color: var(--white);
  padding: 86px 0;
}

.quote-row {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.quote-row:last-child {
  border-bottom: 1px solid var(--line);
}

.quote-row span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  margin-bottom: 12px;
}

.quote-row strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 700;
  color: var(--white);
}

.continuation {
  padding-top: 110px;
}

.thinking {
  background: var(--black);
}

.thinking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 40px;
}

.thinking-grid div {
  border-top: 2px solid var(--brown);
  padding-top: 28px;
}

.thinking-grid p,
.contact-card p,
.pricing p {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
}

.services {
  background: var(--white);
  color: var(--black);
}

.services .section-label {
  color: var(--brown);
}

.service-list {
  margin-top: 46px;
  border-top: 1px solid var(--dark-line);
}

details {
  border-bottom: 1px solid var(--dark-line);
  padding: 26px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

summary::after {
  content: "→";
  color: var(--brown);
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  transform: translateY(.35em);
}

details[open] summary::after {
  content: "↓";
}

details p {
  max-width: 720px;
  color: rgba(0,0,0,.68);
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.pricing {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.pricing article {
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 260px;
}

.pricing .highlight {
  border-color: var(--yellow);
}

.price {
  color: var(--yellow) !important;
  font-weight: 800;
  margin: 22px 0 10px;
}

.contact {
  background: var(--paper);
  color: var(--black);
}

.contact .section-label {
  color: var(--brown);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--dark-line);
  padding: 34px;
}

.contact-card p {
  color: rgba(0,0,0,.68);
  margin-top: 0;
}

.contact-card a,
.contact-card span {
  display: block;
  font-size: 1.15rem;
  margin-top: 16px;
  color: var(--black);
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .thinking-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portrait::before {
    display: none;
  }

  .portrait img,
  .portrait-placeholder {
    height: 520px;
    min-height: 420px;
  }

  .about,
  .thinking,
  .services,
  .pricing,
  .contact {
    padding: 86px 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 3.2rem;
  }

  .portrait img,
  .portrait-placeholder {
    height: 430px;
    min-height: 360px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .pricing article,
  .contact-card {
    padding: 24px;
  }
}


.pricing h2,
.single-prices h2 {
  max-width: 780px;
}

.pricing-intro {
  max-width: 760px;
  color: rgba(255,255,255,.66);
  font-size: 1.08rem;
  margin: 22px 0 0;
}

.pricing-intro.dark {
  color: rgba(0,0,0,.62);
}

.pricing-grid.detailed article {
  min-height: auto;
}

.package-purpose {
  min-height: 88px;
}

.pricing article ul {
  margin: 26px 0 0;
  padding-left: 18px;
}

.pricing article li {
  color: rgba(255,255,255,.68);
  margin: 12px 0;
}

.single-prices {
  background: var(--white);
  color: var(--black);
  padding: 120px 0;
}

.single-prices .section-label {
  color: var(--brown);
}

.price-list {
  margin-top: 46px;
  border-top: 1px solid var(--dark-line);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--dark-line);
  align-items: baseline;
}

.price-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.price-list span {
  color: var(--brown);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .package-purpose {
    min-height: auto;
  }

  .price-list div {
    flex-direction: column;
    gap: 8px;
  }

  .price-list span {
    white-space: normal;
  }
}
