/* =========================================
   HAWTHORNE HEALTH & EDUCATIONAL SERVICES
   Cleaned stylesheet
   Path to use in project: assets/css/style.css
   ========================================= */

/* =========================================
   1. ROOT VARIABLES
   ========================================= */
:root {
  --bg: #f8f7f3;
  --bg-soft: #f2f6f3;
  --bg-tint: #eef4f1;
  --surface: #ffffff;
  --surface-soft: #f2f5f2;
  --surface-2: #fbfcfb;
  --primary: #184f4a;
  --primary-dark: #103834;
  --accent: #8ea98e;
  --gold-soft: #c9b27a;
  --text: #243230;
  --text-muted: #5f6d69;
  --border: #dce4df;
  --shadow: 0 18px 45px rgba(16, 56, 52, 0.08);
  --shadow-soft: 0 10px 30px rgba(16, 56, 52, 0.05);
  --shadow-hover: 0 18px 38px rgba(16, 56, 52, 0.09);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

/* =========================================
   2. RESET / GLOBALS
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 88px;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(142, 169, 142, 0.08),
      transparent 28%
    ),
    linear-gradient(to bottom, #f8f7f3 0%, #f6f8f6 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 3rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

.eyebrow,
.compact-heading span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.light-eyebrow {
  color: #ffffff;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.compact-heading h2 {
  max-width: 900px;
  margin: 0 0 0.9rem;
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p {
  color: var(--text-muted);
}

.compact-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

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

/* =========================================
   3. BUTTONS
   ========================================= */
.btn-row,
.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn,
a.btn,
button.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-soft,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

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

.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(24, 79, 74, 0.18);
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary,
a.btn-secondary,
button.btn-secondary,
.btn-outline,
a.btn-outline,
button.btn-outline {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 22px rgba(16, 56, 52, 0.07);
}

.btn-secondary:hover,
a.btn-secondary:hover,
button.btn-secondary:hover,
.btn-outline:hover,
a.btn-outline:hover,
button.btn-outline:hover {
  background: rgba(24, 79, 74, 0.08);
}

.btn-soft,
a.btn-soft,
button.btn-soft,
.btn-light,
a.btn-light,
button.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-color: rgba(17, 89, 80, 0.08);
  box-shadow: 0 10px 22px rgba(16, 56, 52, 0.08);
}

.btn-soft:hover,
a.btn-soft:hover,
button.btn-soft:hover,
.btn-light:hover,
a.btn-light:hover,
button.btn-light:hover {
  background: #ffffff;
}

/* Fallback: if an anchor was not given .btn, still make CTA-like links presentable */
.page-hero-actions > a:not(.btn),
.cta-block .btn-row > a:not(.btn),
.value-card > a:not(.btn),
.referral-card > a:not(.btn),
.quick-card > a:not(.btn),
.about-copy > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(16, 56, 52, 0.08);
}

/* =========================================
   4. HEADER / NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  background: rgba(250, 251, 247, 0.94);
  border-bottom: 1px solid rgba(24, 79, 74, 0.08);
  box-shadow: 0 10px 30px rgba(16, 56, 52, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand-text span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.desktop-nav {
  display: flex;
  gap: 1.1rem;
}

.desktop-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-actions .btn-primary {
  min-height: 50px;
  padding-inline: 1.5rem;
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.4rem;
}

.mobile-panel {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

/* =========================================
   5. HERO
   ========================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 0 2.75rem;
}

.hero::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 30px;
  width: 300px;
  height: 300px;
  background: url("../images/logo.png") no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.hero-note {
  max-width: 620px;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-visual-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(16, 56, 52, 0.09);
}

.hero-image {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-floating-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 228, 223, 0.85);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(16, 56, 52, 0.08);
  backdrop-filter: blur(10px);
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1.05rem;
}

.hero-floating-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 89, 80, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(16, 51, 47, 0.08);
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-trust-note strong {
  color: var(--text);
  font-weight: 800;
}

/* =========================================
   6. QUICK ACTIONS
   ========================================= */
.quick-actions {
  padding-top: 3.2rem;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  min-height: 245px;
  padding: 1.65rem 1.55rem;
  border-radius: 26px;
  border-top: 4px solid var(--primary);
  background: linear-gradient(to bottom, #ffffff, #f5faf8);
}

.quick-card:nth-of-type(2) {
  border-top-color: var(--gold-soft);
  background: linear-gradient(to bottom, #ffffff, #f8f7f1);
}

.quick-card:nth-of-type(3) {
  border-top-color: var(--accent);
  background: linear-gradient(to bottom, #ffffff, #f7f8f8);
}

.quick-card::before,
.value-card::before,
.referral-card::before,
.about-highlight::before,
.about-copy::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(199, 169, 91, 0.14) 0%,
    rgba(199, 169, 91, 0.06) 38%,
    transparent 72%
  );
  pointer-events: none;
}

.quick-card::after,
.value-card::after,
.referral-card::after,
.about-highlight::after,
.about-copy::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: 0;
  width: 120px;
  height: 120px;
  background: url("/assets/images/logo.png") no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
}

.quick-card > *,
.value-card > *,
.referral-card > *,
.about-highlight > *,
.about-copy > * {
  position: relative;
  z-index: 1;
}

.quick-card h3,
.service-card h3,
.referral-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.22rem;
  line-height: 1.25;
}

.quick-card p,
.service-card p,
.referral-card p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.quick-card .btn,
.referral-card .btn,
.value-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.quick-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 56, 52, 0.1);
}

/* =========================================
   7. ABOUT / MISSION
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-copy,
.about-highlight,
.service-card,
.referral-card,
.value-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-copy,
.about-highlight {
  height: 100%;
  padding: 1.9rem;
}

.about-copy {
  background: linear-gradient(to bottom, #ffffff, #fbfcfb);
}

.about-highlight {
  background: linear-gradient(to bottom, #ffffff, #f7faf8);
}

.about-copy h2,
.trust-copy h2,
.cta-block h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.about-copy p {
  max-width: 640px;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy .btn {
  margin-top: 1.5rem;
}

.about-highlight ul {
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.about-highlight li {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

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

.about-highlight strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

/* =========================================
   8. SERVICES
   ========================================= */
#services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(17, 95, 89, 0.12);
  background: #fcfcfa;
  box-shadow: 0 12px 30px rgba(17, 95, 89, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  min-height: 270px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0f665f, #97b6aa);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 102, 95, 0.08) 0%,
    rgba(15, 102, 95, 0.03) 45%,
    rgba(15, 102, 95, 0) 70%
  );
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 95, 89, 0.1);
  border-color: rgba(17, 95, 89, 0.22);
}

.service-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 1.15rem + 0.8vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #233534;
  max-width: 16ch;
}

.service-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #586867;
  max-width: 32ch;
}

/* slightly larger intro spacing if needed */
#services-list .section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.28;
}

.service-card p {
  line-height: 1.62;
}

.section-action {
  margin-top: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.6rem 1.35rem;
    border-radius: 1.4rem;
  }

  .service-card h3 {
    max-width: 100%;
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
  }

  .service-card p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-card::after {
    width: 90px;
    height: 90px;
    right: -18px;
    bottom: -18px;
  }
}

/* =========================================
   9. STAFF / TRUST SECTION
   ========================================= */
.trust-section {
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.25rem;
  align-items: center;
}

.trust-image-wrap {
  position: relative;
}

.trust-image-wrap::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 120px;
  height: 120px;
  background: rgba(201, 178, 122, 0.12);
  border-radius: 26px;
}

.trust-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(16, 56, 52, 0.08);
}

.trust-copy {
  padding: 0.5rem 0;
}

.trust-copy p {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.trust-copy ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.trust-copy li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.trust-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================
   10. RESOURCE BANNER
   ========================================= */
.resource-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border: none;
  border-radius: 28px;
  padding: 2.3rem;
  background: linear-gradient(135deg, var(--primary), #2b6f69);
  color: #ffffff;
}

.resource-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  z-index: 0;
  width: 240px;
  height: 240px;
  background: url("../images/logo.png") no-repeat center / contain;
  opacity: 0.045;
  pointer-events: none;
}

.resource-banner > * {
  position: relative;
  z-index: 1;
}

.resource-banner h2 {
  max-width: 720px;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.resource-banner p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.resource-actions {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

.resource-actions .btn {
  min-width: 190px;
  white-space: nowrap;
}

/* =========================================
   11. REFERRALS / SURVEY
   ========================================= */
.referrals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.referral-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 250px;
  padding: 1.75rem;
  background: linear-gradient(to bottom, #ffffff, #fbfcfb);
}

.referral-card:first-child {
  border-top: 4px solid var(--primary);
}

.referral-card:last-child {
  border-top: 4px solid var(--gold-soft);
}

/* =========================================
   12. BOOKING / CONTACT CTA
   ========================================= */
.cta-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem;
  border-radius: 30px;
}

.cta-block::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  z-index: 0;
  width: 150px;
  height: 150px;
  background: url("/assets/images/logo.png") no-repeat center / contain;
  opacity: 0.03;
  pointer-events: none;
}

.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block p {
  max-width: 760px;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.contact-mini span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f5f7f5;
}

/* =========================================
   13. PAGE HERO / INNER PAGES
   ========================================= */
.page-hero {
  padding: 2.3rem 0 1.6rem;
}

.page-hero + .section {
  padding-top: 1.4rem;
}

.page-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: 2.25rem 2.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 178, 122, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8fbf8 58%, #f2f7f5 100%);
  box-shadow: var(--shadow-soft);
}

.page-hero-card::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  background: url("../images/logo.png") no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
}

.page-hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--primary), var(--gold-soft));
  opacity: 0.9;
}

.page-hero-copy,
.page-hero-note {
  position: relative;
  z-index: 1;
}

.page-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 3.8vw, 3.85rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.page-hero-copy p {
  max-width: 740px;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.page-hero-note {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 18px 36px rgba(16, 56, 52, 0.08);
}

.page-hero-note strong,
.page-hero-note span {
  display: block;
}

.page-hero-note strong {
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1rem;
}

.page-hero-note span {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.8rem;
  border: 1px solid rgba(26, 61, 58, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.value-card h3 {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
}

.value-card p {
  margin-bottom: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.value-card--teal {
  border-top: 5px solid #1d655d;
}

.value-card--gold {
  border-top: 5px solid #c7a95b;
}

.value-card--soft {
  border-top: 5px solid #7c9a95;
}

/* =========================================
   14. FOOTER
   ========================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 1.2rem;
  background: #eef4f1;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 210px;
  height: 210px;
  background: url("/assets/images/logo.png") no-repeat center / contain;
  opacity: 0.03;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.1rem;
  align-items: stretch;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 85, 77, 0.12);
}

.footer-brand-single,
.footer-links-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 85, 77, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(18, 42, 38, 0.05);
}

.footer-brand-single {
  display: grid;
  gap: 0.75rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
}

.footer-logo-horizontal {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.footer-brand-single p {
  max-width: 340px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-links-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.25rem;
}

.footer-links-head {
  margin-bottom: 1rem;
}

.footer-links-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 2rem;
}

.footer-links-grid a,
.footer-links a {
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links-grid a:hover,
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-links-bottom {
  margin-top: auto;
  padding-top: 1rem;
}

.footer-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-mini-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(13, 85, 77, 0.12);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.93rem;
}

/* =========================================
   15. RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .trust-grid,
  .resource-banner,
  .cta-block,
  .footer-grid,
  .page-hero-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .resource-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card h3 {
    max-width: none;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 82px;
  }

  .header-inner {
    min-height: 82px;
  }

  .quick-actions-grid,
  .referrals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    font-size: 0.78rem;
  }

  .hero {
    padding: 2.75rem 0 2.2rem;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 8vw, 3.6rem);
  }

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

  .resource-banner,
  .cta-block,
  .referral-card,
  .service-card,
  .quick-card,
  .about-copy,
  .about-highlight {
    padding: 1.45rem;
  }
}

@media (max-width: 800px) {
  .site-footer {
    padding: 1.9rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .footer-links-card,
  .footer-brand-single {
    padding: 1rem 1.1rem;
    border-radius: 20px;
  }

  .footer-logo-horizontal {
    width: 160px;
    margin-bottom: 0.65rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.2rem;
  }

  .footer-links-bottom {
    margin-top: 0.9rem;
    padding-top: 0.8rem;
  }
}

@media (max-width: 768px) {
  .resource-banner {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .resource-actions,
  .resource-actions .btn {
    width: 100%;
  }

  .resource-actions .btn {
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .container,
  .quick-actions .container,
  .section > .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .section {
    padding: 2.9rem 0;
  }

  .hero {
    padding: 2.25rem 0;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy h1,
  .hero h1 {
    max-width: 100%;
    margin-bottom: 0.85rem;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-copy p,
  .hero p,
  .trust-copy p,
  .resource-banner p,
  .referral-card p,
  .service-card p,
  .quick-card p,
  .cta-block p,
  .about-copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 0.85rem;
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 0 1.25rem;
    white-space: nowrap;
  }

  .hero-note {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-trust-note {
    display: block;
    border-radius: 24px;
    padding: 14px 16px;
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .hero-image,
  .trust-image {
    min-height: 300px;
  }

  .hero-image {
    height: 390px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-floating-card {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem;
  }

  .hero-floating-card strong {
    font-size: 1rem;
  }

  .hero-floating-card p {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 2.5rem 0.9rem 1rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.84rem;
  }

  .compact-heading h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .quick-card,
  .referral-card,
  .value-card {
    min-height: auto;
  }

  .quick-card h3 {
    font-size: 1.08rem;
  }

  .quick-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .cta-block {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.15rem;
  }

  .cta-block .btn-row,
  .page-hero-actions,
  .page-hero-actions.btn-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-block .btn,
  .page-hero-actions .btn {
    width: 100%;
  }

  .contact-mini {
    display: grid;
    gap: 0.6rem;
  }

  .contact-mini span {
    width: 100%;
    border-radius: 16px;
  }

  .page-hero {
    padding: 1.4rem 0 1.2rem;
  }

  .page-hero-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.08;
  }

  .page-hero-copy p,
  .page-hero-note span {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .values-grid {
    gap: 0.85rem;
  }

  .value-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .value-card::after {
    width: 110px;
    height: 110px;
    right: -14px;
    bottom: -14px;
  }

  .value-card h3 {
    font-size: 1.08rem;
  }

  .value-card p {
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-head p,
  .footer-mini-link {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

/* =========================================
   SERVICES PAGE HERO REFINEMENT
   ========================================= */

.page-hero-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.4rem;
  bottom: 2.4rem;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f665f, #c9ad5d);
  opacity: 0.85;
}

.page-hero-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -55px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(13, 85, 77, 0.08) 0%,
    rgba(13, 85, 77, 0.035) 45%,
    rgba(13, 85, 77, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.page-hero-copy,
.page-hero-note {
  position: relative;
  z-index: 1;
}

.page-hero-note {
  align-self: center;
  max-width: 420px;
  padding: 1.4rem 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 85, 77, 0.12);
  box-shadow: 0 16px 40px rgba(18, 42, 38, 0.08);
}

.page-hero-note strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  color: var(--text);
}

.page-hero-note span {
  display: block;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-hero-card {
  gap: 2rem;
}

.page-hero-note {
  justify-self: end;
}

@media (max-width: 860px) {
  .page-hero-card::before {
    top: 1.3rem;
    bottom: auto;
    left: 1.2rem;
    right: 1.2rem;
    width: auto;
    height: 5px;
  }

  .page-hero-note {
    max-width: 100%;
  }

  .page-hero-card {
    gap: 1.25rem;
  }

  .page-hero-note {
    justify-self: stretch;
  }
}
/* =========================================
   SERVICES INTRO / CARE APPROACH REFINEMENT
   ========================================= */

.about-grid {
  align-items: stretch;
}

.about-copy,
.about-highlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-copy::after,
.about-highlight::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 155px;
  height: 155px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(13, 85, 77, 0.06) 0%,
    rgba(13, 85, 77, 0.025) 48%,
    rgba(13, 85, 77, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.about-copy > *,
.about-highlight > * {
  position: relative;
  z-index: 1;
}

.about-highlight ul {
  display: grid;
  gap: 1.15rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-highlight li {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(13, 85, 77, 0.12);
}

.about-highlight li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-highlight strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
}

.about-highlight span {
  display: block;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight ul {
    gap: 1rem;
  }
}
/* =========================================
   SERVICES STEP CARDS REFINEMENT
   ========================================= */

.values-grid {
  align-items: stretch;
}

.value-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.value-card p:not(.eyebrow) {
  margin-bottom: 1.4rem;
}

.value-card .btn {
  margin-top: auto;
  width: fit-content;
}

.value-card:not(:has(.btn))::after {
  content: "Personalized care";
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: rgba(13, 85, 77, 0.07);
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 700px) {
  .value-card {
    min-height: auto;
  }

  .value-card .btn,
  .value-card:not(:has(.btn))::after {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   SERVICES BOTTOM CTA POLISH
   ========================================= */

.cta-block {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at right bottom,
      rgba(13, 85, 77, 0.06),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.88);
}

.cta-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f665f, #c9ad5d);
  opacity: 0.85;
}

.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block .btn-row {
  align-items: center;
  justify-content: flex-end;
}

.cta-block + * {
  margin-top: 0;
}

@media (max-width: 800px) {
  .cta-block::before {
    top: 1.25rem;
    bottom: auto;
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    height: 5px;
  }

  .cta-block .btn-row {
    justify-content: flex-start;
  }
}

/* =========================================
   PROVIDER PROFILE IMAGE
   ========================================= */

.provider-profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.75rem;
  align-items: stretch;
}

.provider-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 85, 77, 0.12);
  box-shadow: 0 18px 45px rgba(18, 42, 38, 0.08);
}

.provider-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.provider-profile-card {
  position: relative;
  overflow: hidden;
}

.provider-role {
  margin-top: -0.4rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 800;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 1.6rem;
}

.provider-tags span {
  display: inline-flex;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(13, 85, 77, 0.07);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .provider-profile-grid {
    grid-template-columns: 1fr;
  }

  .provider-image-card {
    min-height: auto;
  }

  .provider-image-card img {
    min-height: auto;
    max-height: 520px;
  }
}

@media (max-width: 520px) {
  .provider-image-card {
    border-radius: 1.4rem;
  }

  .provider-profile-card .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-profile-card .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   PROVIDER PROFILE IMAGE - CLEAN VERSION
   ========================================= */

.provider-profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.75rem;
  align-items: stretch;
}

.provider-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 520px;
  padding: 2rem;
  background:
    radial-gradient(circle at center, rgba(13, 85, 77, 0.06), transparent 55%),
    #f8fbf8;
  border: 1px solid rgba(13, 85, 77, 0.12);
  box-shadow: 0 18px 45px rgba(18, 42, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-image-card img {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(18, 42, 38, 0.16);
}

.provider-profile-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.provider-profile-card h2 {
  margin-bottom: 0.35rem;
}

.provider-role {
  margin: 0 0 1.25rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.45;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 1.6rem;
}

.provider-tags span {
  display: inline-flex;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(13, 85, 77, 0.07);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .provider-profile-grid {
    grid-template-columns: 1fr;
  }

  .provider-image-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .provider-image-card img {
    max-width: 360px;
  }
}

@media (max-width: 520px) {
  .provider-image-card {
    border-radius: 1.4rem;
  }

  .provider-profile-card {
    padding: 1.6rem;
  }

  .provider-profile-card .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-profile-card .btn {
    width: 100%;
    justify-content: center;
  }
}
.page-referrals main > .section:last-child {
  padding-bottom: 2.5rem;
}

/* =========================================
   RESOURCES PAGE CARDS
   ========================================= */

.resource-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.resource-link-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.resource-link-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.resource-link-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 135px;
  height: 135px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(13, 85, 77, 0.055) 0%,
    rgba(13, 85, 77, 0.025) 48%,
    rgba(13, 85, 77, 0) 72%
  );
  pointer-events: none;
}

.resource-link-card > * {
  position: relative;
  z-index: 1;
}

.resource-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 85, 77, 0.07);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.resource-link-card h3 {
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.resource-link-card p {
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.35rem;
}

.resource-link-card .btn {
  margin-top: auto;
  width: fit-content;
}

@media (max-width: 1100px) {
  .resource-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .resource-links-grid {
    grid-template-columns: 1fr;
  }

  .resource-link-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .resource-link-card .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-detail-card {
  position: relative;
  overflow: hidden;
}

.contact-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.contact-detail-card h2 {
  margin-bottom: 0.75rem;
}

.contact-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-form-card,
.contact-guidance-card {
  position: relative;
  overflow: hidden;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 800;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(13, 85, 77, 0.16);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(13, 85, 77, 0.42);
  box-shadow: 0 0 0 4px rgba(13, 85, 77, 0.08);
}

.form-row textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-guidance-card ul {
  display: grid;
  gap: 1.1rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-guidance-card li {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(13, 85, 77, 0.12);
}

.contact-guidance-card li:last-child {
  border-bottom: 0;
}

.contact-guidance-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-guidance-card span {
  display: block;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-mini-cta {
  margin-top: 2rem;
  padding: 1.35rem;
  border-radius: 1.4rem;
  background: rgba(13, 85, 77, 0.055);
}

.contact-mini-cta h3 {
  margin-bottom: 0.5rem;
}

.contact-mini-cta .btn-row {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .contact-details-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-detail-card,
  .contact-form-card,
  .contact-guidance-card {
    padding: 1.5rem;
  }

  .contact-form .btn,
  .contact-mini-cta .btn,
  .contact-layout .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   CONTACT PAGE 
   ========================================= */

.contact-details-grid {
  align-items: stretch;
}

.contact-detail-card {
  min-height: 240px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.contact-detail-card .eyebrow {
  margin-bottom: 1rem;
}

.contact-detail-card h2 {
  margin-bottom: 0.8rem;
}

.contact-detail-card p {
  margin-bottom: 1rem;
}

.contact-detail-card .contact-link {
  margin-top: auto;
  word-break: break-word;
}

.contact-layout {
  margin-top: 0;
}

.contact-form-card,
.contact-guidance-card {
  padding: 2rem;
}

@media (max-width: 980px) {
  .contact-detail-card {
    min-height: auto;
  }
}

/* =========================================
   BOOKING PAGE
   ========================================= */

.booking-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.booking-option-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.booking-option-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.booking-option-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(13, 85, 77, 0.06) 0%,
    rgba(13, 85, 77, 0.025) 48%,
    rgba(13, 85, 77, 0) 72%
  );
  pointer-events: none;
}

.booking-option-card > * {
  position: relative;
  z-index: 1;
}

.booking-option-card h2 {
  margin-bottom: 0.75rem;
}

.booking-option-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.booking-option-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.booking-option-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.booking-option-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.booking-option-card .btn {
  margin-top: auto;
  width: fit-content;
}

.booking-option-primary {
  background:
    radial-gradient(
      circle at right bottom,
      rgba(13, 85, 77, 0.055),
      transparent 34%
    ),
    #ffffff;
}

@media (max-width: 900px) {
  .booking-options-grid {
    grid-template-columns: 1fr;
  }

  .booking-option-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .booking-option-card {
    padding: 1.5rem;
  }

  .booking-option-card .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Contact form status and anti-spam field */
.form-status {
  border-radius: 14px;
  font-weight: 700;
  margin: 1rem 0;
  padding: 0.9rem 1rem;
}

.form-status-success {
  background: #edf8f4;
  border: 1px solid rgba(15, 92, 85, 0.25);
  color: #0f5c55;
}

.form-status-error {
  background: #fff4ed;
  border: 1px solid rgba(173, 89, 36, 0.25);
  color: #8a3d13;
}

.form-honeypot {
  height: 1px !important;
  left: -10000px !important;
  opacity: 0 !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}
