/* ========================================
   Swan Estates - Shared Design System
   ======================================== */

:root {
  --swan-red: #B71C2E;
  --swan-red-dark: #8B1523;
  --swan-red-deeper: #6A1019;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --gold: #C9A96E;
  --gold-light: #D4B97E;
  --charcoal: #1A1A1A;
  --text-dark: #2C2C2C;
  --text-body: #4A4A4A;
  --text-light: #6E6E6E;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== STICKY HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              box-shadow 0.35s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(183, 28, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.header-always-solid {
  background: rgba(183, 28, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.header-logo svg {
  width: 40px;
  height: 40px;
}

.header-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--white); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--white);
  color: var(--swan-red) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border-radius: 100px;
  letter-spacing: 0.02em !important;
  transition: all 0.25s ease;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-phone {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--swan-red);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139, 21, 35, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(106, 16, 25, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, var(--swan-red) 0%, var(--swan-red-dark) 50%, var(--swan-red-deeper) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 strong {
  font-weight: 600;
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--swan-red);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.hero-proof-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.hero-proof-text strong {
  color: var(--white);
  font-weight: 600;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 580px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

.hero-image-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  font-style: italic;
}

.hero-watermark {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  z-index: 1;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--charcoal);
  padding: 1.25rem 2rem;
}

.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ========== SECTION SHARED ========== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--swan-red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--white);
}

.steps-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--swan-red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 300;
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 2rem;
  background: var(--cream);
}

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.services-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-card-img {
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--swan-red);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-body);
  font-weight: 300;
}

.service-card .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--swan-red);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}

.service-card .btn-text:hover {
  gap: 0.75rem;
}

/* Service card spanning full width (for the showcase teaser) */
.service-card.full-width {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1.5fr;
}

/* ========== WHY SWAN ========== */
.why-swan {
  padding: 6rem 2rem;
  background: var(--swan-red);
  position: relative;
  overflow: hidden;
}

.why-swan::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--swan-red) 0%, var(--swan-red-dark) 100%);
}

.why-swan-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-swan .section-label { color: var(--gold); }
.why-swan .section-title { color: var(--white); }
.why-swan .section-subtitle { color: rgba(255,255,255,0.7); }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55;
}

.why-list li svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list li strong {
  font-weight: 600;
  color: var(--white);
}

.why-swan-cta {
  margin-top: 2.5rem;
}

.why-swan-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.why-swan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 6rem 2rem;
  background: var(--white);
}

.reviews-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--swan-red);
  opacity: 0.12;
  line-height: 1;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.reviews-link {
  text-align: center;
  margin-top: 3rem;
}

.reviews-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--swan-red);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.reviews-link a:hover { gap: 0.75rem; }

/* ========== CTA BAND ========== */
.cta-band {
  padding: 5rem 2rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183, 28, 46, 0.15) 0%, transparent 70%);
}

.cta-band-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-band .btn-primary {
  background: var(--swan-red);
  color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--gold);
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-band-phone {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.cta-band-phone a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

/* ========== FAQ ========== */
.faq {
  padding: 6rem 2rem;
  background: var(--cream);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
}

.faq-question:hover { color: var(--swan-red); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--swan-red);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--charcoal);
  transition: fill 0.3s ease;
}

.faq-item.active .faq-icon svg {
  fill: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  font-weight: 300;
}

/* ========== FAQ LINK (homepage replacement) ========== */
.faq-link-section {
  padding: 4rem 2rem;
  background: var(--cream);
  text-align: center;
}

.faq-link-section p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.faq-link-section a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--swan-red);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.faq-link-section a:hover { gap: 0.75rem; }

/* ========== FOOTER ========== */
.footer {
  padding: 4rem 2rem 2rem;
  background: var(--swan-red-deeper);
  color: var(--white);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 320px;
}

.footer-brand img {
  height: 80px !important;
  margin-bottom: 1.25rem;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1240px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--white); }

/* ========== CONTACT PAGE ========== */

/* Page hero (short) */
.page-hero {
  position: relative;
  padding: 8rem 2rem 4rem;
  background: var(--swan-red);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139, 21, 35, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--swan-red) 0%, var(--swan-red-dark) 50%, var(--swan-red-deeper) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact layout */
.contact-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
  align-items: start;
}

/* Form styles */
.contact-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: 16px;
}

.contact-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-form .form-intro {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--swan-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--swan-red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  background: var(--swan-red);
  color: var(--white);
}

.form-submit .btn-primary:hover {
  background: var(--swan-red-dark);
}

/* Contact sidebar */
.contact-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-item svg {
  width: 20px;
  height: 20px;
  fill: var(--swan-red);
  flex-shrink: 0;
}

.sidebar-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}

.sidebar-item a:hover {
  color: var(--swan-red);
}

.sidebar-item span {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Photo gallery */
.gallery-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========== SWAN SHOWCASE PAGE ========== */

/* Problem section */
.problem-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.problem-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 16px;
  border-left: 4px solid var(--swan-red);
}

.problem-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-body);
  font-weight: 300;
}

/* Showcase model steps */
.showcase-steps {
  padding: 6rem 2rem;
  background: var(--cream);
}

.showcase-steps-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.showcase-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.showcase-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.showcase-step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: rgba(183, 28, 46, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--swan-red);
  fill: none;
}

.showcase-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.showcase-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 300;
}

/* By the numbers */
.stats-section {
  padding: 5rem 2rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183, 28, 46, 0.12) 0%, transparent 70%);
}

.stats-grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.5;
}

/* Who this is for */
.audience-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.audience-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.audience-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.55;
}

.audience-list li svg {
  width: 22px;
  height: 22px;
  fill: var(--swan-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.audience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== MOBILE MENU ========== */
body.menu-open {
  overflow: hidden;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.mobile-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.mobile-phone-icon svg {
  width: 20px;
  height: 20px;
  stroke: white !important;
  fill: none;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 21, 35, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--swan-red);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.25s ease;
}

.mobile-menu-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.mobile-menu-links a {
  display: block;
  padding: 1rem 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}

.mobile-menu-links a:last-child {
  border-bottom: none;
}

.mobile-menu-links a:hover {
  color: var(--white);
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-image {
    max-height: 350px;
    aspect-ratio: 16/9;
    border-radius: 12px;
  }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid.three-col { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr 1.2fr; }
  .service-card.full-width { grid-template-columns: 1fr 1.2fr; }
  .why-swan-inner { grid-template-columns: 1fr; }
  .why-swan-image { display: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .problem-grid { grid-template-columns: 1fr; }
  .showcase-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-image { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .mobile-header-actions { display: flex; }
  .header-nav { display: none; }
  .mobile-menu { display: flex; }
  .header-logo img { height: 32px !important; }
  .header { padding: 0 1.25rem; }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
  }
  .hero-proof {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-card.full-width { grid-template-columns: 1fr; }
  .service-card-img { max-height: 220px; }
  .trust-bar-inner { gap: 1.5rem; }
  .trust-item { font-size: 0.75rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .showcase-steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image {
    max-height: 280px;
  }
}

/* ========== CROSSFADE SLIDER ========== */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider img.active {
  opacity: 1;
}

.slider img:first-child {
  position: relative;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Homepage hero cascade */
.hero-badge { animation: fadeInUp 0.6s ease both; animation-delay: 0.2s; }
.hero h1 { animation: fadeInUp 0.6s ease both; animation-delay: 0.35s; }
.hero-sub { animation: fadeInUp 0.6s ease both; animation-delay: 0.5s; }
.hero-actions { animation: fadeInUp 0.6s ease both; animation-delay: 0.65s; }
.hero-proof { animation: fadeInUp 0.6s ease both; animation-delay: 0.8s; }
.hero-image { animation: fadeInUp 0.8s ease both; animation-delay: 0.5s; }

/* Sub-page hero entrance */
.page-hero-inner { animation: fadeInUp 0.6s ease both; animation-delay: 0.15s; }

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-badge, .hero h1, .hero-sub, .hero-actions,
  .hero-proof, .hero-image, .page-hero-inner {
    animation: none;
  }
}
