/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #2d2a26;
  background: #faf6f0;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: #2d2a26;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}

p {
  margin: 0 0 1em;
}

a {
  color: #6b8e6f;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #4a6b4d;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Layout primitives ---------- */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  border-top: 1px solid #ece4d4;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-lede {
  color: #6b665e;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7e68;
  margin: 0 0 0.75rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: #2d2a26;
  color: #faf6f0;
}

.btn-primary:hover {
  background: #4a463f;
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #2d2a26;
  border-color: #cdc2ac;
}

.btn-ghost:hover {
  border-color: #2d2a26;
  color: #2d2a26;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(45, 42, 38, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.25);
  background: rgba(45, 42, 38, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #faf6f0;
  font-weight: 500;
}

.brand:hover {
  color: #faf6f0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #faf6f0;
  color: #2d2a26;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
}

.nav-list a {
  color: #e6dcc7;
}

.nav-list a:hover {
  color: #faf6f0;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: #faf6f0;
  color: #2d2a26 !important;
}

.nav-cta:hover {
  background: #fff;
  color: #2d2a26 !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #faf6f0;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* ---------- Hero ---------- */

.hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #f5efe6 0%, #faf6f0 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-text .eyebrow {
  color: #6b8e6f;
}

.hero-lede {
  font-size: 1.15rem;
  color: #4a463f;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
  padding-top: 1.75rem;
  border-top: 1px solid #ece4d4;
  font-size: 0.94rem;
  color: #4a463f;
}

.hero-badges li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-badges li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6b8e6f;
  font-weight: 600;
}

.hero-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: #e6dcc7;
  box-shadow: 0 30px 60px -30px rgba(45, 42, 38, 0.35);
}

.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.portrait-quote {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  max-width: 280px;
  padding: 1.25rem 1.4rem;
  background: #faf6f0;
  border: 1px solid #ece4d4;
  border-radius: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
  color: #4a463f;
  box-shadow: 0 10px 30px -15px rgba(45, 42, 38, 0.25);
}

/* ---------- About ---------- */

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about-inner .section-head {
  margin: 0;
  text-align: left;
}

.about-body p {
  color: #4a463f;
}

.about-subhead {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: #6b8e6f;
  letter-spacing: 0.02em;
}

.credentials {
  display: grid;
  gap: 1.1rem;
  font-size: 0.96rem;
  color: #4a463f;
}

.credentials li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.5;
}

.credentials li::before {
  content: "📎";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
}

.credentials strong {
  display: block;
  color: #2d2a26;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.diplomas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.diploma {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ece4d4;
  border-radius: 8px;
  padding: 0.6rem 0.6rem 0.85rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.diploma:hover {
  transform: translateY(-2px);
  border-color: #d8c8a8;
  box-shadow: 0 18px 35px -22px rgba(45, 42, 38, 0.3);
}

.diploma img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 4px;
  background: #f5efe6;
}

.diploma-caption {
  display: block;
  margin-top: 0.6rem;
  padding: 0 0.2rem;
  font-size: 0.85rem;
  color: #6b665e;
  line-height: 1.4;
}

/* ---------- Services / topics list ---------- */

.topics {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.topics li {
  position: relative;
  padding: 1.1rem 0 1.1rem 2.25rem;
  border-bottom: 1px solid #ece4d4;
}

.topics li:last-child {
  border-bottom: none;
}

.topics li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 1.4rem;
  height: 1.4rem;
  display: grid;
  place-items: center;
  color: #6b8e6f;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid #6b8e6f;
  border-radius: 50%;
}

.topics strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2d2a26;
  margin-bottom: 0.2rem;
}

.topics span {
  display: block;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #6b665e;
}

.topics-extra {
  max-width: 760px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #ece4d4;
}

.topics-extra-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7e68;
  margin: 0 0 1rem;
}

.topics-extra ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.55rem 1.5rem;
}

.topics-extra li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.97rem;
  color: #4a463f;
}

.topics-extra li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b89a6b;
}

/* ---------- Limits ---------- */

.limits {
  background: #f0e8d6;
}

.limits-inner {
  max-width: 760px;
  margin: 0 auto;
}

.limits-list {
  display: grid;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e0d6bd;
  border-left: 3px solid #b89a6b;
  border-radius: 8px;
  padding: 1.5rem 1.75rem 1.5rem 1.5rem;
  font-size: 0.98rem;
  color: #4a463f;
}

.limits-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.55;
}

.limits-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b89a6b;
}

.limits-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: #6b665e;
  text-align: center;
}

/* ---------- Approach / steps ---------- */

.approach {
  background: #f0e8d6;
}

.approach-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.approach .section-head {
  margin: 0;
  text-align: left;
  position: sticky;
  top: 6rem;
}

.steps {
  display: grid;
  gap: 2rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0d6bd;
}

.steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  grid-row: span 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #6b8e6f;
  align-self: start;
}

.steps h3 {
  margin: 0;
}

.steps p {
  margin: 0;
  color: #4a463f;
}

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.price-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: #fff;
  border: 1px solid #ece4d4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.price-card-feature {
  background: #2d2a26;
  border-color: #2d2a26;
  color: #faf6f0;
}

.price-card-feature h3,
.price-card-feature .price {
  color: #faf6f0;
}

.price-card-feature .price-meta,
.price-card-feature ul {
  color: #cdc2ac;
}

.price-card-feature li::before {
  background: #d8c8a8;
}

.price-tag {
  position: absolute;
  top: -0.7rem;
  right: 1.5rem;
  background: #d8c8a8;
  color: #2d2a26;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin: 0;
  line-height: 1;
}

.price-meta {
  font-size: 0.88rem;
  color: #8a7e68;
  margin: 0.4rem 0 1.5rem;
}

.price-card ul {
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #4a463f;
  margin-top: auto;
}

.price-card li {
  position: relative;
  padding-left: 1.1rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b8e6f;
}

.price-card-terms {
  background: #f0e8d6;
  border-color: #e0d6bd;
}

.price-card-terms h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.terms-list {
  display: grid;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: #4a463f;
  margin-top: 0;
}

.terms-list li {
  padding-left: 1.2rem;
  line-height: 1.5;
}

.price-card-terms li::before {
  width: 5px;
  height: 5px;
  background: #b89a6b;
  top: 0.55rem;
}

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid #ece4d4;
  border-radius: 10px;
  color: #2d2a26;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: #d8c8a8;
  box-shadow: 0 20px 40px -25px rgba(45, 42, 38, 0.25);
  color: #2d2a26;
}

.blog-num {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7e68;
  margin: 0 0 0.75rem;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  line-height: 1.25;
}

.blog-teaser {
  color: #6b665e;
  font-size: 0.97rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-link {
  font-size: 0.95rem;
  color: #6b8e6f;
  font-weight: 500;
}

.blog-card:hover .blog-link {
  color: #4a6b4d;
}

/* ---------- FAQ ---------- */

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid #ece4d4;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s ease;
}

.faq-list details[open] {
  border-color: #d8c8a8;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 1.05rem;
  color: #2d2a26;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #6b8e6f;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0.9rem 0 0;
  color: #4a463f;
}

/* ---------- Contact ---------- */

.contact {
  background: #2d2a26;
  color: #faf6f0;
  border-top-color: #2d2a26;
}

.contact .eyebrow {
  color: #d8c8a8;
}

.contact h2 {
  color: #faf6f0;
  max-width: 14ch;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text p {
  color: #cdc2ac;
}

.contact-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  border-top: 1px solid #4a463f;
  padding-top: 1.5rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 1.02rem;
}

.contact-label {
  color: #8a7e68;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a {
  color: #faf6f0;
  border-bottom: 1px dashed #6b665e;
  padding-bottom: 1px;
}

.contact-list a:hover {
  border-bottom-color: #d8c8a8;
  color: #d8c8a8;
}

.contact-form {
  background: #faf6f0;
  color: #2d2a26;
  padding: 2.25rem;
  border-radius: 10px;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.1rem;
}

.contact-form span {
  display: block;
  font-size: 0.85rem;
  color: #6b665e;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: #2d2a26;
  background: #fff;
  border: 1px solid #ece4d4;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6b8e6f;
  box-shadow: 0 0 0 3px rgba(107, 142, 111, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.25rem 0 1.1rem;
  cursor: pointer;
}

.consent input[type="checkbox"] {
  width: auto;
  margin: 0.2rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: #6b8e6f;
  cursor: pointer;
}

.consent input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(107, 142, 111, 0.6);
  outline-offset: 2px;
  box-shadow: none;
}

.consent > span {
  display: block;
  font-size: 0.85rem;
  color: #6b665e;
  line-height: 1.5;
  margin: 0;
}

.consent a {
  color: #4a463f;
  text-decoration: underline;
  text-decoration-color: #cdc2ac;
  text-underline-offset: 2px;
}

.consent a:hover {
  color: #2d2a26;
  text-decoration-color: #2d2a26;
}

.form-success,
.form-error {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.form-success {
  background: #e6efe6;
  border: 1px solid #b8c8a8;
  color: #4a6b4d;
}

.form-error {
  background: #f7eadf;
  border: 1px solid #e0c2a0;
  color: #8a5a30;
}

.form-error a {
  color: inherit;
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2rem 0 2.5rem;
  background: #faf6f0;
  border-top: 1px solid #ece4d4;
  font-size: 0.88rem;
  color: #8a7e68;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-copy {
  margin: 0;
}

.footer-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.85rem;
}

.footer-docs a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b665e;
  border-bottom: 1px dashed transparent;
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-docs a::before {
  content: "↗";
  font-size: 0.9rem;
  color: #b89a6b;
  transition: transform 0.15s ease;
}

.footer-docs a:hover {
  color: #2d2a26;
  border-bottom-color: #cdc2ac;
}

.footer-docs a:hover::before {
  transform: translate(1px, -1px);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 3rem 0 4.5rem;
  }

  .hero-inner,
  .about-inner,
  .approach-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .approach .section-head {
    position: static;
  }

  .hero-portrait {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .portrait-quote {
    position: static;
    max-width: none;
    margin: 1.25rem 0 0;
    padding: 0 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
  }

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(45, 42, 38, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.45);
    display: none;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 6px;
  }

  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #faf6f0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.4rem;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(1120px, 100% - 2rem);
  }

  .contact-form {
    padding: 1.5rem;
  }

  .price-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ---------- Article pages ---------- */

.article {
  padding: 4rem 0 5rem;
}

.article-inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #6b665e;
  margin-bottom: 1.75rem;
}

.article-back:hover {
  color: #2d2a26;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7e68;
  margin-bottom: 1rem;
}

.article-meta::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #b89a6b;
}

.article h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.article-body {
  font-size: 1.05rem;
  color: #3a362f;
}

.article-body p {
  margin: 0 0 1.2em;
  line-height: 1.7;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 0.9rem;
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #2d2a26;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.4em;
  padding-left: 0;
}

.article-body li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.article-body ul li::before {
  content: "·";
  position: absolute;
  left: 0.5rem;
  top: -0.1rem;
  color: #6b8e6f;
  font-size: 1.4rem;
  line-height: 1;
}

.article-body ol {
  counter-reset: ol;
}

.article-body ol li {
  counter-increment: ol;
}

.article-body ol li::before {
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #6b8e6f;
  font-weight: 600;
}

.article-body blockquote {
  margin: 1.8rem 0;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid #d8c8a8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #4a463f;
}

.article-body strong {
  color: #2d2a26;
  font-weight: 600;
}

.article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: #f0e8d6;
  border-radius: 10px;
  text-align: center;
}

.article-cta p {
  margin: 0 0 1rem;
  color: #4a463f;
}

.article-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ece4d4;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.95rem;
}

.article-nav a {
  color: #6b8e6f;
}

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