/* ==========================================================================
   visit-muse.sbs — utility-first lite + minimal BEM
   Palette: petrol teal #13494e / #1d6166 + warm sand #cfa56a on white
   Fonts: Playfair Display (display serif) + system sans body
   Base: 17px, max-width 1180px, radius 999px (pill buttons)
   Hero: card-overlay. Cards: border-left accent.
   ========================================================================== */

/* ---------- Custom properties ---------- */
:root {
  --teal-dark:   #13494e;
  --teal-mid:    #1d6166;
  --teal-light:  #2a7f86;
  --sand:        #cfa56a;
  --sand-light:  #e8c99a;
  --sand-pale:   #faf5ec;
  --white:       #ffffff;
  --off-white:   #f8f9f8;
  --text-dark:   #0f2f32;
  --text-body:   #2e4346;
  --text-muted:  #5e7b7e;
  --border:      #d0e4e6;

  --ff-display:  "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body:     -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-base:     17px;
  --fs-sm:       0.85rem;
  --fs-md:       1rem;
  --fs-lg:       1.125rem;
  --fs-xl:       1.35rem;
  --fs-2xl:      1.65rem;
  --fs-3xl:      2.2rem;
  --fs-4xl:      3rem;
  --fs-5xl:      3.8rem;

  --lh-base:     1.7;
  --lh-tight:    1.2;
  --lh-heading:  1.25;

  --sp-1:        0.25rem;
  --sp-2:        0.5rem;
  --sp-3:        0.75rem;
  --sp-4:        1rem;
  --sp-5:        1.5rem;
  --sp-6:        2rem;
  --sp-8:        3rem;
  --sp-10:       4rem;
  --sp-12:       5rem;
  --sp-16:       7rem;

  --container:   1180px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 8px rgba(19,73,78,0.10);
  --shadow-md:   0 6px 24px rgba(19,73,78,0.14);
  --shadow-lg:   0 12px 40px rgba(19,73,78,0.18);

  --transition:  0.22s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: var(--fs-base);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--sand);
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-2         { gap: var(--sp-2); }
.gap-3         { gap: var(--sp-3); }
.gap-4         { gap: var(--sp-4); }
.gap-5         { gap: var(--sp-5); }
.gap-6         { gap: var(--sp-6); }
.gap-8         { gap: var(--sp-8); }
.wrap          { flex-wrap: wrap; }

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

.text-center   { text-align: center; }
.text-sm       { font-size: var(--fs-sm); }
.text-lg       { font-size: var(--fs-lg); }
.text-xl       { font-size: var(--fs-xl); }
.text-muted    { color: var(--text-muted); }
.text-sand     { color: var(--sand); }
.text-teal     { color: var(--teal-mid); }
.text-dark     { color: var(--text-dark); }
.text-white    { color: var(--white); }

.font-display  { font-family: var(--ff-display); }
.font-bold     { font-weight: 700; }
.font-semi     { font-weight: 600; }

.mt-2          { margin-top: var(--sp-2); }
.mt-3          { margin-top: var(--sp-3); }
.mt-4          { margin-top: var(--sp-4); }
.mt-5          { margin-top: var(--sp-5); }
.mt-6          { margin-top: var(--sp-6); }
.mt-8          { margin-top: var(--sp-8); }
.mb-2          { margin-bottom: var(--sp-2); }
.mb-3          { margin-bottom: var(--sp-3); }
.mb-4          { margin-bottom: var(--sp-4); }
.mb-5          { margin-bottom: var(--sp-5); }
.mb-6          { margin-bottom: var(--sp-6); }
.mb-8          { margin-bottom: var(--sp-8); }

.py-8          { padding-block: var(--sp-8); }
.py-10         { padding-block: var(--sp-10); }
.py-12         { padding-block: var(--sp-12); }
.py-16         { padding-block: var(--sp-16); }
.pt-8          { padding-top: var(--sp-8); }
.pb-8          { padding-bottom: var(--sp-8); }

.w-full        { width: 100%; }
.max-prose     { max-width: 680px; }
.mx-auto       { margin-inline: auto; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--text-dark);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }

p + p { margin-top: var(--sp-4); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--sp-3);
}

.section-heading {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}

.section-lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.72rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
  line-height: 1.3;
}

.btn-primary {
  background: var(--sand);
  color: var(--text-dark);
  border-color: var(--sand);
}

.btn-primary:hover {
  background: var(--sand-light);
  border-color: var(--sand-light);
  box-shadow: 0 4px 16px rgba(207,165,106,0.45);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}

.btn-outline:hover {
  background: var(--teal-mid);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--teal-dark);
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: var(--fs-sm);
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-dark);
  border-bottom: 2px solid var(--teal-mid);
  box-shadow: 0 2px 12px rgba(19,73,78,0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav__brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav__brand-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.nav__brand-name span {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 400;
  font-family: var(--ff-body);
  color: var(--sand-light);
  letter-spacing: 0.06em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}

.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--white);
  text-decoration: none;
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__link--cta {
  background: var(--sand);
  color: var(--text-dark);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--sand-light);
  color: var(--text-dark);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  color: var(--white);
}

/* ---------- Hero: card-overlay ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19,73,78,0.25) 0%,
    rgba(19,73,78,0.15) 40%,
    rgba(9,25,27,0.65) 75%,
    rgba(9,25,27,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 0;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: var(--sp-10) var(--sp-10) var(--sp-12);
  max-width: 780px;
  box-shadow: 0 -8px 40px rgba(19,73,78,0.20);
  border-top: 4px solid var(--sand);
}

.hero__card .eyebrow {
  margin-bottom: var(--sp-3);
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, var(--fs-5xl));
  margin-bottom: var(--sp-5);
  color: var(--text-dark);
  line-height: 1.1;
}

.hero__title em {
  font-style: normal;
  color: var(--teal-mid);
}

.hero__lead {
  font-size: var(--fs-lg);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.hero__stat-num {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--teal-mid);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* ---------- Cards: border-left accent ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-6);
  transition: box-shadow var(--transition), transform var(--transition),
              border-left-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-left-color: var(--teal-mid);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-4);
}

.card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-3);
}

.card__text {
  color: var(--text-body);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--teal-mid);
}

.card__link::after {
  content: "\2192";
}

/* ---------- Featured cards grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* ---------- Section wrapper ---------- */
.section {
  padding-block: var(--sp-12);
}

.section--alt {
  background: var(--sand-pale);
}

.section--dark {
  background: var(--teal-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--teal {
  background: var(--teal-mid);
  color: var(--white);
}

.section--teal h2,
.section--teal h3,
.section--teal h4 {
  color: var(--white);
}

.section-header {
  margin-bottom: var(--sp-8);
}

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ---------- Steps ---------- */
.steps {
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  counter-increment: step-counter;
}

.step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--text-dark);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__body h4 {
  margin-bottom: var(--sp-2);
}

/* ---------- Table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-md);
}

.compare-table th {
  background: var(--teal-dark);
  color: var(--white);
  font-family: var(--ff-display);
  padding: var(--sp-4);
  text-align: left;
  font-weight: 600;
}

.compare-table td {
  padding: var(--sp-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: middle;
}

.compare-table tr:nth-child(even) td {
  background: var(--sand-pale);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.tick {
  color: var(--teal-mid);
  font-weight: 700;
}

.dash {
  color: var(--text-muted);
}

/* ---------- Accordion / FAQ ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.accordion__item {
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: var(--sp-5);
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: background var(--transition);
}

.accordion__trigger:hover {
  background: var(--sand-pale);
}

.accordion__trigger[aria-expanded="true"] {
  background: var(--sand-pale);
  color: var(--teal-mid);
}

.accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__panel {
  padding: 0 var(--sp-5) var(--sp-5);
  background: var(--white);
  display: none;
}

.accordion__panel[hidden] {
  display: none;
}

.accordion__panel:not([hidden]) {
  display: block;
}

.accordion__panel p {
  color: var(--text-body);
  line-height: var(--lh-base);
}

/* ---------- Pricing cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  align-items: start;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  background: var(--white);
  transition: box-shadow var(--transition), border-color var(--transition);
}

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

.pricing-card--featured {
  border-color: var(--sand);
  background: var(--teal-dark);
  color: var(--white);
  position: relative;
}

.pricing-card--featured h3,
.pricing-card--featured h4,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured p {
  color: var(--white);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand);
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-2);
}

.pricing-card__price {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--teal-mid);
  line-height: 1;
  margin-block: var(--sp-4);
}

.pricing-card__price sup {
  font-size: var(--fs-xl);
  vertical-align: super;
}

.pricing-card__price span {
  font-size: var(--fs-sm);
  font-weight: 400;
  font-family: var(--ff-body);
  color: var(--text-muted);
  margin-left: var(--sp-1);
}

.pricing-card__features {
  list-style: none;
  margin-block: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-md);
  color: var(--text-body);
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.88);
}

.pricing-card__features li::before {
  content: "\2713";
  font-weight: 700;
  color: var(--sand);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.team-card {
  text-align: center;
}

.team-card__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
  border: 3px solid var(--sand);
}

.team-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-2);
}

.team-card__role {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--teal-mid);
  margin-bottom: var(--sp-3);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Form ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-label abbr {
  color: var(--sand);
  text-decoration: none;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(29,97,102,0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: var(--sp-2);
}

.form-status {
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-md);
  display: none;
}

.form-status--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-status--error {
  background: #ffeaea;
  color: #7b1515;
  border: 1px solid #f5a5a5;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-6);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sand);
}

.timeline-year {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--teal-mid);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.05em;
}

.timeline-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--sp-2);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--sp-5);
}

.testimonial__quote {
  font-style: italic;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.testimonial__author {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--teal-mid);
}

.testimonial__origin {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ---------- Contact info block ---------- */
.contact-block {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
}

.contact-block h3 {
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(207,165,106,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--sand);
}

.contact-detail__body dt {
  font-size: var(--fs-sm);
  color: var(--sand-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-1);
}

.contact-detail__body dd {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
  line-height: 1.5;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  color: var(--white);
  text-align: center;
  padding: var(--sp-12) var(--sp-5);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-lg);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  padding: var(--sp-12) 0 var(--sp-10);
  color: var(--white);
}

.page-hero__eyebrow {
  color: var(--sand-light);
  margin-bottom: var(--sp-3);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: var(--sp-4);
}

.page-hero p {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.65;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--sand-light);
  margin-bottom: var(--sp-4);
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li + li::before {
  content: "\203A";
  margin-right: var(--sp-2);
}

.breadcrumb a {
  color: var(--sand-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ---------- Rich text content ---------- */
.prose h2 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}

.prose h3 {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.prose p {
  margin-bottom: var(--sp-4);
}

.prose ul,
.prose ol {
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: var(--sp-2);
  line-height: 1.65;
}

.prose strong {
  color: var(--text-dark);
  font-weight: 700;
}

.prose a {
  color: var(--teal-mid);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.8);
  padding-top: var(--sp-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.footer-brand__tagline {
  font-size: var(--fs-sm);
  color: var(--sand-light);
  margin-bottom: var(--sp-4);
}

.footer-brand__desc {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-5);
}

.footer-col__heading {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: var(--sp-4);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col__links a:hover {
  color: var(--sand-light);
  text-decoration: none;
}

.footer-address {
  font-style: normal;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-address a {
  color: var(--sand-light);
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-5);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--sand-light);
}

/* ---------- Thank-you page ---------- */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-pale);
  padding: var(--sp-12) var(--sp-5);
}

.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-10);
  max-width: 600px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--sand);
}

.thankyou-card__icon {
  width: 72px;
  height: 72px;
  background: var(--sand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.thankyou-card__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--sand);
}

/* ---------- Privacy page ---------- */
.privacy-section {
  padding-block: var(--sp-12);
}

.policy-block {
  border-left: 4px solid var(--sand);
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.policy-block h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
}

/* ---------- Tag/badge ---------- */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(207,165,106,0.15);
  color: var(--teal-mid);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1px solid rgba(207,165,106,0.35);
}

/* ---------- Highlight box ---------- */
.highlight-box {
  background: var(--sand-pale);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}

.highlight-box--teal {
  background: rgba(29,97,102,0.06);
  border-color: var(--teal-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.85rem; }

  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--teal-dark);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4);
    gap: var(--sp-2);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 200;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__link {
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-sm);
  }

  .nav__link--cta {
    text-align: center;
    padding: var(--sp-3) var(--sp-4);
  }

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header {
    position: relative;
  }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col__img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__card { padding: var(--sp-8) var(--sp-6) var(--sp-10); }
  .hero__stats { gap: var(--sp-6); }
}

@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: var(--sp-4); }
  .hero__card { padding: var(--sp-6) var(--sp-4) var(--sp-8); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .container { padding-inline: var(--sp-4); }
}

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