/* =============================================
   Yosis Design - Shared Stylesheet
   Brand: Navy + Champagne Gold + Cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1a1a2e;
  --navy-light: #2a2a48;
  --gold: #b8863c;
  --gold-light: #d4a85f;
  --cream: #faf8f3;
  --cream-warm: #f0ebe0;
  --ink: #1a1a2e;
  --muted: #6b6b7a;
  --soft: #4a4a5a;
  --border: #e8e2d4;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--navy);
}

/* =============================================
   Header / Navigation
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 14px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 92px;
  width: auto;
}

.brand-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 1000;
  color: var(--navy);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.brand-text .sep {
  color: var(--gold);
  font-style: italic;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 2px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 10px 22px;
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  border: 1px solid var(--navy);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--cream) !important;
  border-color: var(--gold);
}

.nav-cta::after {
  display: none !important;
}

/* =============================================
   Layout Containers
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 90px 0;
  position: relative;
}

/* When jumping to a section via #anchor, leave space for the sticky header */
section[id] {
  scroll-margin-top: 80px;
}

.section-tight {
  padding: 60px 0;
}

/* =============================================
   Typography
   ============================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--soft);
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.divider::before { left: -10px; }
.divider::after { right: -10px; }

.divider-left {
  margin: 24px 0;
}

/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

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

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}

/* Variant for use on dark/navy backgrounds — hover transitions to gold */
.btn-on-dark {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-on-dark:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

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

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

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =============================================
   Hero
   ============================================= */

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 60, 0.08), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 26, 46, 0.04), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideIn 0.8s ease-out;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 134, 60, 0.3);
  pointer-events: none;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   Cards & Grids
   ============================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.08);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Service list (for services page) */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s ease;
}

.service-item:hover {
  background: var(--cream);
}

.service-item-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.service-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-item p {
  color: var(--soft);
  font-size: 14.5px;
}

/* =============================================
   Section: Centered Header
   ============================================= */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  margin-top: 12px;
}

/* =============================================
   Background Variations
   ============================================= */

.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: var(--white);
}

.bg-warm {
  background: var(--cream-warm);
}

.bg-navy {
  background: var(--navy);
  color: var(--cream);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--cream);
}

.bg-navy em {
  color: var(--gold-light);
}

.bg-navy .lead {
  color: rgba(250, 248, 243, 0.85);
}

.bg-navy .eyebrow {
  color: var(--gold-light);
}

/* =============================================
   Two Column Layouts
   ============================================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}

.two-col-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 134, 60, 0.3);
  pointer-events: none;
  z-index: 2;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
}

/* =============================================
   Stats Strip
   ============================================= */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num em {
  font-style: italic;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   Testimonials
   ============================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
  font-weight: 500;
}

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  margin: 24px 0 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* =============================================
   CTA Strip
   ============================================= */

.cta-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
}

.cta-strip h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-strip h2 em {
  color: var(--gold-light);
}

.cta-strip p {
  font-size: 16px;
  color: rgba(250, 248, 243, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* =============================================
   Pricing Cards (Packages page)
   ============================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.18);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-amount {
  color: var(--cream);
}

.pricing-card.featured .pricing-feature {
  color: rgba(250, 248, 243, 0.85);
  border-bottom-color: rgba(184, 134, 60, 0.2);
}

.pricing-card.featured .pricing-feature::before {
  color: var(--gold-light);
}

.pricing-card.featured .pricing-feature strong {
  color: var(--cream);
}

.pricing-card.featured .pricing-amount-section {
  border-top-color: rgba(184, 134, 60, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.pricing-tier-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier-label {
  color: var(--gold-light);
}

.pricing-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  margin-bottom: 6px;
  line-height: 1;
}

.pricing-card.featured .pricing-name {
  color: var(--cream);
}

.pricing-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-tagline {
  color: var(--gold-light);
}

.pricing-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.pricing-features {
  list-style: none;
  flex-grow: 1;
}

.pricing-feature {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--soft);
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--cream-warm);
  position: relative;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--gold);
  font-size: 8px;
}

.pricing-feature strong {
  color: var(--navy);
  font-weight: 600;
}

.pricing-amount-section {
  text-align: center;
  padding-top: 22px;
  margin-top: 18px;
  border-top: 1px solid var(--border);
}

.pricing-amount-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.pricing-amount-note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}

.pricing-card.featured .pricing-amount-note {
  color: rgba(250, 248, 243, 0.7);
}

.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  background: var(--navy);
  color: var(--cream);
}

.pricing-card.featured .pricing-cta {
  border-color: var(--gold);
  color: var(--gold-light);
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* Care & Continuity (4th tier) - horizontal strip */
.care-strip {
  background: var(--white);
  border: 1px solid var(--gold);
  margin-top: 36px;
  padding: 32px 40px;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.care-strip::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 0.5px solid rgba(184, 134, 60, 0.3);
  pointer-events: none;
}

.care-tier-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.care-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.care-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}

.care-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.care-feature {
  font-size: 13px;
  line-height: 1.5;
  color: var(--soft);
  padding-left: 16px;
  position: relative;
}

.care-feature::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 7px;
}

.care-feature strong {
  color: var(--navy);
  font-weight: 600;
}

.care-amount-block {
  text-align: center;
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.care-amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.care-amount-suffix {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

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

.faq-question::after {
  content: '+';
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 15.5px;
  color: var(--soft);
  line-height: 1.7;
  padding: 16px 0 0;
  font-weight: 300;
}

/* =============================================
   How It Works Steps
   ============================================= */

.steps-list {
  margin-top: 48px;
}

.step-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step-row:last-child {
  border-bottom: none;
}

.step-num-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--navy);
  position: relative;
  background: var(--cream);
}

.step-num-circle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 0.5px solid rgba(184, 134, 60, 0.4);
  border-radius: 50%;
}

.step-info h4 {
  font-size: 24px;
  margin-bottom: 6px;
}

.step-info p {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6;
}

.step-info-tier {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-time-badge {
  text-align: right;
  min-width: 100px;
}

.step-time-badge-label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}

.step-time-badge-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
}

/* =============================================
   Forms
   ============================================= */

.form {
  display: grid;
  gap: 20px;
  max-width: 600px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--sans);
}

/* Form success/error messages */
.form-message {
  margin-top: 32px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gold);
  position: relative;
  text-align: center;
  animation: fadeInUp 0.4s ease-out;
}

.form-message::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 0.5px solid rgba(184, 134, 60, 0.3);
  pointer-events: none;
}

.form-message-success {
  border-color: var(--gold);
}

.form-message-error {
  border-color: #c44;
}

.form-message-error::before {
  border-color: rgba(204, 68, 68, 0.3);
}

.form-message-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.form-message h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.form-message p {
  color: var(--soft);
  font-size: 15.5px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.form-message a {
  color: var(--gold);
  text-decoration: none;
}

.form-message a:hover {
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-card {
  margin-bottom: 32px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--navy);
}

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

/* =============================================
   Footer
   ============================================= */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 24px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 96px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(250, 248, 243, 0.7);
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--sans);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(250, 248, 243, 0.85);
  font-size: 14px;
  font-weight: 300;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 134, 60, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(250, 248, 243, 0.5);
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 960px) {
  section {
    padding: 64px 0;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    max-width: 460px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .care-features {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 24px;
  }

  .care-amount-block {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 24px;
  }

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

  .step-row {
    grid-template-columns: 64px 1fr;
  }

  .step-time-badge {
    grid-column: 2;
    text-align: left;
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 16px;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a.nav-cta {
    align-self: stretch;
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .feature-grid,
  .testimonial-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

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

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

  .container,
  .container-narrow {
    padding: 0 24px;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 40px;
  }

  .stat-num {
    font-size: 44px;
  }

  .brand-text {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .brand img {
    height: 40px;
  }
}
