/* ===== SELF-HOSTED FONTS ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/source-serif-4-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/source-serif-4-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/source-serif-4-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/source-serif-4-italic.woff2') format('woff2');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: #2d3748;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== COLORS ===== */
:root {
  --navy: #1B2A3D;
  --navy-dark: #142232;
  --navy-deeper: #0f1a28;
  --gold: #B08D3E;
  --gold-hover: #9A7A30;
  --gold-light: #D4A853;
  --blue-accent: #3A5068;
  --blue-label: #3A5068;
  --gray-bg: #F7F5F0;
  --text-dark: #1C1C1C;
  --text-body: #3D3D3D;
  --text-light: #8A9AB5;
  --white: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-dark);
}

.gold { color: var(--gold); }
.gold-inline { color: var(--gold); font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(176, 141, 62, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-submit {
  background: var(--blue-accent);
  color: var(--white);
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-submit:hover {
  background: #2d4358;
}

/* ===== SECTION HELPERS ===== */
.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-label);
  margin-bottom: 12px;
}

.section-label.light {
  color: var(--blue-accent);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 65px;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-call {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-accent);
  transition: color 0.2s;
}

.nav-call:hover {
  color: var(--navy);
}

.icon-phone { margin-right: 4px; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  z-index: 999;
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 48, 0.3);
  z-index: 1;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(27, 42, 61, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 60px 70px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
  border-top: 4px solid var(--navy);
}

.services .section-title {
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

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

.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  background: var(--gray-bg);
  padding: 80px 40px;
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-text .section-title {
  margin-bottom: 28px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.how-it-works .section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #8FA4B8;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== FINDER'S FEE ===== */
.finders-fee {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.fee-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(176, 141, 62, 0.13);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
}

.finders-fee .section-title {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.fee-desc, .fee-example {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.fee-example {
  margin-bottom: 36px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
  padding: 80px 40px;
  border-top: 4px solid var(--blue-accent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.contact-title {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex-shrink: 0;
}

.contact-details a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #fff;
}

.contact-details .icon-phone,
.contact-details .icon-email,
.contact-details .icon-pin {
  color: var(--blue-accent);
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 3px solid rgba(58, 80, 104, 0.55);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  background: rgba(255,255,255,0.12);
}

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

/* ===== FORM CONSENT ===== */
.form-consent {
  padding: 4px 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.consent-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-text a:hover {
  color: var(--gold-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deeper);
  text-align: center;
  padding: 40px 20px;
  border-top: 4px solid var(--blue-accent);
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blue-accent);
  margin-bottom: 8px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PRIVACY BANNER ===== */
.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 20px 40px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.privacy-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.privacy-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-banner-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  flex: 1;
}

.privacy-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-banner-text a:hover {
  color: var(--gold-light);
}

.privacy-banner-actions {
  flex-shrink: 0;
}

/* ===== PRIVACY PAGE ===== */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.privacy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.privacy-content .privacy-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--navy);
}

.privacy-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.privacy-content li {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 4px;
}

.privacy-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .navbar {
    padding: 0 20px;
  }

  .hero-card {
    padding: 40px 28px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .finders-fee .section-title {
    font-size: 2.2rem;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .privacy-banner {
    padding: 16px 20px;
  }

  .privacy-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .privacy-content {
    padding: 100px 20px 60px;
  }

  .privacy-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-card {
    padding: 32px 20px;
  }

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

  .step-number {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .services, .about, .how-it-works, .finders-fee, .contact {
    padding: 60px 20px;
  }
}
