*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --paper: #f2eee8;
  --paper-dark: #e5dccf;
  --ink: #171717;
  --soft-ink: #2c2b28;
  --muted: #746f67;
  --bronze: #7a5c43;
  --line: rgba(23, 23, 23, 0.12);
  --card: rgba(255, 250, 244, 0.42);
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 8%, rgba(122, 92, 67, 0.10), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--paper-dark));
  color: var(--ink);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.container {
  width: 100%;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header */

.header {
  width: 100%;
}

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

.brand {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  transition: color 0.25s ease;
}

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

/* Hero */

.hero {
  width: 100%;
}

.hero__inner {
  min-height: calc(100svh - 92px);
  padding-top: 24px;
  padding-bottom: clamp(54px, 7vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.hero__copy {
  min-width: 0;
  animation: reveal 0.85s ease both;
}

.kicker {
  max-width: 390px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 16px);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: clamp(26px, 3vw, 36px);
  font-family: Commissioner, Manrope, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.052em;
  font-weight: 600;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: clamp(32px, 4vw, 44px);
  font-family: Commissioner, Manrope, sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.052em;
  font-weight: 500;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button:hover {
  transform: translateY(-2px);
}

.hero__photo-wrap {
  min-width: 0;
  width: 100%;
  height: min(78svh, 760px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  animation: revealImage 1s ease both;
}

.hero__photo {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 30px 60px rgba(23, 23, 23, 0.18));
}

/* Sections */

.section {
  width: 100%;
}

.section__grid {
  padding-top: clamp(82px, 10vw, 140px);
  padding-bottom: clamp(82px, 10vw, 140px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(36px, 7vw, 110px);
}

.section--last .section__grid {
  padding-bottom: clamp(74px, 9vw, 110px);
}

.section__heading {
  min-width: 0;
}

.section__heading span {
  display: block;
  margin-bottom: 22px;
  color: var(--bronze);
  font-size: 14px;
}

h2 {
  margin-bottom: 0;
  font-family: Commissioner, Manrope, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.058em;
  font-weight: 600;
}

.about-text {
  min-width: 0;
  max-width: 760px;
}

.about-text p {
  margin-bottom: 28px;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.45vw, 22px);
}

.about-text .statement {
  margin-top: clamp(40px, 5vw, 56px);
  margin-bottom: 0;
  color: var(--ink);
  font-family: Commissioner, Manrope, sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.13;
  letter-spacing: -0.052em;
  font-weight: 500;
}

/* Reviews */

.reviews {
  min-width: 0;
}

.reviews__intro {
  max-width: 680px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: clamp(20px, 1.85vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.reviews__list {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.review {
  min-width: 0;
  padding: clamp(26px, 3vw, 42px);
  background: var(--card);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.review p {
  max-width: 900px;
  margin-bottom: 30px;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.58;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--soft-ink);
  overflow-wrap: anywhere;
}

.review strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.review span {
  display: block;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  color: var(--muted);
  font-size: 15px;
}

/* Contacts */

.contacts-wrap {
  min-width: 0;
  width: 100%;
}

.contacts {
  width: 100%;
  min-width: 0;
  border-top: 1px solid var(--line);
}

.contacts a {
  min-width: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(105px, 150px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  transition: padding-left 0.25s ease;
}

.contacts a:hover {
  padding-left: 10px;
}

.contacts span {
  color: var(--muted);
  font-size: 15px;
}

.contacts strong {
  min-width: 0;
  font-family: Commissioner, Manrope, sans-serif;
  font-size: clamp(20px, 2.15vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* Footer */

.footer {
  width: 100%;
}

.footer__inner {
  padding-top: 34px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@keyframes reveal {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes revealImage {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: scale(0.99);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@media (max-width: 1020px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero__copy {
    order: 2;
  }

  .hero__photo-wrap {
    order: 1;
    height: min(62svh, 640px);
    justify-content: flex-end;
  }

  .section__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 18px;
  }

  .header__inner {
    min-height: 76px;
  }

  .brand {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .nav {
    display: none;
  }

  .hero__inner {
    padding-top: 10px;
    padding-bottom: 64px;
    gap: 30px;
  }

  .hero__photo-wrap {
    height: auto;
    max-height: none;
    align-items: center;
    justify-content: center;
  }

  .hero__photo {
    width: 100%;
    height: auto;
    max-height: none;
    object-position: center bottom;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .hero__lead {
    font-size: clamp(26px, 8vw, 32px);
  }

  .hero__links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }

  .section__grid {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .about-text .statement {
    font-size: clamp(25px, 8vw, 31px);
  }

  .review p {
  max-width: 900px;
  margin-bottom: 30px;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.58;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--soft-ink);
  overflow-wrap: anywhere;
}

  .contacts a {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 18px 0;
  }

  .contacts strong {
    font-size: clamp(24px, 7vw, 32px);
  }

  .footer__inner {
    flex-direction: column;
  }
}


/* Final mobile hero polish */
@media (max-width: 720px) {
  .hero__inner {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 56px;
    gap: 20px;
  }

  .hero__copy {
    order: 1;
  }

  .hero__photo-wrap {
    order: 2;
    height: 46svh;
    min-height: 330px;
    max-height: 430px;
    align-items: flex-end;
    justify-content: center;
  }

  .hero__photo {
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .kicker {
    margin-bottom: 14px;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.35;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 10.5vw, 43px);
    line-height: 1.02;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1.12;
  }

  .hero__links {
    order: 3;
    margin-top: 2px;
  }
}

/* Removed contacts section cleanup */
.contacts-wrap,
.contacts,
.contact-form {
  display: none;
}


/* Mobile order: photo, name, role, slogan, contacts */
@media (max-width: 720px) {
  .hero__inner {
    padding-top: 6px;
    gap: 22px;
  }

  .hero__photo-wrap {
    order: 1;
    height: 54svh;
    min-height: 390px;
    max-height: 520px;
    align-items: flex-end;
    justify-content: center;
  }

  .hero__photo {
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__copy {
    order: 2;
    display: flex;
    flex-direction: column;
  }

  .hero__copy h1 {
    order: 1;
    margin-bottom: 10px;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.02;
  }

  .hero__copy .kicker {
    order: 2;
    margin-bottom: 22px;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero__copy .hero__lead {
    order: 3;
    margin-bottom: 24px;
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.13;
  }

  .hero__copy .hero__links {
    order: 4;
  }
}

/* Final CTA */
.final-cta {
  width: 100%;
}

.final-cta__inner {
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(66px, 9vw, 110px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-cta a {
  display: inline-block;
  max-width: 760px;
  font-family: Commissioner, Manrope, sans-serif;
  font-size: clamp(30px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.final-cta a:hover {
  opacity: .72;
}

@media (max-width: 720px) {
  .final-cta__inner {
    text-align: left;
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .final-cta a {
    font-size: clamp(30px, 10vw, 42px);
  }
}
