:root {
  --ink: #25302b;
  --muted: #66716c;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --sage: #7da68d;
  --sage-dark: #35624f;
  --coral: #e77a59;
  --cocoa: #6d5a45;
  --blush: #eeb8a7;
  --blue: #5c8fa3;
  --mustard: #d4ad51;
  --berry: #b96b83;
  --line: #dde5df;
  --shadow: 0 18px 50px rgba(37, 48, 43, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-top: 3px solid var(--blush);
  border-bottom: 1px solid rgba(230, 225, 214, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(125, 166, 141, 0.22);
  box-shadow: 0 10px 28px rgba(37, 48, 43, 0.08);
}

.brand-logo {
  width: clamp(210px, 19vw, 262px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--sage-dark);
  color: #fff;
}

.header-cta {
  background: #5f8d74;
}

.header-cta:hover {
  background: var(--sage-dark);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 42, 36, 0.14);
}

.header-cta,
.button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100vh - 79px));
  padding: clamp(40px, 7vw, 90px) clamp(18px, 6vw, 82px) 48px;
  overflow: hidden;
  background: #f2f6f2;
  border-bottom: 1px solid #dce7de;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 620px;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
  color: #263a31;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
  text-align: justify;
}

.hero-copy {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 4px solid var(--sage);
}

.hero-stats div:nth-child(2) {
  border-top-color: var(--coral);
}

.hero-stats div:nth-child(3) {
  border-top-color: var(--blue);
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #f4eadc;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section,
.process,
.about,
.certificates,
.faq,
.appointment {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 82px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: start;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.approach-copy > p {
  max-width: 760px;
  font-size: 18px;
}

.approach-note {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--coral);
}

.approach-note strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.approach-note span {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services {
  background: #fbfcfa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  border-top: 3px solid var(--blue);
  box-shadow: 0 10px 28px rgba(37, 48, 43, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-child(2) {
  border-top-color: var(--coral);
}

.service-card:nth-child(3) {
  border-top-color: var(--berry);
}

.service-card:nth-child(4) {
  border-top-color: var(--mustard);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(37, 48, 43, 0.1);
}

.service-card p,
.steps p,
.note p,
.certificate-card small,
.footer p {
  text-align: left;
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(83, 121, 141, 0.14);
  color: var(--blue);
}

.service-card:nth-child(2) .icon {
  background: rgba(220, 118, 94, 0.16);
}

.service-card:nth-child(3) .icon {
  background: rgba(168, 83, 109, 0.15);
}

.service-card:nth-child(4) .icon {
  background: rgba(211, 161, 63, 0.18);
}

.icon img {
  width: 24px;
  height: 24px;
  opacity: 0.78;
}


.process {
  background: #eef4f0;
  color: var(--ink);
}

.process .section-kicker,
.process p {
  color: var(--muted);
}

.process .section-kicker {
  color: var(--coral);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  border-top: 3px solid #8dbb96;
}

.steps article:nth-child(2) {
  border-top-color: #e99a80;
}

.steps article:nth-child(3) {
  border-top-color: #78abc2;
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: #eaf4e9;
  color: var(--sage-dark);
  font-weight: 800;
}

.steps article:nth-child(2) span {
  background: #fff0eb;
}

.steps article:nth-child(3) span {
  background: #eaf4f8;
}

.steps span img {
  width: 20px;
  height: 20px;
  opacity: 0.82;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: stretch;
  background: #fff;
}

.about-photo {
  align-self: start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #eef1ed;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.about-panel,
.note {
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
}

.about-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-left: 4px solid var(--sage);
}

.about-panel p {
  max-width: 760px;
}

.profile-details {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  gap: 34px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.profile-group h3 {
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: 18px;
}

.profile-list {
  display: grid;
  gap: 18px;
}

.profile-list article {
  padding-left: 16px;
  border-left: 3px solid #bfd2c4;
}

.profile-list article:nth-child(even) {
  border-left-color: #e9aa96;
}

.profile-list strong,
.profile-list small {
  display: block;
}

.profile-list strong {
  line-height: 1.45;
}

.profile-list p {
  margin: 5px 0;
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
}

.profile-list small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.note {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 32px;
  background: #eef4f0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
}

.note strong {
  display: block;
  margin: 0 0 6px;
  font-size: 22px;
}

.note p {
  margin: 0;
}

.note-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--sage-dark);
  box-shadow: 0 8px 20px rgba(37, 48, 43, 0.08);
}

.note-heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.note-icon img {
  width: 23px;
  height: 23px;
  opacity: 0.78;
}

.note ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  line-height: 1.5;
}

.note li {
  position: relative;
  min-height: 52px;
  padding: 4px 20px 4px 34px;
  border-left: 1px solid #cfddd3;
}

.note li::before {
  position: absolute;
  top: 7px;
  left: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.certificates {
  background: #f4f7f8;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.certificate-card {
  display: grid;
  min-height: 176px;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(31, 42, 36, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.certificate-card:nth-child(4n + 2) .certificate-icon {
  background: rgba(79, 131, 155, 0.15);
  color: var(--blue);
}

.certificate-card:nth-child(4n + 3) .certificate-icon {
  background: rgba(111, 148, 117, 0.16);
  color: var(--sage-dark);
}

.certificate-card:nth-child(4n + 4) .certificate-icon {
  background: rgba(211, 161, 63, 0.18);
  color: #8a6418;
}

.certificate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 97, 75, 0.35);
  box-shadow: 0 18px 42px rgba(31, 42, 36, 0.12);
}

.certificate-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(217, 130, 99, 0.14);
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.certificate-icon img {
  width: 26px;
  height: 26px;
  opacity: 0.8;
}

.certificate-card strong {
  font-size: 17px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.certificate-card small {
  color: var(--muted);
  font-weight: 700;
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 22px 52px 22px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eef4f0;
  color: var(--sage-dark);
  content: "+";
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > p {
  max-width: 780px;
  margin-bottom: 22px;
  padding-right: 42px;
  text-align: left;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: #f5f8f4;
  border-top: 1px solid #e0e9e2;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--sage);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(111, 143, 114, 0.2);
  border-color: var(--sage);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 6vw, 82px);
  background: #29342f;
  color: #fff;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

.social-link {
  font-weight: 700;
}

.social-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .hero,
  .intro,
  .about,
  .appointment {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .about-photo {
    width: min(100%, 540px);
    justify-self: center;
  }

  h1 {
    font-size: 44px;
  }

  .service-grid,
  .certificate-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-stats,
  .certificate-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .profile-details {
    grid-template-columns: 1fr;
  }

  .note,
  .note ul {
    grid-template-columns: 1fr;
  }

  .note li {
    min-height: auto;
    padding-block: 8px;
    border-left: 0;
  }

  .note li::before {
    top: 12px;
    left: 4px;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

  .footer {
    display: grid;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand {
    padding: 5px 9px;
  }

  .brand-logo {
    width: 178px;
    max-height: 54px;
  }

  h1 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
