:root {
  --espresso: #5e4f47;
  --ink: #302a27;
  --cream: #f5f0e9;
  --sand: #ded2c3;
  --clay: #b98c77;
  --line: rgba(48, 42, 39, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  height: 84px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand span {
  display: block;
  margin-top: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  letter-spacing: 0.34em;
  text-align: center;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a:hover,
.text-link:hover {
  opacity: 0.62;
}

.nav-book {
  border: 1px solid var(--ink);
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
}

.hero-copy {
  padding: 11vw 7vw 8vw;
}

.eyebrow {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(45px, 6vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero h1 em {
  font-weight: 500;
}

.hero-intro {
  max-width: 450px;
  margin: 30px 0 32px;
  color: #ede5dc;
  font-size: 17px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 19px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button span {
  font-size: 20px;
  line-height: 0;
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

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

.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
  font-size: 16px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 12%;
  background: #726059;
}

.hero-art .arch {
  width: 76%;
  height: 75%;
  border: 1px solid rgba(245, 240, 233, 0.55);
  border-bottom: 0;
  border-radius: 400px 400px 0 0;
}

.hero-art p,
.approach-image p {
  position: absolute;
  z-index: 1;
  bottom: 8%;
  left: 9%;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.statement {
  padding: 130px 7vw;
}

.statement h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 63px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: end;
  margin-top: 42px;
}

.statement-grid p {
  max-width: 490px;
  margin: 0;
}

.dark {
  justify-self: start;
}

.classes {
  padding: 105px 7vw;
  background: var(--sand);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.class-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 26px 30px 20px 0;
  border-right: 1px solid var(--line);
}

.class-grid article + article {
  padding-left: 30px;
}

.class-grid article:last-child {
  border-right: 0;
}

.class-grid span {
  font-size: 11px;
  letter-spacing: 0.15em;
}

.class-grid h3 {
  margin: 60px 0 15px;
  font-size: 31px;
  line-height: 1.1;
}

.class-grid p {
  max-width: 285px;
  margin: 0;
  font-size: 14px;
}

.class-grid a {
  margin-top: auto;
  padding-top: 30px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1fr 1fr;
}

.approach-image {
  position: relative;
  overflow: hidden;
  background: #9c8278;
  color: var(--cream);
}

.ring {
  position: absolute;
  top: 18%;
  left: 21%;
  width: min(55%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.approach-copy {
  padding: 13vw 9vw;
  background: #c39e8d;
}

.approach-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 34px;
}

.testimonial {
  padding: 125px 9vw;
  background: var(--cream);
  text-align: center;
}

.quote {
  max-width: 940px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 4vw, 57px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.client {
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact {
  padding: 130px 6vw;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

.contact h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.contact > p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px auto 34px;
  color: #eee5de;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 6vw;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer .brand {
  font-size: 21px;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 6vw;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 6vw;
    background: var(--cream);
  }

  .site-nav.open {
    display: flex;
  }

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

  .hero-copy {
    padding: 105px 7vw 86px;
  }

  .hero-art {
    min-height: 350px;
  }

  .hero-art .arch {
    width: 60%;
    height: 72%;
  }

  .statement,
  .classes,
  .contact {
    padding: 82px 7vw;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 16px;
  }

  .class-grid,
  .approach {
    grid-template-columns: 1fr;
  }

  .class-grid article,
  .class-grid article + article {
    min-height: 230px;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-image {
    min-height: 450px;
  }

  .approach-copy {
    padding: 80px 7vw;
  }

  .testimonial {
    padding: 85px 7vw;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
