/* ===========================
   ASHLEY FLOTT — GLOBAL STYLES
   Inspired by asknatalia.ca aesthetic:
   warm cream/beige, dark charcoal, serif headings, clean layout
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --cream: #f7f3ed;
  --cream2: #ede8df;
  --cream3: #e5ddd1;
  --white: #ffffff;
  --charcoal: #2a2a2a;
  --charcoal2: #3d3d3d;
  --warm-gray: #7a7062;
  --gold: #b8975a;
  --gold-light: #d4b07a;
  --dark-navy: #1e2433;
  --section-pad: 90px 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.85;
}

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

/* =================== NAVBAR =================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  transition: all 0.3s;
}
.nav-logo img {
  height: 48px; width: auto;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500;
  color: var(--charcoal); letter-spacing: 1px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-contact {
  display: flex; gap: 16px; align-items: center;
}
.nav-phone {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--warm-gray);
}

/* Hamburger for mobile */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0; z-index: 999;
  background: var(--white);
  padding: 24px 32px;
  border-top: 1px solid var(--cream3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-direction: column; gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--charcoal2); padding: 10px 0;
  border-bottom: 1px solid var(--cream2);
}

/* =================== HERO =================== */
.hero {
  margin-top: 76px;
  min-height: calc(100vh - 76px);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 12px;
  font-style: italic;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 18px); font-weight: 400;
  color: var(--warm-gray); margin-bottom: 28px;
  letter-spacing: 1px;
}
.hero-desc {
  max-width: 460px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative; overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
  transition: transform 10s ease;
}
.hero-image:hover img { transform: scale(1.03); }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
}
.hero-badge {
  position: absolute; bottom: 40px; left: 40px;
  background: var(--white);
  padding: 20px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 400; color: var(--gold); line-height: 1;
}
.hero-badge-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--warm-gray); margin-top: 4px;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  padding: 14px 32px;
  cursor: pointer; border: none;
  transition: all 0.3s;
}
.btn-gold {
  background: var(--gold); color: var(--white);
}
.btn-gold:hover { background: #9f7e45; }
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* =================== SECTION STYLES =================== */
section { padding: 90px 60px; }

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block; width: 36px; height: 1px;
  background: var(--gold);
}
.section-title { margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { max-width: 540px; margin-bottom: 52px; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-label {
  justify-content: center;
}
.section-header.center .section-label::before { display: none; }
.section-header.center .section-label::after {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}

/* =================== STATS BAR =================== */
.stats-bar {
  background: var(--dark-navy);
  padding: 40px 60px;
  display: flex; justify-content: space-around; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 400; color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 8px;
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.12);
}

/* =================== CARDS =================== */
.card {
  background: var(--white);
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.card-icon {
  font-size: 28px; color: var(--gold); margin-bottom: 20px;
}
.card h3 { margin-bottom: 14px; font-size: 20px; }
.card p { font-size: 14px; }

/* =================== GRIDS =================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =================== DIVIDER =================== */
.divider {
  height: 1px;
  background: var(--cream3);
  margin: 0 60px;
}

/* =================== FOOTER =================== */
footer {
  background: var(--dark-navy);
  color: var(--white);
}
.footer-top {
  padding: 80px 60px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 400; letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-logo-text span { color: var(--gold-light); }
.footer-about {
  font-family: 'Lato', sans-serif;
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  color: var(--gold-light); margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: 'Lato', sans-serif; font-size: 14px;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  font-family: 'Lato', sans-serif; font-size: 14px;
  color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.footer-contact-item strong {
  display: block;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 4px;
}
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }

.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: 'Lato', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-license {
  font-family: 'Lato', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* =================== PAGE HERO (inner pages) =================== */
.page-hero {
  margin-top: 76px;
  background: var(--dark-navy);
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--gold);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.55); font-size: 15px;
  max-width: 520px; margin: 0 auto;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 8px; align-items: center;
  margin-bottom: 20px;
}
.breadcrumb a, .breadcrumb span {
  font-family: 'Raleway', sans-serif; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb span:last-child { color: var(--gold-light); }

/* =================== TESTIMONIAL =================== */
.testimonial-card {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 100px; font-weight: 400;
  color: var(--gold-light); opacity: 0.3;
  position: absolute; top: 10px; left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Lato', sans-serif; font-size: 15px;
  line-height: 1.85; color: var(--charcoal2);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
}
.testimonial-role {
  font-family: 'Lato', sans-serif; font-size: 12px;
  color: var(--warm-gray); margin-top: 4px;
}

/* =================== FORM =================== */
.form-section { background: var(--cream); }
.form-wrap {
  background: var(--white);
  padding: 60px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  color: var(--warm-gray); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--cream3);
  padding: 13px 16px;
  font-family: 'Lato', sans-serif; font-size: 14px;
  color: var(--charcoal);
  outline: none; transition: border-color 0.3s;
  resize: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea { height: 160px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* =================== UTILS =================== */
.bg-cream { background: var(--cream); }
.bg-cream2 { background: var(--cream2); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark-navy); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  :root { --section-pad: 70px 40px; }
  .navbar { padding: 0 32px; }
  section { padding: 70px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 55vh; }
  .hero-image-overlay { background: linear-gradient(to bottom, var(--cream), transparent 30%); }
  .hero-content { padding: 60px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer .footer-bottom { padding: 20px 40px; }
  .stats-bar { padding: 40px 32px; }
  .page-hero { padding: 60px 40px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 60px 24px; }
  .stats-bar { padding: 40px 24px; }
  .stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; padding: 60px 24px; }
  .footer-bottom { padding: 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 24px; }
  .page-hero { padding: 60px 24px; }
}
