

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

:root {
  --anthracite:   #1C1F26;
  --blue:         #1E3A8A;
  --blue-mid:     #254BAD;
  --blue-light:   #2D59CC;
  --blue-pale:    #EEF2FB;
  --gold:         #C8A45C;
  --gold-light:   #D9B87A;
  --gold-pale:    #F6EFE0;
  --gold-ultra:   #FBF8F2;
  --white:        #FFFFFF;
  --off-white:    #F9F7F4;
  --gray-light:   #F2F0ED;
  --gray:         #6A6A6A;
  --gray-mid:     #999;
  --border:       #E3DDD5;
  --border-gold:  rgba(200,164,92,0.30);

  --navy:        var(--blue);
  --navy-mid:    var(--blue-mid);
  --navy-light:  var(--blue-light);
  --lavender:    var(--gold-pale);
  --lavender-dk: var(--gold-light);
  --black:       var(--anthracite);
  --off-white:   #F9F7F4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--anthracite);
  background: var(--white);
  overflow-x: hidden;
}


nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 28px rgba(28,31,38,0.09); }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--anthracite); letter-spacing: 0.5px;
  text-decoration: none; flex-shrink: 0;
  display: flex; align-items: baseline; gap: 0;
}
.logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.logo-wrap {
  display: flex; flex-direction: column;
  text-decoration: none; flex-shrink: 0;
}
.logo-wrap .logo { font-size: 1.55rem; }
.logo-wrap .logo-line {
  display: block; height: 2px; width: 36px;
  background: var(--gold); border-radius: 1px;
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.82rem; font-weight: 500;
  padding: 0 1rem; height: 72px;
  display: flex; align-items: center;
  letter-spacing: 0.4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover  { color: var(--anthracite); border-bottom-color: var(--gold-light); }
.nav-links a.active { color: var(--blue);       border-bottom-color: var(--gold); }

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  height: 38px !important;
  padding: 0 1.5rem !important;
  border-radius: 3px !important;
  border-bottom: none !important;
  margin-left: 1rem;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--anthracite); transition: all 0.3s; }


.photo-zone {
  position: relative; overflow: hidden;
  background: var(--gold-ultra); cursor: pointer;
}
.photo-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0;
  cursor: pointer; z-index: 3; width: 100%; height: 100%;
}
.photo-zone img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1; display: none;
}
.upload-hint {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 0.65rem; pointer-events: none;
}
.upload-hint svg { width: 30px; height: 30px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
.upload-hint p {
  font-size: 0.76rem; color: var(--gray-mid);
  font-weight: 500; text-align: center;
  padding: 0 1.2rem; line-height: 1.5; letter-spacing: 0.2px;
}
.photo-zone:hover .upload-hint svg { stroke: var(--blue); }
.photo-zone:hover .upload-hint p  { color: var(--blue); }
.photo-zone.has-photo .upload-hint { display: none; }
.photo-zone.has-photo img          { display: block; }

.change-btn {
  position: absolute; bottom: 14px; right: 14px; z-index: 4;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--gold);
  color: var(--blue);
  font-size: 0.71rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 3px;
  cursor: pointer; display: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px; transition: all 0.2s;
}
.photo-zone.has-photo .change-btn { display: block; }
.change-btn:hover { background: white; border-color: var(--blue); }


.page-wrapper { padding-top: 72px; min-height: 100vh; }
.section    { padding: 6rem 8%; }
.section-sm { padding: 4rem 8%; }

.sec-label {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 0.8rem;
}
.sec-label::before {
  content: '';
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); border-radius: 1px;
  flex-shrink: 0;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: var(--anthracite); margin-bottom: 1.3rem;
}
.sec-title-white { color: white !important; }
.sec-title-blue  { color: var(--blue) !important; }

.sec-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.78; max-width: 720px; }
.sec-sub + .sec-sub { margin-top: 0.9rem; }
.sec-sub-white { color: rgba(255,255,255,0.62) !important; }


.btn-primary {
  display: inline-block;
  background: var(--blue); color: white;
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--blue);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.5px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); transform: translateY(-1px); }

.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--anthracite);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--gold);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.5px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--blue);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--blue);
  transition: all 0.2s; letter-spacing: 0.5px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-outline:hover { background: var(--blue); color: white; }

.btn-outline-gold {
  display: inline-block;
  background: transparent; color: var(--gold);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--gold);
  transition: all 0.2s; letter-spacing: 0.5px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--anthracite); }

.btn-outline-white {
  display: inline-block;
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.2s; letter-spacing: 0.5px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.10); border-color: white; }


.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 1.8rem 1.6rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(28,31,38,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.card-gold { background: var(--gold-pale);  border-color: var(--border-gold); }
.card-dark { background: rgba(255,255,255,0.04); border-color: rgba(200,164,92,0.2); }

.card h3 { font-weight: 600; font-size: 0.93rem; color: var(--blue); margin-bottom: 0.5rem; }
.card p  { font-size: 0.85rem; color: var(--gray); line-height: 1.68; }

.icon-wrap {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.icon-wrap svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.5; }


.page-header {
  background: var(--blue);
  padding: 5.5rem 8% 4.5rem;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 8%;
  width: 56px; height: 3px;
  background: var(--gold);
}
.page-header .sec-label { color: rgba(200,164,92,0.80); }
.page-header .sec-label::before { background: rgba(200,164,92,0.5); }
.page-header .sec-title { color: white; }
.page-header .sec-sub   { color: rgba(255,255,255,0.62); }

.dark-band { background: var(--anthracite); padding: 5rem 8%; }
.dark-band .sec-label         { color: rgba(200,164,92,0.75); }
.dark-band .sec-label::before { background: rgba(200,164,92,0.4); }
.dark-band .sec-title { color: white; }
.dark-band .sec-sub   { color: rgba(255,255,255,0.58); }

.blue-band { background: var(--blue); padding: 5rem 8%; }
.blue-band .sec-label         { color: rgba(200,164,92,0.80); }
.blue-band .sec-label::before { background: rgba(200,164,92,0.5); }
.blue-band .sec-title { color: white; }
.blue-band .sec-sub   { color: rgba(255,255,255,0.62); }


.divider      { height: 1px; background: var(--border);    margin: 0 8%; }
.gold-divider { height: 1px; background: var(--border-gold); margin: 0 8%; }


footer {
  background: var(--anthracite);
  padding: 4.5rem 8% 2.5rem;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo { color: white; font-size: 1.4rem; }
.footer-brand .logo em { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.40);
  line-height: 1.75; margin-top: 0.9rem; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.84rem; color: rgba(255,255,255,0.48);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(200,164,92,0.15);
  padding-top: 1.6rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.79rem; color: rgba(255,255,255,0.26);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.26); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }


.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }


@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: var(--white);
    border-bottom: 2px solid var(--gold);
    padding: 0.8rem 0;
    box-shadow: 0 8px 32px rgba(28,31,38,0.10);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    height: auto; padding: 0.8rem 6%;
    border-bottom: none; width: 100%;
  }
  .nav-cta {
    margin: 0.5rem 6% !important;
    width: calc(100% - 12%) !important;
    justify-content: center !important;
    border-radius: 3px !important;
    height: 42px !important;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 6%; }
  .page-header { padding: 4rem 6% 3.5rem; }
  .dark-band, .blue-band { padding: 4rem 6%; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
#main-nav .logo {
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 1;
}

#main-nav .logo img {
  height: 32px;           
  width: auto;
  max-width: 180px;       
  object-fit: contain;
  display: block;
}

#main-nav .logo img.logo-light { display: none; }
#main-nav .logo img.logo-dark { display: block; }

.page-header + #main-nav .logo img.logo-light,
#main-nav.nav-dark .logo img.logo-light { display: block; }
#main-nav.nav-dark .logo img.logo-dark { display: none; }