/* ================================================================
   Sanatan Finance LLC — Landing Page Styles
   Aesthetic: editorial, warm cream palette, forest green accent,
   serif display typography, generous whitespace.
================================================================ */

:root {
  --bg-cream: #f5f0e6;
  --bg-cream-dark: #ece4d1;
  --bg-paper: #fbf8f1;
  --forest: #1f3a2e;
  --forest-soft: #2d5240;
  --ink: #121212;
  --ink-soft: #2a2a2a;
  --muted: #6b6356;
  --gold: #b28a4b;
  --line: #d4c9b2;
  --line-soft: #e4dccb;

  --ff-display: "Fraunces", "Playfair Display", Georgia, serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

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

em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.container { max-width: 1240px; padding: 0 32px; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 230, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--forest);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
  border-radius: 50%;
}

.logo-text {
  font-weight: 500;
  font-variation-settings: "opsz" 120;
}

.logo-text em {
  margin-left: 2px;
  color: var(--forest);
}

.main-nav {
  display: flex;
  gap: 38px;
  font-size: 14.5px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--forest);
  transition: width 0.4s var(--ease);
}

.main-nav a:hover { color: var(--forest); }
.main-nav a:hover::after { width: 100%; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--forest);
  color: var(--bg-cream);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.btn-pill:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: flex-end;
}

.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(178, 138, 75, 0.08), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(31, 58, 46, 0.06), transparent 55%),
    var(--bg-cream);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 34px;
}

.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 4px rgba(31, 58, 46, 0.1);
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 350;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 36px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero-title em {
  color: var(--forest);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

.underline-sketch {
  position: relative;
  display: inline-block;
}

.underline-sketch::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 10' preserveAspectRatio='none'%3E%3Cpath d='M2 6 Q 75 1 150 5 T 298 4' stroke='%23b28a4b' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: -1;
  opacity: 0.85;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 44px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 34px;
  background: var(--ink);
  color: var(--bg-cream);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-primary-custom > * { position: relative; z-index: 1; }

.btn-primary-custom:hover::before { transform: translateY(0); }
.btn-primary-custom:hover { border-color: var(--forest); }

.btn-primary-custom.full-width { width: 100%; padding: 19px 30px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s var(--ease);
}

.btn-ghost span { transition: transform 0.3s var(--ease); }
.btn-ghost:hover { color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover span { transform: translateX(4px); }

.hero-side-card {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  padding: 32px 30px;
  position: relative;
}

.hero-side-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
}

.hero-side-card::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 2px solid var(--forest);
  border-right: 2px solid var(--forest);
}

.side-label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-side-card p {
  font-family: var(--ff-display);
  font-size: 18.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 350;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 72, "SOFT" 50;
}

.side-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ================================================================
   SECTION BASICS
================================================================ */
.section {
  padding: 130px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-num {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 72;
}

.section-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 350;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.section-title em {
  color: var(--forest);
}

.lead-text {
  font-size: 19.5px;
  line-height: 1.55;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 350;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  margin: 0 0 20px;
}

.body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* ================================================================
   ABOUT
================================================================ */
.about { background: var(--bg-cream); }

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}

.principle h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 8px;
  font-variation-settings: "opsz" 72;
}

.principle p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ================================================================
   SERVICES
================================================================ */
.services {
  background: var(--bg-paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.services-head-row { margin-bottom: 72px; }

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

.service-card {
  padding: 38px 34px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-paper);
  transition: background 0.4s var(--ease);
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 58, 46, 0.03));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.service-card:hover { background: var(--bg-cream); }
.service-card:hover::after { opacity: 1; }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.service-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--forest);
  font-variation-settings: "opsz" 72;
}

.service-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 40px;
}

.service-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px;
  font-variation-settings: "opsz" 72, "SOFT" 40;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.service-card ul {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.service-card ul li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  padding-left: 18px;
}

.service-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--forest);
}

/* Industries */
.industries {
  margin-top: 80px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.industries-label {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 22px;
  font-variation-settings: "opsz" 72;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.industries-list span {
  font-size: 13.5px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 40px;
  color: var(--ink-soft);
  background: var(--bg-cream);
  transition: all 0.3s var(--ease);
}

.industries-list span:hover {
  background: var(--forest);
  color: var(--bg-cream);
  border-color: var(--forest);
  transform: translateY(-2px);
}

/* ================================================================
   FAQ
================================================================ */
.faq { background: var(--bg-cream); }

.accordion-flush .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}

.accordion-flush .accordion-item:first-child {
  border-top: 1px solid var(--line);
}

.accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 26px 0;
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  transition: color 0.3s var(--ease);
}

.accordion-button:not(.collapsed) {
  color: var(--forest);
}

.accordion-button::after {
  background-image: none !important;
  width: 24px; height: 24px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: all 0.3s var(--ease);
}

.accordion-button::before {
  content: "+";
  position: absolute;
  right: 4px;
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  z-index: 2;
  line-height: 1;
}

.accordion-button:not(.collapsed)::before {
  content: "–";
  color: var(--bg-cream);
}

.accordion-button:not(.collapsed)::after {
  background: var(--forest);
  border-color: var(--forest);
}

.accordion-body {
  padding: 0 0 30px;
  max-width: 92%;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ================================================================
   CONTACT
================================================================ */
.contact {
  background: var(--forest);
  color: var(--bg-cream);
  padding: 130px 0;
}

.contact .section-head.light {
  border-bottom-color: rgba(245, 240, 230, 0.15);
}

.contact .section-num { color: var(--gold); }
.contact .section-label { color: rgba(245, 240, 230, 0.65); }

.contact-title {
  color: var(--bg-cream);
}

.contact-title em {
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

.contact-lede {
  font-size: 18.5px;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.82);
  margin: 28px 0 48px;
  max-width: 520px;
  font-family: var(--ff-display);
  font-weight: 350;
  font-variation-settings: "opsz" 72, "SOFT" 40;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 230, 0.15);
}

.contact-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245, 240, 230, 0.55);
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-value {
  font-family: var(--ff-display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--bg-cream);
  font-style: normal;
  font-weight: 400;
  display: block;
  transition: color 0.3s var(--ease);
  font-variation-settings: "opsz" 72;
}

a.contact-value:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-paper);
  color: var(--ink);
  padding: 42px 38px;
  border: 1px solid rgba(178, 138, 75, 0.3);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 28px; height: 28px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.contact-form::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 28px; height: 28px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.form-field { margin-bottom: 22px; }

.form-field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  outline: none;
  border-radius: 0;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231f3a2e' stroke-width='1.3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--ff-body);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--forest);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aba393;
}

.form-footnote {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 16px 0 0;
  font-style: italic;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 72;
}

.form-success {
  padding: 24px;
  text-align: center;
  background: rgba(31, 58, 46, 0.06);
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: var(--ff-display);
  font-size: 18px;
  font-variation-settings: "opsz" 72;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  padding: 70px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-logo .logo-text {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

.footer-logo .logo-text em { color: var(--forest); }

.footer-logo p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.55;
  margin: 0;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-label {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-meta a,
.footer-meta p {
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--ink);
  margin: 0;
  line-height: 1.45;
  font-variation-settings: "opsz" 72;
  font-weight: 400;
}

.footer-meta a:hover { color: var(--forest); }

.footer-bottom {
  padding-top: 26px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ================================================================
   REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
  .header-inner { padding: 18px 24px; }

  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-cream);
    padding: 30px 28px 40px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    font-size: 20px;
    font-family: var(--ff-display);
  }

  .main-nav.open { transform: translateY(0); }

  .nav-toggle { display: flex; }

  .hero { padding: 60px 0 80px; }
  .hero-side-card { margin-top: 20px; }

  .section { padding: 90px 0; }

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

  .principles-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .contact-form { padding: 34px 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 16px 20px; gap: 12px; }
  .logo-text { font-size: 17px; }
  .logo-mark { width: 32px; height: 32px; font-size: 16px; }

  .hero { padding: 48px 0 70px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .hero-lede { font-size: 16.5px; }
  .hero-cta { gap: 18px; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .services-grid {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: none;
  }
  .service-card {
    border-right: none;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .contact-details { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { grid-template-columns: 1fr; gap: 24px; }

  .accordion-button { font-size: 17.5px; padding: 22px 0; }
}
