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

:root {
  --rose:    #D89AA4;   /* accent only — dividers, subtle highlights */
  --beige:   #F4F1ED;   /* soft background */
  --grey:    #6E7278;   /* supporting text */
  --charcoal:#3A3D41;   /* primary — text, headings, logo */
  --white:   #ffffff;
  --offwhite:#F9F7F5;
  --border:  rgba(58,61,65,0.12);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--grey);
  background: var(--offwhite);
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(249,247,245,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display:flex; flex-direction:row; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-text { display:flex; flex-direction:column; gap:2px; }
.nav-logo-portia { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; color:var(--charcoal); letter-spacing:6px; line-height:1; }
.nav-logo-sub { font-size:7px; letter-spacing:4px; color:var(--grey); font-weight:500; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a { font-size:9px; letter-spacing:2px; color:var(--grey); text-decoration:none; font-weight:500; transition:color 0.2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:1px; background:var(--charcoal); transform:scaleX(0); transition:transform 0.2s; }
.nav-links a:hover { color:var(--charcoal); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-links a.active { color:var(--charcoal); }
.nav-links a.active::after { transform:scaleX(1); }
.nav-cta { background:var(--charcoal) !important; color:var(--white) !important; padding:10px 22px; border-radius:2px; font-size:9px !important; letter-spacing:2px; font-weight:500 !important; transition:background 0.2s !important; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--grey) !important; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.nav-hamburger span { width:22px; height:1px; background:var(--charcoal); display:block; transition:all 0.3s; }

/* PAGE HERO */
.page-hero { padding:140px 60px 80px; background:var(--beige); text-align:center; border-bottom:1px solid var(--border); }
.page-hero-eyebrow { font-size:8px; letter-spacing:4px; color:var(--grey); font-weight:600; margin-bottom:16px; }
.page-hero h1 { font-family:'Cormorant Garamond',serif; font-size:56px; font-weight:300; color:var(--charcoal); letter-spacing:4px; line-height:1.1; margin-bottom:20px; }
.page-hero h1 em { color:var(--charcoal); font-style:italic; }
.page-hero p { font-size:13px; font-weight:300; color:var(--grey); max-width:560px; margin:0 auto; line-height:1.9; }
.rule-center { display:flex; align-items:center; gap:14px; width:160px; margin:16px auto; }
.rule-center span { flex:1; height:1px; background:var(--rose); opacity:0.6; display:block; }

/* SECTIONS */
section { padding:80px 60px; }
.section-label { font-size:8px; letter-spacing:4px; color:var(--grey); font-weight:600; margin-bottom:12px; display:block; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:300; color:var(--charcoal); letter-spacing:2px; line-height:1.2; margin-bottom:20px; }
.section-title em { color:var(--charcoal); font-style:italic; }
.section-intro { font-size:13px; font-weight:300; color:var(--grey); max-width:580px; line-height:1.9; margin-bottom:48px; }

/* BUTTONS */
.btn-primary { display:inline-block; background:var(--charcoal); color:var(--white); padding:14px 32px; font-size:9px; letter-spacing:2px; font-weight:500; text-decoration:none; border-radius:2px; transition:background 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; border:none; }
.btn-primary:hover { background:var(--grey); }
.btn-outline { display:inline-block; background:transparent; color:var(--charcoal); padding:13px 32px; font-size:9px; letter-spacing:2px; font-weight:500; text-decoration:none; border-radius:2px; border:1px solid var(--charcoal); transition:all 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; }
.btn-outline:hover { background:var(--charcoal); color:var(--white); }
.btn-rose { display:inline-block; background:var(--charcoal); color:var(--white); padding:14px 32px; font-size:9px; letter-spacing:2px; font-weight:500; text-decoration:none; border-radius:2px; transition:background 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; border:none; }
.btn-rose:hover { background:var(--grey); }

/* CARDS */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.card { background:var(--white); border:1px solid var(--border); border-radius:2px; padding:36px 32px; transition:transform 0.2s,box-shadow 0.2s; }
.card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(58,61,65,0.08); }
.card-icon { width:40px; height:40px; margin-bottom:20px; color:var(--charcoal); }
.card-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; color:var(--charcoal); letter-spacing:2px; margin-bottom:12px; }
.card-title span { display:block; font-size:10px; letter-spacing:3px; color:var(--grey); font-family:'Montserrat',sans-serif; font-weight:600; margin-bottom:4px; }
.card-text { font-size:12px; color:var(--grey); font-weight:300; line-height:1.8; margin-bottom:20px; }
.card-link { font-size:9px; letter-spacing:2px; color:var(--charcoal); text-decoration:none; font-weight:500; border-bottom:1px solid var(--rose); padding-bottom:2px; transition:color 0.2s; }
.card-link:hover { color:var(--grey); }

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

/* FOOTER */
footer { background:var(--charcoal); }
.footer-brand { background:#2e3135; padding:48px 60px 36px; text-align:center; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-portia { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; color:var(--white); letter-spacing:14px; line-height:1; }
.footer-rule { display:flex; align-items:center; gap:14px; width:220px; margin:10px auto; }
.footer-rule span { flex:1; height:1px; background:var(--rose); opacity:0.5; display:block; }
.footer-fs { font-size:9px; letter-spacing:6px; color:rgba(255,255,255,0.5); font-weight:500; }
.footer-tagline { font-size:8px; letter-spacing:2px; color:rgba(255,255,255,0.3); margin-top:10px; font-weight:300; }
.footer-main { padding:40px 60px; display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:40px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-col-title { font-size:8px; letter-spacing:3px; color:rgba(255,255,255,0.5); font-weight:600; margin-bottom:16px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }
.footer-contact-icon { width:14px; height:14px; flex-shrink:0; margin-top:2px; }
.footer-contact-text { font-size:11px; color:rgba(255,255,255,0.45); font-weight:300; line-height:1.6; }
.footer-contact-text a { color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
.footer-contact-text a:hover { color:rgba(255,255,255,0.8); }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:11px; color:rgba(255,255,255,0.45); font-weight:300; text-decoration:none; letter-spacing:0.5px; transition:color 0.2s; }
.footer-links a:hover { color:rgba(255,255,255,0.8); }
.footer-svc-band { padding:20px 60px; border-bottom:1px solid rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.footer-band-item { text-align:center; padding:0 28px; }
.footer-band-top { font-family:'Cormorant Garamond',serif; font-size:14px; font-weight:300; color:rgba(255,255,255,0.7); letter-spacing:2px; }
.footer-band-bot { font-size:7px; letter-spacing:2px; color:rgba(255,255,255,0.35); font-weight:500; margin-top:3px; }
.footer-band-sep { width:1px; height:28px; background:rgba(255,255,255,0.1); flex-shrink:0; }
.footer-values { background:#2e3135; padding:12px 60px; text-align:center; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-values-txt { font-size:8px; letter-spacing:3px; color:rgba(255,255,255,0.3); font-weight:500; }
.footer-regulatory { padding:32px 60px; display:grid; grid-template-columns:1fr 1fr; gap:40px; border-bottom:1px solid rgba(255,255,255,0.06); background:#272a2e; }
.footer-reg-title { font-size:8px; letter-spacing:3px; color:rgba(255,255,255,0.4); font-weight:600; margin-bottom:10px; }
.footer-regulatory p { font-size:9px; color:rgba(255,255,255,0.25); font-weight:300; line-height:1.8; }
.footer-regulatory p a { color:rgba(255,255,255,0.35); text-decoration:none; transition:color 0.2s; }
.footer-regulatory p a:hover { color:rgba(255,255,255,0.6); }
.footer-legal { padding:14px 60px; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }
.footer-legal-links { display:flex; gap:24px; }
.footer-legal-links a { font-size:8px; letter-spacing:1.5px; color:rgba(255,255,255,0.35); text-decoration:none; font-weight:500; transition:color 0.2s; }
.footer-legal-links a:hover { color:rgba(255,255,255,0.7); }
.footer-copyright { font-size:8px; color:rgba(255,255,255,0.25); font-weight:300; white-space:nowrap; }

/* RESPONSIVE */
@media (max-width:768px) {
  nav { padding:0 24px; }
  .nav-links { display:none; flex-direction:column; position:fixed; top:72px; left:0; right:0; background:var(--offwhite); border-bottom:1px solid var(--border); padding:24px; gap:20px; }
  .nav-links.open { display:flex; }
  .nav-hamburger { display:flex; }
  section { padding:60px 24px; }
  .page-hero { padding:120px 24px 60px; }
  .page-hero h1 { font-size:36px; }
  .section-title { font-size:28px; }
  .footer-main { grid-template-columns:1fr; padding:32px 24px; }
  .footer-brand { padding:36px 24px 28px; }
  .footer-portia { font-size:36px; }
  .footer-svc-band { padding:16px 24px; flex-wrap:wrap; gap:8px; }
  .footer-band-item { padding:0 14px; }
  .footer-legal { padding:16px 24px; flex-direction:column; text-align:center; }
  .footer-regulatory { grid-template-columns:1fr; padding:24px; gap:24px; }
  .footer-values { padding:12px 24px; }
  .divider { margin:0 24px; }
  .card-grid { grid-template-columns:1fr; }
}
