:root {
  --background: #f7f4ee;
  --background-dark: #e9e3d8;
  --surface: #ffffff;
  --text: #20241f;
  --text-light: #687066;
  --accent: #d8794d;
  --accent-dark: #b95f38;
  --green: #64725e;
  --border: #ddd8ce;

  --font-body: "DM Sans", sans-serif;
  --font-heading: "Playfair Display", serif;

  --container: 1180px;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}


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


button,
input,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin: 0 auto;
}


/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid rgba(221, 216, 206, 0.8);

  backdrop-filter: blur(12px);
}


.header-inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 18px;
  font-weight: 700;
}


.logo-mark {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--accent);
  color: white;

  font-family: var(--font-heading);
  font-size: 20px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 30px;

  font-size: 14px;
  font-weight: 500;
}


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


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


.nav-cta {
  padding: 10px 18px;

  border-radius: 999px;

  background: var(--text);
  color: white;
}


.nav-cta:hover {
  color: white !important;
  background: var(--accent-dark);
}


.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


.menu-button span {
  width: 22px;
  height: 2px;

  background: var(--text);

  border-radius: 10px;
}


/* GENERAL */

.section {
  padding: 110px 0;
}


.section-light {
  background: var(--surface);
}


.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--accent-dark);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}


h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}


h1 {
  max-width: 720px;

  font-size: clamp(
    48px,
    7vw,
    82px
  );
}


h1 span,
h2 span {
  color: var(--accent);
}


h2 {
  font-size: clamp(
    38px,
    5vw,
    58px
  );
}


.section-heading {
  max-width: 760px;

  margin-bottom: 60px;
}


.section-heading p {
  max-width: 680px;

  margin-top: 24px;

  color: var(--text-light);

  font-size: 18px;
}


.section-heading-center {
  margin-right: auto;
  margin-left: auto;

  text-align: center;
}


.section-heading-center p {
  margin-right: auto;
  margin-left: auto;
}


/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}


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


.button-primary {
  background: var(--text);
  color: white;
}


.button-primary:hover {
  background: var(--accent-dark);
}


.button-secondary {
  border: 1px solid var(--border);
  background: transparent;
}


.button-secondary:hover {
  background: white;
}


.button-full {
  width: 100%;
}


/* HERO */

.hero {
  min-height: calc(100vh - 76px);

  display: flex;
  align-items: center;

  padding: 90px 0;
}


.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(360px, 0.9fr);

  gap: 80px;

  align-items: center;
}


.hero-text {
  max-width: 620px;

  margin-top: 28px;

  color: var(--text-light);

  font-size: 19px;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 36px;
}


.hero-card {
  position: relative;

  min-height: 520px;

  overflow: hidden;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      #d9dfd1,
      #aebaa4
    );

  box-shadow:
    0 30px 80px rgba(32, 36, 31, 0.12);
}


.hero-card::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  top: -100px;
  right: -90px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.2);
}


.hero-card::after {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  bottom: -70px;
  left: -60px;

  border-radius: 50%;

  background: rgba(216, 121, 77, 0.45);
}


.hero-card-decoration {
  position: absolute;

  width: 220px;
  height: 220px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}


.hero-card-decoration::before {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}


.hero-card-content {
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 42px;

  z-index: 2;
}


.hero-card-small {
  color: rgba(32, 36, 31, 0.7);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.hero-card-content p {
  max-width: 330px;

  margin: auto 0;

  font-family: var(--font-heading);

  font-size: 40px;
  line-height: 1.15;
}


.hero-card-line {
  width: 60px;
  height: 3px;

  background: var(--accent);
}


.hero-card-bottom {
  font-size: 13px;
  font-weight: 600;

  color: rgba(32, 36, 31, 0.7);
}


/* VALUES */

.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.value-card {
  padding: 36px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: var(--surface);
}


.value-number {
  margin-bottom: 60px;

  color: var(--accent);

  font-family: var(--font-heading);
  font-size: 24px;
}


.value-card h3 {
  margin-bottom: 12px;

  font-size: 20px;
}


.value-card p {
  color: var(--text-light);

  font-size: 15px;
}


/* LEVELS */

.levels-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.level-card {
  padding: 38px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: var(--surface);
}


.level-card-featured {
  border-color: var(--accent);

  box-shadow:
    0 20px 50px rgba(32, 36, 31, 0.08);
}


.level-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 30px;

  border-radius: 50%;

  background: var(--background-dark);

  font-family: var(--font-heading);
  font-size: 16px;
}


.level-card h3 {
  margin-bottom: 14px;

  font-family: var(--font-heading);
  font-size: 30px;
}


.level-card p {
  margin-bottom: 25px;

  color: var(--text-light);

  font-size: 15px;
}


.level-card ul {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 10px;
}


.level-card li {
  position: relative;

  padding-left: 20px;

  font-size: 14px;
  font-weight: 500;
}


.level-card li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--accent);
  font-weight: 700;
}


/* METHOD */

.method-section {
  background: var(--background-dark);
}


.method-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  align-items: start;
}


.method-intro p {
  max-width: 480px;

  margin-top: 26px;

  color: var(--text-light);

  font-size: 17px;
}


.method-list {
  display: flex;
  flex-direction: column;
}


.method-item {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 20px;

  padding: 28px 0;

  border-bottom: 1px solid rgba(32, 36, 31, 0.15);
}


.method-item:first-child {
  padding-top: 0;
}


.method-number {
  color: var(--accent);

  font-family: var(--font-heading);
  font-size: 18px;
}


.method-item h3 {
  margin-bottom: 7px;

  font-size: 19px;
}


.method-item p {
  max-width: 600px;

  color: var(--text-light);

  font-size: 15px;
}


/* CONTACT */

.contact-section {
  background: var(--surface);
}


.contact-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  padding: 70px;

  border-radius: 28px;

  background: var(--background);
}


.contact-content p {
  max-width: 500px;

  margin-top: 24px;

  color: var(--text-light);

  font-size: 17px;
}


.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;

  margin-top: 45px;
}


.contact-info div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.contact-label {
  color: var(--text-light);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.contact-info strong {
  font-size: 16px;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.form-group label {
  font-size: 13px;
  font-weight: 600;
}


.form-group input,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  border: 1px solid var(--border);
  border-radius: 10px;

  outline: none;

  background: white;
  color: var(--text);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.form-group textarea {
  resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);

  box-shadow:
    0 0 0 3px rgba(216, 121, 77, 0.12);
}


.form-message {
  min-height: 24px;

  color: var(--green);

  font-size: 14px;
}


/* FOOTER */

.footer {
  padding: 55px 0;

  background: var(--text);
  color: white;
}


.footer-inner {
  display: grid;

  grid-template-columns: 1fr auto auto;

  gap: 50px;

  align-items: end;
}


.logo-footer {
  color: white;
}


.footer > .container > div > p {
  margin-top: 15px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 13px;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  font-size: 13px;
}


.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}


.footer-links a:hover {
  color: white;
}


.footer-copy {
  color: rgba(255, 255, 255, 0.5);

  font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .nav {
    display: none;

    position: absolute;

    top: 76px;
    left: 0;
    right: 0;

    padding: 20px;

    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    background: var(--background);

    border-bottom: 1px solid var(--border);
  }


  .nav.open {
    display: flex;
  }


  .nav a {
    padding: 12px;
  }


  .nav-cta {
    text-align: center;
  }


  .menu-button {
    display: flex;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .hero {
    min-height: auto;
  }


  .hero-card {
    min-height: 420px;
  }


  .values-grid,
  .levels-grid {
    grid-template-columns: 1fr;
  }


  .method-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .contact-box {
    grid-template-columns: 1fr;

    gap: 50px;

    padding: 45px;
  }


  .footer-inner {
    grid-template-columns: 1fr;

    gap: 30px;

    align-items: start;
  }

}


@media (max-width: 600px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }


  .section {
    padding: 80px 0;
  }


  .hero {
    padding: 65px 0;
  }


  h1 {
    font-size: 48px;
  }


  h2 {
    font-size: 40px;
  }


  .hero-text {
    font-size: 17px;
  }


  .hero-card {
    min-height: 360px;

    border-radius: 20px;
  }


  .hero-card-content {
    padding: 28px;
  }


  .hero-card-content p {
    font-size: 31px;
  }


  .value-card,
  .level-card {
    padding: 28px;
  }


  .value-number {
    margin-bottom: 40px;
  }


  .method-item {
    grid-template-columns: 45px 1fr;

    gap: 10px;
  }


  .contact-box {
    padding: 30px 22px;

    border-radius: 20px;
  }


  .contact-info {
    gap: 25px;
  }


  .footer-links {
    flex-direction: column;

    gap: 12px;
  }

}