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

:root {
  --black: #080808;
  --black-soft: #111111;
  --black-mid: #1a1a1a;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --gray: rgba(255,255,255,0.5);
}

/* ── NAV BRAND TEXT ── */
.nav-brand {
  display: inline-flex; flex-direction: row;
  align-items: center; gap: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.nav-brand .amp { color: var(--gold); }
.nav-brand em {
  font-style: normal; color: var(--gold);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.06em; font-family: 'Cormorant Garamond', serif;
}

/* ── HERO LOGO ── */
.hero-logo-wrap { text-align: center; margin-bottom: 32px; }
.hero-logo-img {
  width: 220px; height: 220px;
  object-fit: contain; display: inline-block;
  mix-blend-mode: lighten;
}

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

/* ── NAV ── */
nav {
  position:fixed; top:0; width:100%; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 60px; height:180px;
  background:rgba(8,8,8,0.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(201,146,42,0.2);
}
.nav-logo {
  background: none !important;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family:'Cormorant Garamond',serif;
  font-size:1.35rem; font-weight:600; color:var(--white);
  text-decoration:none; letter-spacing:0.04em;
}
.nav-logo span { color:var(--gold); }

/* ── MOBILE LOGO TEXT ── */
.nav-logo-mobile {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.nav-links { display:flex; gap:36px; list-style:none; align-items:center; }
.nav-links a {
  color:rgba(255,255,255,0.7); text-decoration:none;
  font-size:0.78rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase;
  transition:color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-cta {
  background:var(--gold) !important; color:var(--black) !important;
  padding:10px 24px; font-weight:600 !important;
}
.nav-cta:hover { background:var(--gold-light) !important; }

/* hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); transition:all 0.3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display:none; position:fixed; top:80px; left:0; right:0;
  background:rgba(8,8,8,0.98); backdrop-filter:blur(16px);
  padding:32px 24px; flex-direction:column; gap:0;
  border-bottom:1px solid rgba(201,146,42,0.2); z-index:199;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  color:rgba(255,255,255,0.8); text-decoration:none;
  font-size:1rem; font-weight:500; letter-spacing:0.12em;
  text-transform:uppercase; padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color 0.2s;
}
.mobile-menu a:hover { color:var(--gold); }
.mobile-menu a.mob-cta {
  margin-top:20px; background:var(--gold);
  color:var(--black) !important; text-align:center;
  padding:18px; font-weight:700; border:none;
}

/* ── SHARED ELEMENTS ── */
.section-tag {
  display:inline-flex; align-items:center; gap:14px;
  color:var(--gold); font-size:0.72rem;
  font-weight:600; letter-spacing:0.22em; text-transform:uppercase;
  margin-bottom:20px;
}
.section-tag::before, .section-tag::after { content:''; display:block; width:36px; height:1px; background:var(--gold); }
.section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,4vw,3.4rem);
  font-weight:700; line-height:1.1; color:var(--white);
}
.section-title em { color:var(--gold); font-style:italic; }
.btn-gold {
  background:var(--gold); color:var(--black);
  padding:16px 40px; font-family:'Jost',sans-serif;
  font-size:0.78rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase;
  text-decoration:none; transition:all 0.25s; display:inline-block;
}
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-ghost {
  border:1px solid rgba(255,255,255,0.25); color:var(--white);
  padding:16px 40px; font-family:'Jost',sans-serif;
  font-size:0.78rem; font-weight:500;
  letter-spacing:0.18em; text-transform:uppercase;
  text-decoration:none; transition:all 0.25s; display:inline-block;
}
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); }

/* ── MARQUEE ── */
.marquee-bar { background:#080808; border-top:1px solid rgba(255,255,255,0.1); border-bottom:1px solid rgba(255,255,255,0.1); padding:16px 0; overflow:hidden; white-space:nowrap; }
.marquee-track { display:inline-flex; animation:marquee 22s linear infinite; }
.marquee-item {
  display:inline-flex; align-items:center; gap:20px; padding:0 28px;
  color:var(--black); font-size:0.72rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase;
}
.marquee-item::after { content:'✦'; font-size:0.55rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding:200px 60px 80px;
  text-align:center;
  background:var(--black-soft);
  border-bottom:1px solid rgba(201,146,42,0.15);
}
.page-hero h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,6vw,5rem);
  font-weight:700; color:var(--white); line-height:1.0;
}
.page-hero h1 em { color:var(--gold); font-style:italic; }
.page-hero p { color:var(--gray); font-size:1.05rem; margin-top:16px; font-weight:300; }

/* ── FOOTER ── */
footer {
  background:var(--black);
  border-top:1px solid rgba(201,146,42,0.2);
  padding:48px 60px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:24px;
}
.f-logo {
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem; font-weight:600; color:var(--white);
  text-decoration:none;
}
.f-logo span { color:var(--gold); }
.f-copy { color:rgba(255,255,255,0.3); font-size:0.8rem; }
.f-social { display:flex; gap:28px; }
.f-social a {
  color:rgba(255,255,255,0.35); font-size:0.72rem;
  letter-spacing:0.15em; text-transform:uppercase;
  text-decoration:none; transition:color 0.2s;
}
.f-social a:hover { color:var(--gold); }



/* ── NAV BRAND TEXT ── */
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-brand span { color: var(--gold); }
.nav-brand em {
  font-style: italic; color: var(--gold);
  font-size: 0.95rem; display: block;
  letter-spacing: 0.12em; font-weight: 400;
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.hero-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: inline-block;
}

/* ── MOBILE TEXT LOGO ── */
.nav-logo-text {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}
/* ── RESPONSIVE ── */
@media(max-width:768px) {
  nav { padding:0 20px; height: 64px !important; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .page-hero { padding:120px 24px 60px; }
  footer { padding:32px 24px; flex-direction:column; text-align:center; }
  .f-social { justify-content:center; }
}

/* ── ACCESSIBILITY & ADA ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 10px; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,146,42,0.3);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 99999;
  pointer-events: all;
}
#cookie-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--gold); color: var(--black);
  border: none; padding: 10px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  position: relative; z-index: 99999; pointer-events: all;
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
  position: relative; z-index: 99999; pointer-events: all;
}
.cookie-decline:hover { border-color: var(--gold); color: var(--gold); }
@media(max-width:768px){
  #cookie-banner { padding: 20px 24px; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ── LOGO ── */
/* ── LOGO MOBILE/DESKTOP SWITCH ── */
.mobile-logo {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.desktop-logo {
  display: block;
}



/* ── RICH FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(201,146,42,0.25);
  padding: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 60px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 60px;
}
.footer-logo-img {
  height: 160px;
  width: 160px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  font-style: normal;
}
.footer-tagline em {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
}
.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-contact a,
.footer-contact li {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,146,42,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}
.footer-bottom span {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── MOBILE FOOTER ── */
@media(max-width: 768px) {
  
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 40px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-logo-img {
  height: 160px;
  width: 160px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}
}

/* ── FORM BUTTON STYLE ── */
.form-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-step span {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.form-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 20px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  margin-bottom: 20px;
}
.form-open-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.form-note {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.78rem !important;
  text-align: center;
  margin: 0 !important;
}

/* ── NOTARY INQUIRY ── */
.notary-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin: 16px 0 20px !important;
}
.notary-inquiry {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.notary-inquiry input,
.notary-inquiry textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,146,42,0.25);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.notary-inquiry input::placeholder,
.notary-inquiry textarea::placeholder { color: rgba(255,255,255,0.3); }
.notary-inquiry input:focus,
.notary-inquiry textarea:focus { border-color: var(--gold); }
.notary-send {
  display: block;
  text-align: center;
  cursor: pointer;
  margin-top: 4px;
}
#notary-confirm {
  color: var(--gold);
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ── LOGO SIZING ── */
.nav-logo-img {
  height: 150px !important;
  width: 150px !important;
  object-fit: contain;
  display: block;
}
@media(max-width: 768px) {
  .nav-logo-img {
    height: 55px !important;
    width: 55px !important;
  }
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
  margin-bottom: 32px;
}
.hero-logo {
  height: 160px;
  width: 160px;
  object-fit: contain;
  display: block;
}
@media(max-width:768px){
  .hero-logo { height: 120px; width: 120px; }
}
