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

:root {
  --navy:       #1B2A4A;
  --navy-deep:  #111D33;
  --navy-mid:   #2C3E6B;
  --blue-soft:  #4A6FA5;
  --cream:      #F8F5EF;
  --cream-dark: #EDE8DF;
  --gold:       #C9A96E;
  --gold-light: #E2C99A;
  --white:      #FFFFFF;
  --ink:        #1B2A4A;
  --text-muted: #6B7A99;
}

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

body {
  font-family: 'Raleway', sans-serif;
  background: var(--cream);
  color: var(--ink);
}

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,245,239,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,111,165,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text {
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-name {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--gold-light);
  margin-bottom: 28px;
  display: block;
}
.hero-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.hero p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(248,245,239,0.75);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 38px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 1px solid rgba(248,245,239,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,245,239,0.5);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-image {
  height: 92vh;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-deep) 0%, transparent 30%);
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-deep);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 28px auto;
}
.section-divider.left { margin: 28px 0; }

/* ── SERVICES SECTION ── */
.services-section {
  padding: 100px 40px;
  background: var(--cream);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.services-header h2 em { font-style: italic; color: var(--blue-soft); }
.services-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,42,74,0.1);
}
.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-image { overflow: hidden; }
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 10px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-name-script {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: block;
}
.about-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(248,245,239,0.75);
  line-height: 1.9;
  margin-bottom: 36px;
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy-deep); }

/* ── PROCESS ── */
.process-section {
  padding: 100px 40px;
  background: var(--cream-dark);
  text-align: center;
}
.process-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}
.process-section h2 em { font-style: italic; color: var(--blue-soft); }
.process-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { text-align: center; }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.process-step p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── PORTFOLIO CTA ── */
.portfolio-cta {
  background: var(--navy-deep);
  padding: 80px 40px;
  text-align: center;
}
.portfolio-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.portfolio-cta h2 em { font-style: italic; color: var(--gold); }
.portfolio-cta p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(248,245,239,0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 56px 40px 28px;
  text-align: center;
}
.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 24px;
  display: block;
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,245,239,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 20px;
}
.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(248,245,239,0.3);
  line-height: 2;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav {
    padding: 10px 16px 8px;
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
  }
  .nav-logo { order: 1; font-size: 22px; }
  .nav-cta { order: 3; font-size: 9px; padding: 9px 16px; margin: 2px auto 0; width: fit-content; }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
    width: 100%;
    padding: 6px 0 2px;
    border-top: 1px solid rgba(201,169,110,0.2);
    order: 2;
  }
  .nav-links a { font-size: 9px; letter-spacing: 1.5px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 60vw; }
  .hero-text { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-image { height: 60vw; }
  .about-text { padding: 56px 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
