:root {
  --cream: #f6f1e9;
  --paper: #fffdfa;
  --forest: #24362f;
  --forest-soft: #587066;
  --terracotta: #c96f4a;
  --terracotta-deep: #b95f3d;
  --sage: #9bae9b;
  --sand: #e7d8c8;
  --line: rgba(36, 54, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(155, 174, 155, 0.2), transparent 26rem),
    var(--cream);
  color: var(--forest);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.8vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 233, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 56px;
  height: 54px;
  border: 1.5px solid var(--forest-soft);
  border-radius: 66% 34% 58% 42% / 37% 58% 42% 63%;
  transform: rotate(-9deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 20px;
  height: 34px;
  border: 1.5px solid var(--forest-soft);
  border-radius: 70% 30% 68% 32%;
  content: "";
}

.brand-mark::before {
  top: 15px;
  left: -10px;
  transform: rotate(-34deg);
}

.brand-mark::after {
  top: 19px;
  left: 8px;
  transform: rotate(28deg);
}

.brand-mark span {
  position: absolute;
  top: 19px;
  right: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  font-size: 17px;
}

nav a {
  position: relative;
  padding: 14px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  max-width: 1500px;
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: clamp(46px, 6.2vw, 92px) clamp(24px, 4.8vw, 72px) 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(52px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  animation: rise-in 560ms ease-out both;
}

.eyebrow {
  margin: 0 0 30px;
  color: #71877c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.1vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-primary {
  background: var(--terracotta);
  box-shadow: 0 12px 30px rgba(137, 72, 44, 0.17);
  color: white;
}

.button-primary:hover {
  background: var(--terracotta-deep);
  box-shadow: 0 16px 36px rgba(137, 72, 44, 0.23);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--terracotta);
  font-size: 18px;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 24px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  animation: reveal-in 700ms 100ms ease-out both;
}

.hero-visual::before {
  position: absolute;
  top: -18px;
  right: -28px;
  width: 58%;
  height: 92%;
  border-radius: 58px 0 0 58px;
  background: #b2c1af;
  content: "";
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 0;
  width: calc(100% - 28px);
  height: calc(100% - 92px);
  border-radius: 42px;
  box-shadow: 0 24px 60px rgba(59, 72, 61, 0.12);
  object-fit: cover;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: -110px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
}

.online-note {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 12px;
  display: flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: var(--forest-soft);
  font-size: 15px;
}

.online-note span {
  font-size: 24px;
}

.floating-contact {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: none;
  height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 12px 35px rgba(36, 54, 47, 0.24);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.floating-contact svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-contact .fill-dot {
  fill: currentColor;
  stroke: none;
}

.intro-strip {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 68px);
  padding: 22px clamp(24px, 4.8vw, 72px);
  background: var(--forest);
  color: var(--cream);
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0.025em;
  text-align: center;
}

.intro-strip p {
  margin: 0;
}

.intro-strip span {
  color: var(--terracotta);
}

.section {
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(100px, 10vw, 160px) clamp(24px, 4.8vw, 72px);
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--forest-soft);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--terracotta);
  font-weight: 700;
}

.section-label p {
  margin: 0;
}

.section-kicker {
  margin: 0 0 25px;
  color: #71877c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section h2,
.booking h2 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

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

.about-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(44px, 7vw, 110px);
}

.large-copy {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.7vw, 39px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.about-details {
  color: #495d54;
  font-size: 18px;
  line-height: 1.75;
}

.about-details p {
  margin: 0 0 24px;
}

.facts {
  display: grid;
  margin-top: 78px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.facts div {
  display: flex;
  min-height: 160px;
  padding: 30px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
}

.facts div:first-child {
  padding-left: 0;
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.facts span {
  max-width: 230px;
  color: var(--forest-soft);
  font-size: 14px;
  line-height: 1.45;
}

.topics {
  max-width: none;
  background: var(--forest);
  color: var(--cream);
}

.topics > * {
  width: 100%;
}

.topics-content,
.topics .section-label {
  max-width: 1270px;
}

.section-label-light {
  color: #b8c4ba;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 52px;
  align-items: flex-end;
}

.section-heading-row h2 {
  max-width: 740px;
}

.section-heading-row > p {
  max-width: 410px;
  margin: 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.78;
}

.topic-grid {
  display: grid;
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(3, 1fr);
}

.topic-card {
  min-height: 300px;
  padding: 30px 32px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topic-card > span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
}

.topic-card h3 {
  max-width: 280px;
  margin: 68px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.topic-card p {
  max-width: 310px;
  margin: 0;
  color: #cbd4cd;
  font-size: 15px;
  line-height: 1.6;
}

.approach {
  background:
    radial-gradient(circle at 100% 18%, rgba(155, 174, 155, 0.28), transparent 23rem),
    var(--cream);
}

.steps {
  display: grid;
  margin-top: 76px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.55);
}

.steps article > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.steps h3 {
  margin: 68px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.steps p {
  margin: 0;
  color: #566b61;
  font-size: 16px;
  line-height: 1.65;
}

.format-note {
  display: flex;
  margin-top: 36px;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.format-note p {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.format-note a,
.material-card a,
footer > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.format-note a span,
.material-card a span,
footer > a span {
  color: var(--terracotta);
  transition: transform 180ms ease;
}

.format-note a:hover span,
.material-card a:hover span,
footer > a:hover span {
  transform: translate(3px, -3px);
}

.materials {
  background: var(--paper);
}

.materials-grid {
  display: grid;
  margin-top: 76px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.material-card {
  display: flex;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  flex-direction: column;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.material-card:hover {
  box-shadow: 0 24px 60px rgba(43, 60, 51, 0.1);
  transform: translateY(-5px);
}

.material-top {
  display: flex;
  justify-content: space-between;
  color: var(--forest-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.material-card h3 {
  margin: 76px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.material-card p {
  margin: 0;
  color: #566b61;
  font-size: 15px;
  line-height: 1.65;
}

.material-card a {
  margin-top: auto;
  padding-top: 32px;
  font-size: 15px;
}

.booking {
  display: grid;
  min-height: 680px;
  padding: clamp(94px, 10vw, 150px) clamp(24px, 7vw, 108px);
  background: var(--terracotta);
  color: white;
  grid-template-columns: 1.2fr 0.65fr;
  gap: clamp(56px, 10vw, 150px);
  align-items: center;
}

.booking .eyebrow {
  color: #ffe0d2;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 34px 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
}

.button-light {
  background: var(--paper);
  color: var(--forest);
}

.button-light:hover {
  box-shadow: 0 16px 36px rgba(82, 42, 27, 0.2);
  transform: translateY(-2px);
}

.button-light span {
  margin-left: 12px;
  color: var(--terracotta);
}

.booking small {
  display: block;
  margin-top: 22px;
  color: #ffe1d5;
  font-size: 13px;
}

.booking-aside {
  display: flex;
  min-height: 360px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-aside p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(100px, 12vw, 180px);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.booking-aside span {
  max-width: 240px;
  margin-top: 38px;
  font-size: 14px;
  line-height: 1.55;
}

footer {
  display: grid;
  min-height: 220px;
  padding: 54px clamp(24px, 4.8vw, 72px);
  background: #1b2a24;
  color: var(--cream);
  grid-template-columns: 1.5fr 1fr 0.75fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  color: var(--cream);
}

footer > p {
  margin: 18px 0 0;
  color: #aebbb2;
  font-size: 14px;
}

footer > a {
  margin-top: 17px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

a:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
}

@media (max-width: 1000px) {
  .site-header {
    min-height: 88px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .floating-contact {
    display: flex;
  }

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

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .materials-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 250px;
  }

  .steps h3 {
    margin-top: 44px;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .booking-aside {
    min-height: 320px;
    border-radius: 180px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 20px;
  }

  .brand-mark {
    width: 43px;
    height: 42px;
  }

  .brand {
    gap: 10px;
    font-size: 17px;
  }

  .hero {
    padding: 46px 20px 90px;
    gap: 40px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

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

  .button-primary {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    width: 100%;
    height: calc(100% - 62px);
    border-radius: 28px;
  }

  .hero-visual::before {
    width: 78%;
    border-radius: 36px 0 0 36px;
  }

  .hero-orbit {
    display: none;
  }

  .intro-strip {
    min-height: 126px;
    gap: 10px;
    flex-direction: column;
  }

  .intro-strip span {
    display: none;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section h2,
  .booking h2 {
    font-size: 44px;
  }

  .about-grid,
  .facts,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .facts div,
  .facts div:first-child {
    min-height: 128px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topic-card {
    min-height: 270px;
    padding: 26px;
  }

  .topic-card h3 {
    margin-top: 48px;
  }

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

  .material-card {
    min-height: 340px;
  }

  .booking {
    min-height: auto;
    padding: 88px 20px;
  }

  .booking .button {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .booking-aside {
    min-height: 270px;
    padding: 28px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
