/* ===== ANDREA BOUTIQUE LLC - Main Stylesheet ===== */
:root {
  --navy: #0B1E3A;
  --navy-light: #132D54;
  --royal: #1A3A5C;
  --gold: #C8963E;
  --gold-light: #D4A853;
  --gold-pale: #F5ECD7;
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --text: #1a1a1a;
  --text-muted: #6B7280;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

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

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 30, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.nav--scrolled { box-shadow: var(--shadow-lg); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.nav__logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 1px; text-decoration: none; }
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; list-style: none; gap: 0.25rem; }
.nav__links a { color: rgba(255,255,255,0.85); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px; text-decoration: none; }
.nav__links a:hover, .nav__links a.active { color: var(--gold); background: rgba(255,255,255,0.06); }
.nav__toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; padding: 0.25rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--royal) 100%);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,150,62,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,150,62,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; max-width: 700px; }
.hero__eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-weight: 600; }
.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__title span { color: var(--gold); }
.hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1.15rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 540px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; text-decoration: none; }
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,150,62,0.35); color: var(--navy); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }
.hero__visual { position: absolute; right: 5%; top: 55%; transform: translateY(-50%); z-index: 1; }
.hero__card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 2.5rem; width: 360px;
}
.hero__card-stat { font-size: 2.8rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.hero__card-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.25rem; }
.hero__card-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 1.5rem 0; }
.hero__card-list { list-style: none; }
.hero__card-list li { color: rgba(255,255,255,0.75); padding: 0.4rem 0; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.hero__card-list li::before { content: '\25C6'; color: var(--gold); font-size: 0.5rem; }

/* ===== SECTION COMMON ===== */
.section { padding: 6rem 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.section__title { margin-bottom: 1rem; }
.section__title span { color: var(--gold); }
.section__subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); transform: scaleX(0); transition: var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 56px; height: 56px; background: var(--gold-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; color: var(--gold); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== ABOUT PREVIEW ===== */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-preview__image { position: relative; }
.about-preview__image-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); background: var(--gray-200); min-height: 400px; display: flex; align-items: center; justify-content: center; }
.about-preview__image-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 180px; height: 180px; background: var(--gold);
  border-radius: var(--radius-lg); z-index: -1;
  opacity: 0.3;
}
.about-preview__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.about-stat { text-align: center; }
.about-stat__number { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.about-stat__label { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.25rem; }

/* ===== INDUSTRIES ===== */
.industries-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.industry-item { background: var(--white); padding: 1.5rem 1rem; text-align: center; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.industry-item:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-item__icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--gold); }
.feature-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== PROCESS ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px; background: var(--gray-200); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num { width: 60px; height: 60px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.3rem; font-weight: 700; font-family: var(--font-heading); }
.process-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card { background: var(--white); padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card__text { color: var(--text-muted); font-style: italic; line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial-card__author { font-weight: 600; color: var(--navy); }
.testimonial-card__role { font-size: 0.85rem; color: var(--gray-400); }

/* ===== CTA ===== */
.cta { text-align: center; padding: 5rem 0; }
.cta h2 { color: var(--white); margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem; }
.footer__brand-name span { color: var(--gold); }
.footer__brand-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.9rem; text-decoration: none; }
.footer ul a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 10rem 0 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; top: -30%; right: -15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,150,62,0.1) 0%, transparent 70%); border-radius: 50%; }
.page-header__title { color: var(--white); margin-bottom: 0.75rem; }
.page-header__breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.page-header__breadcrumb a { color: var(--gold); text-decoration: none; }
.page-header__breadcrumb span { margin: 0 0.5rem; }

/* ===== ABOUT PAGE ===== */
.about-full { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-full__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.about-full__image-placeholder { background: var(--gray-200); border-radius: var(--radius-lg); min-height: 450px; display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 1.2rem; }
.mission-box { background: var(--navy); color: var(--white); padding: 2.5rem; border-radius: var(--radius-md); margin-top: 3rem; }
.mission-box h3 { color: var(--gold); margin-bottom: 1rem; }
.mission-box p { color: rgba(255,255,255,0.75); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-card { text-align: center; padding: 2rem 1rem; }
.value-card__icon { width: 64px; height: 64px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.6rem; color: var(--gold); }
.value-card h3 { font-size: 1.05rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info { background: var(--navy); color: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); }
.contact-info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info__icon { flex-shrink: 0; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-info__label { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; }
.contact-info__value { color: rgba(255,255,255,0.85); }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--navy); font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); background: var(--gray-50); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,62,0.12); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== LEGAL PAGES (Privacy & Terms) ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gray-100); }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.legal-content p { margin-bottom: 1rem; color: var(--gray-700); line-height: 1.8; }
.legal-content ul, .legal-content ol { margin: 0.75rem 0 1.25rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--gray-700); }
.legal-content .last-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; font-style: italic; }
.legal-content .toc { background: var(--gray-50); padding: 1.5rem 2rem; border-radius: var(--radius-md); margin-bottom: 2.5rem; border-left: 4px solid var(--gold); }
.legal-content .toc h3 { margin-top: 0; }
.legal-content .toc ol { margin-bottom: 0; }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 10rem 0; }
.error-page__code { font-size: 8rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); line-height: 1; }
.error-page h2 { margin: 1rem 0; }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-list { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-preview { grid-template-columns: 1fr; gap: 2rem; }
  .about-full { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1rem; }
  .nav__links--open { display: flex; }
  .nav__toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-list { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about-preview__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .industries-list { grid-template-columns: 1fr; }
  .about-preview__stats { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}
