/* ============================================
   H&M Holistic Wellness Center
   Luxury Primary Care Telehealth Website
   Color Palette: Metallic Royal Blue + Gold
   ============================================ */

:root {
  --royal-blue: #0A1F44;
  --royal-blue-mid: #0D2B55;
  --royal-blue-light: #1A3A6E;
  --gold: #D4AF37;
  --gold-dark: #C9A227;
  --gold-light: #E8C872;
  --ivory: #F8F5F0;
  --cream: #F5F0E6;
  --charcoal: #1C1C1C;
  --text-dark: #2A2A2A;
  --text-muted: #5A5A5A;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 40px rgba(10, 31, 68, 0.08);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--text-dark);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--royal-blue);
  line-height: 1.25;
}

p, li, a, span, button, input, textarea {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: linear-gradient(90deg, var(--royal-blue) 0%, var(--royal-blue-mid) 100%);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.top-bar span {
  color: var(--gold);
}

/* ========== NAVIGATION ========== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(10, 31, 68, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo img {
  height: 125px;
  width: auto;
}

.logo-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--royal-blue);
  letter-spacing: 0.3px;
}

.logo-contact a {
  color: var(--royal-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo-contact a:hover {
  color: var(--gold-dark);
}

.logo-contact .phone {
  font-weight: 600;
}

.logo-contact .email {
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--royal-blue);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--royal-blue) !important;
  padding: 12px 26px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  box-shadow: var(--shadow-gold);
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
  color: var(--royal-blue) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--royal-blue);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-mid) 55%, #0A2540 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ornament::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

.hero-content {
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero h1 span {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--royal-blue);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1.5px solid var(--gold);
  z-index: 0;
}

.hero-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  max-width: 200px;
  border-left: 3px solid var(--gold);
}

.hero-badge .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.hero-badge .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--royal-blue);
  font-weight: 600;
  line-height: 1.3;
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 100px 0;
}

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

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 18px;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 18px;
}

/* ========== WELCOME / INTRO ========== */
.intro-section {
  background: var(--white);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.intro-text .lead {
  font-size: 1.15rem;
  color: var(--royal-blue-mid);
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 300;
}

.intro-visual {
  position: relative;
}

.intro-visual .main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.intro-visual .accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.intro-visual .accent-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}

.intro-visual .accent-box .txt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.9;
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.06) 0%, rgba(212, 175, 55, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 2px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--royal-blue);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

/* ========== PHILOSOPHY BANNER ========== */
.philosophy-banner {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-mid) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.philosophy-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  transform: translateY(-50%);
}

.philosophy-content {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.philosophy-content .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.7;
}

.philosophy-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.philosophy-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ========== DIVERSE CARE SECTION ========== */
.care-scenes {
  background: var(--white);
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.scene-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--royal-blue);
  border-radius: 4px;
}

.scene-card .scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.scene-card:hover .scene-img {
  transform: scale(1.05);
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.scene-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
}

.scene-overlay span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Luxury placeholder scenes using CSS gradients + patterns */
.scene-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scene-1 { background: linear-gradient(160deg, #0A1F44 0%, #1A3A6E 50%, #0D2B55 100%); }
.scene-2 { background: linear-gradient(160deg, #1A3A6E 0%, #0A1F44 60%, #0D2B55 100%); }
.scene-3 { background: linear-gradient(145deg, #0D2B55 0%, #0A1F44 40%, #1A3A6E 100%); }
.scene-4 { background: linear-gradient(170deg, #0A1F44 20%, #1A3A6E 70%, #0D2B55 100%); }

.scene-placeholder .icon-circle {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-placeholder .icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

/* ========== FOUNDER SPOTLIGHT ========== */
.founder-section {
  background: var(--ivory);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.founder-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.founder-info .credentials {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.founder-info h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.founder-info .title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--royal-blue-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.founder-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ========== VALUES ========== */
.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: var(--transition);
}

.value-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-soft);
}

.value-item .value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.value-item .value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.value-item h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #0A2540 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--royal-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-brand .logo-text .brand {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-brand .logo-text .sub {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

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

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-mid) 100%);
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ========== ABOUT PAGE ========== */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.mv-card {
  background: var(--white);
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.bio-full {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.bio-full img {
  width: 100%;
  box-shadow: var(--shadow-soft);
}

.bio-full h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.bio-full .creds {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.bio-full p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.85;
}

/* ========== SERVICES PAGE ========== */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-detail {
  background: var(--white);
  padding: 40px 36px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-detail:hover {
  transform: translateX(4px);
}

.service-detail h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-detail p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.contact-details .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}

.contact-details .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.contact-form-wrap {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrap .form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 31, 68, 0.12);
  background: var(--ivory);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 300;
  line-height: 1.6;
}

/* ========== LUXURY DECOR ELEMENTS ========== */
.decor-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.decor-divider .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.decor-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-badge {
    left: 10px;
  }

  .intro-grid,
  .founder-grid,
  .bio-full,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 90px;
  }

  .logo-contact {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

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

  .hamburger {
    display: flex;
  }

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

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

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

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 60px 0 50px;
  }

  .bio-full {
    padding: 30px 24px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }