/* =============================================
   ASTROLOGY SERVICES WEBSITE — MASTER STYLESHEET
   Design: Muted pastels — sage, dusty blue, sand & warm gray
   ============================================= */

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

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* --- Dark Palette (cool blue-gray) --- */
  --color-bg-darkest: #1F2228;
  --color-bg-dark: #272B33;
  --color-bg-dark-secondary: #303640;
  --color-bg-dark-accent: #3C434F;

  /* --- Light Palette (warm sand) --- */
  --color-bg-light: #F5F3EE;
  --color-bg-cream: #EBE6DD;
  --color-bg-warm: #F0EBE3;

  /* --- Accent: Sage Green (168,181,158) --- */
  --color-gold: #A8B59E;
  --color-gold-hover: #B8C3AE;
  /* --- Secondary: Dusty Blue (143,155,177) --- */
  --color-gold-light: #8F9BB1;
  --color-gold-faint: rgba(168, 181, 158, 0.12);

  /* --- Text --- */
  --color-text-dark: #2D2B2A;
  --color-text-gray: #6B6462;
  --color-text-light: #E8E5E0;
  /* --- Muted: Warm Gray (175,171,171) --- */
  --color-text-muted: #AFABAB;

  /* --- Borders --- */
  --color-border-dark: #4A4E57;
  /* --- Sand (206,189,173) --- */
  --color-border-light: #CEBDAD;

  /* --- Typography --- */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Spacing --- */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* --- Layout --- */
  --max-width: 1200px;
  --nav-height: 84px;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  margin-bottom: var(--space-md);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background-color: #6F826E;
  color: var(--color-text-light);
}

.section--darker {
  background-color: #6F826E;
  color: var(--color-text-light);
}

.section--light {
  background-color: #95A88C;
  color: var(--color-text-dark);
}

.section--cream {
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: black;
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
  color: black;
}

.section__subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: black;
  margin-top: var(--space-sm);
}

.section--light .section__subtitle,
.section--cream .section__subtitle {
  color: black;
}

.section__divider {
  width: 60px;
  height: 2px;
  background: black;
  margin: var(--space-lg) auto 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: #6F826E;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 181, 158, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.nav__logo-img {
  height: 64px;
  width: auto;
  border-radius: 0;
  background-color: white;
  padding: 4px;
  filter: contrast(1.05) brightness(1.02);
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.3s ease;
}

.nav__logo-img:hover {
  transform: scale(1.05) translateZ(0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: white;
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.nav__cta {
  display: inline-block;
  padding: 10px var(--space-lg);
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s;
}

.nav__cta:hover {
  background: var(--color-gold-hover);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
  background: #F5F3EE;
  overflow: hidden;
}

/* Star field — small stars */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 8% 18%, rgba(168, 181, 158, 0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 62%, rgba(143, 155, 177, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 22% 35%, rgba(168, 181, 158, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 80%, rgba(143, 155, 177, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 10%, rgba(168, 181, 158, 0.5) 0%, transparent 100%),
    radial-gradient(1.3px 1.3px at 42% 52%, rgba(143, 155, 177, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 28%, rgba(168, 181, 158, 0.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 58% 72%, rgba(206, 189, 173, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 15%, rgba(168, 181, 158, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 48%, rgba(143, 155, 177, 0.45) 0%, transparent 100%),
    radial-gradient(1.3px 1.3px at 78% 85%, rgba(168, 181, 158, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 32%, rgba(206, 189, 173, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 58%, rgba(168, 181, 158, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 45%, rgba(143, 155, 177, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 18% 90%, rgba(168, 181, 158, 0.45) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 38% 5%, rgba(206, 189, 173, 0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 95%, rgba(168, 181, 158, 0.4) 0%, transparent 100%),
    radial-gradient(1.3px 1.3px at 68% 65%, rgba(143, 155, 177, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 8%, rgba(168, 181, 158, 0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 42%, rgba(206, 189, 173, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 12% 75%, rgba(168, 181, 158, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 42%, rgba(143, 155, 177, 0.35) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 75% 22%, rgba(168, 181, 158, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 70%, rgba(206, 189, 173, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 32% 55%, rgba(143, 155, 177, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

/* Bright accent stars + soft central glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2.5px 2.5px at 20% 25%, rgba(168, 181, 158, 0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 50% 50%, rgba(143, 155, 177, 0.75) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 80% 35%, rgba(168, 181, 158, 0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 35% 75%, rgba(206, 189, 173, 0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 65% 85%, rgba(143, 155, 177, 0.65) 0%, transparent 100%),
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(168, 181, 158, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--space-sm);
}

.logo {
  width: 240px;
  height: 240px;
  border-radius: 4px;
  object-fit: cover;
  background-color: white;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  filter: contrast(1.05) brightness(1.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  image-rendering: auto;
}

.hero__title h1 {
  color: black;
  margin: 0;
  text-align: center;
  line-height: 1.1;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: BLACK;
  margin-bottom: var(--space-xl);
  margin-top: 0;
  text-align: center;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 14px var(--space-2xl);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--outline {
  background: #A39990;
  border: 1.5px solid var(--color-gold);
  color: BLACK;
}

.btn--outline:hover {
  background: #F5F3EE;
  color: var(--color-bg-dark);
}

.btn--solid {
  background: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  color: var(--color-bg-dark);
}

.btn--solid:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

/* ===== ABOUT ===== */
.about__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.about__image-wrapper {
  position: relative;
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
}

.about__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--color-gold);
  opacity: 0.25;
  pointer-events: none;
}

.about__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
}

.about__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: black;
  text-align: justify;
}

.section--light .about__text {
  color: black;
}

.section--dark .about__text {
  color: white;
}

.about__highlight {
  text-align: center;
  margin-top: var(--space-2xl);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: white;
}

/* --- Pillars (3-column philosophy) --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.pillar {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--border-radius-md);
  background: #EBE6DD;
}

.pillar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: black;
  margin-bottom: var(--space-md);
}

.pillar__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: black;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: #F5F3EE;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(168, 181, 158, 0.5);
  box-shadow: 0 4px 24px rgba(168, 181, 158, 0.1);
}

.service-card__icon {
  font-size: 2rem;
  color: black;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: black;
}

.service-card__list li {
  font-size: 0.88rem;
  line-height: 1.75;
  color: black;
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-xs);
}

.service-card__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.55rem;
  top: 5px;
}

.service-card__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: black;
  margin-bottom: var(--space-xs);
  text-align: justify;
}

/* ===== CELEBRATE ===== */
.celebrate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.celebrate-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl);
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.celebrate-card__icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  line-height: 1;
  filter: grayscale(100%) brightness(0.9);
}

.celebrate-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.celebrate-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-gray);
  margin-bottom: 0;
  text-align: justify;
}

/* ===== FEES ===== */
.fees__content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.fees__icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.fees__icon-item {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.fees__list {
  text-align: left;
}

.fees__item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.fees__item:last-child {
  border-bottom: none;
}

.fees__item-icon {
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 6px;
}

.fees__item-text {
  font-size: 1rem;
  line-height: 1.75;
  color: white;
  margin-bottom: 0;
}

.fees__note {
  margin-top: var(--space-2xl);
  color: white;
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl) var(--space-2xl) var(--space-lg);
  border: 1px solid var(--color-border-light);
  position: relative;
}

.testimonial-card__quote {
  position: absolute;
  top: 12px;
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-gray);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  text-align: justify;
}

.testimonial-card__author {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-gold);
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

/* Show more / Show less toggle */
.testimonials__toggle {
  text-align: center;
  margin-top: var(--space-2xl);
}

.testimonials__toggle-btn {
  background: #A39990;
  border: 1.5px solid var(--color-gold);
  color: black;
  padding: 12px var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.testimonials__toggle-btn:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.testimonial-card.hidden {
  display: none;
}

/* ===== PHILOSOPHY / CTA ===== */
.philosophy__text {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  text-align: center;
  color: white;
}

.philosophy__cta {
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #F5F3EE;
  color: var(--color-text-muted);
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid rgba(168, 181, 158, 0.2);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: black;
  margin-bottom: var(--space-md);
}

.footer__text {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 0;
  color: black;
  text-align: justify;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: black;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer__link {
  display: block;
  font-size: 0.88rem;
  color: black;
  padding: var(--space-2xs) 0;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8rem;
  color: black;
}

/* ===== CONSULTATION PAGE ===== */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: #F3F5EE;
  text-align: center;
  color: var(--color-text-light);
}

.page-header__title {
  margin-bottom: var(--space-sm);
  color: black;
}

.page-header__subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: black;
}

.consultation-intro {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.consultation-intro__text {
  font-size: 1rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 0;
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
  min-width: 0; /* Prevent overflow in grid/flex */
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.3px;
}

.form-label .required {
  color: #c0392b;
  margin-left: 2px;
}

.form-input,
.form-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-faint);
}

.form-input.error,
.form-textarea.error {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: var(--space-2xs);
  display: none;
}

.form-error.visible {
  display: block;
}

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

.form-char-count {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: var(--space-2xs);
}

.form-char-count.over {
  color: #c0392b;
  font-weight: 600;
}

/* Disclaimer */
.form-disclaimer {
  background: var(--color-bg-cream);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-border-light);
}

.form-disclaimer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.form-disclaimer__text {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--color-text-gray);
  text-align: justify;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: var(--space-md);
  padding-right: var(--space-sm);
}

.form-disclaimer__text::-webkit-scrollbar {
  width: 4px;
}

.form-disclaimer__text::-webkit-scrollbar-track {
  background: transparent;
}

.form-disclaimer__text::-webkit-scrollbar-thumb {
  background: var(--color-border-light);
  border-radius: 2px;
}

.form-disclaimer__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-disclaimer__check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-disclaimer__check label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
  line-height: 1.5;
}

/* Submit */
.form-submit-wrapper {
  text-align: center;
}

.form-submit {
  width: 100%;
  max-width: 320px;
  padding: 14px var(--space-2xl);
  background: #A39990;
  color: black;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.form-submit:hover:not(:disabled) {
  background: var(--color-gold-hover);
}

.form-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Messages */
.form-message {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  margin-top: var(--space-lg);
  display: none;
}

.form-message--success {
  display: block;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.25);
}

.form-message--error {
  display: block;
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.25);
}

/* Honeypot (anti-spam) */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  tab-index: -1;
}

/* ===== RESPONSIVE ===== */

/* Tablet landscape */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__inner>div:first-child {
    grid-column: 1 / -1;
  }
}

/* Tablet portrait / small screens */
@media (max-width: 768px) {

  /* Navigation — mobile menu */
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(31, 34, 40, 0.98);
    flex-direction: column;
    padding: var(--space-xl) 0;
    gap: 0;
    border-bottom: 1px solid rgba(168, 181, 158, 0.2);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__link {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }

  .nav__link:hover,
  .nav__link.active {
    background: #A39990;
    border-bottom: none;
  }

  .nav__cta {
    margin: var(--space-md) var(--space-lg) 0;
    text-align: center;
    display: block;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Layout */
  .section {
    padding: var(--space-3xl) 0;
  }

  .hero__layout {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .hero__text-content {
    align-items: center;
  }

  .hero__tagline {
    text-align: center;
  }

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

  .about__layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: var(--space-xl);
  }

  .about__image-wrapper {
    position: relative;
    top: auto;
    max-width: 280px;
    margin: 0 auto;
  }

  .about__image {
    aspect-ratio: 3 / 4;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__text {
    max-width: none;
    margin: 0 auto var(--space-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Phone */
@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    min-height: 90vh;
  }

  .hero__symbol {
    font-size: 2.5rem;
  }

  .nav__brand {
    font-size: 1.15rem;
  }

  .section__header {
    margin-bottom: var(--space-2xl);
  }

  .about__layout {
    max-width: 100%;
    gap: var(--space-lg);
  }

  .about__image-wrapper {
    max-width: 220px;
  }

  .service-card {
    padding: var(--space-lg);
  }

  .celebrate-card {
    padding: var(--space-lg);
  }

  .form-container {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--border-radius-md);
  }

  .testimonial-card {
    padding: var(--space-lg);
  }

  .pillar {
    padding: var(--space-lg);
  }
}