
:root{
  --bg: #f5f3ef;
  --bg-soft: #fbf9f6;
  --surface: #ffffff;
  --surface-2: #f7f4ef;
  --text: #1f2430;
  --muted: #6d7280;
  --faint: #8e93a1;
  --line: rgba(68, 89, 121, 0.14);

  --brand: #445979;
  --brand-2: #c1b384;
  --accent: #e9dfd2;

  --shadow: 0 18px 50px rgba(31, 36, 48, 0.08);
  --radius: 24px;

  --max: 1120px;
  --gap: 20px;

  --sans: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --script: "Allura", cursive;
}

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

body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(800px 500px at 10% 0%, rgba(217, 201, 176, 0.24), transparent 60%),
    radial-gradient(700px 420px at 100% 0%, rgba(68, 89, 121, 0.08), transparent 58%),
    linear-gradient(180deg, #faf8f4 0%, #f5f3ef 45%, #f8f5f0 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:12px;
  z-index:1000;
}

.site-header{
  position: relative;
}

/* TOP NAVY BAR */
.header-top{
  background: #445979;
  padding: 26px 0 18px;
  text-align: center;
}

/* LOGO */
.brand-logo{
  width: 400px;
  max-width: 92vw;
  margin: 0 auto;
}

/* BOTTOM TOOLBAR (LIGHT) */
.header-bottom{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* CENTER NAV */
.nav-center{
  display: flex;
  justify-content: center;
  padding: 12px 0;
}


/* NAV LINKS (NOW DARK TEXT) */
.menu a{
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.menu a:hover{
  background: rgba(68, 89, 121, 0.06);
  color: var(--brand);
  text-decoration: none;
}

/* WHITE BUTTON LIKE CANVA */
.nav-cta{
  background: #fff;
  color: #445979 !important;
}

.menu{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.menu a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
}

.menu a:hover{
  background: rgba(68, 89, 121, 0.06);
  color: var(--brand);
  text-decoration:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid transparent;
  background: var(--brand);
  color:#fff;
  font-weight:700;
  box-shadow: 0 10px 24px rgba(68, 89, 121, 0.18);
  text-decoration:none;
}

.btn:hover{
  filter:brightness(1.03);
  text-decoration:none;
}

.btn:active{ transform: translateY(1px); }

.btn-small{
  padding:10px 14px;
  border-radius:999px;
}

.btn-full{ width:100%; }

.btn-ghost{
  background: transparent;
  color: var(--brand);
  border:1px solid var(--line);
  box-shadow:none;
}

.btn-ghost:hover{
  background: rgba(68, 89, 121, 0.05);
}

.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 34px;
}

.hero-feather{
  position:absolute;
  top:48px;
  left:-8px;
  width:120px;
  opacity:.14;
  pointer-events:none;
}

.hero-nest{
  position:absolute;
  right:10px;
  top:120px;
  width:240px;
  opacity:.10;
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:34px;
  align-items:start;
}

.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--brand);
  font-weight:600;
  font-size:13px;
  letter-spacing:.2px;
}

.hero-script,
.section-script{
  font-family: var(--script);
  color: var(--brand);
  margin: 16px 0 4px;
  line-height:1;
}

.hero-script{
  font-size: clamp(30px, 4vw, 42px);
}

.section-script{
  font-size: 28px;
}

h1{
  font-family: var(--serif);
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.02;
  margin: 10px 0 14px;
  letter-spacing: .1px;
  font-weight: 600;
  color: var(--text);
}

.lead{
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 20px;
}

.trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}

.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  border-radius:999px;
  padding:8px 12px;
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}

.hero-card,
.card,
.service,
.step,
.cta{
  box-shadow: var(--shadow);
}

.hero-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 24px;
}

.hero-card h2{
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--brand);
}

.muted{ color: var(--muted); }

.section{
  padding: 48px 0;
}

.section-tint{
  background: rgba(255,255,255,.34);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:22px;
}

.section-head h2{
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 42px);
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.section-head p{ margin:0; }

.card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  border-radius: var(--radius);
  padding: 22px;
}

.branded-card{
  position:relative;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.service{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding:22px;
}

.service h3{
  margin:0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--brand);
}

.list,
.feature-list{
  margin:0;
  padding-left:20px;
  color: var(--muted);
  line-height:1.75;
}

.list li,
.feature-list li{
  margin:6px 0;
}

.feature-list li::marker{
  color: var(--brand);
}

.steps{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.step{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
}

.step-num{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#fff;
  background: var(--brand);
  flex: 0 0 auto;
}

.step h3{
  margin:0 0 4px;
  font-family: var(--serif);
  font-size:26px;
  font-weight:600;
  color: var(--brand);
}

.step p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

.cta{
  margin-top:20px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(247,244,239,.88));
  border-radius: var(--radius);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.cta h3{
  margin:0 0 6px;
  font-family: var(--serif);
  font-size:30px;
  font-weight:600;
  color: var(--brand);
}

.faq{
  display:grid;
  gap:12px;
}

details summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
  color: var(--brand);
}

details summary::-webkit-details-marker{ display:none; }

details p{
  margin:10px 0 0;
  color: var(--muted);
  line-height:1.7;
}

.form{
  display:grid;
  gap:12px;
  margin-top:12px;
}

label span{
  display:block;
  font-size:13px;
  color: var(--muted);
  margin-bottom:6px;
  font-weight:600;
}

input, select, textarea{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.95);
  color: var(--text);
  outline:none;
  font-family: var(--sans);
}

input::placeholder, textarea::placeholder{ color:#a0a4af; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(68, 89, 121, 0.35);
  box-shadow: 0 0 0 4px rgba(68, 89, 121, 0.08);
}

.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.contact{
  padding-bottom:60px;
  position:relative;
}

.contact::after{
  content:"";
  position:absolute;
  right:40px;
  bottom:10px;
  width:180px;
  height:180px;
  background: url("images/birdies-nest.png") no-repeat center/contain;
  opacity:.06;
  pointer-events:none;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items:start;
}

.contact h2{
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 42px);
  margin:0 0 8px;
  font-weight:600;
}

.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:16px;
}

.big{
  font-weight:700;
  font-size:18px;
}

.contact-form h3{
  margin:0;
  font-family: var(--serif);
  font-size:30px;
  font-weight:600;
  color: var(--brand);
}

.contact-links{
  margin-top:20px;
  color: var(--muted);
}

.contact-links p{
  margin:8px 0;
}

.disclaimer-section{
  padding-top:0;
}

.disclaimer-box{
  background: #c1b384;
  color: #243d67;
  border-radius: 28px;
  padding: 28px 24px;
  text-align:center;
  font-weight:700;
  line-height:1.5;
  box-shadow: var(--shadow);
}

.disclaimer-box p{
  margin: 4px 0;
}

.footer{
  border-top:1px solid var(--line);
  background: var(--brand);
  color:#fff;
  padding:30px 0;
}

.footer .muted{
  color: rgba(255,255,255,.82);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap:18px;
  align-items:start;
}

.footer-logo{
  width:150px;
  margin-bottom:12px;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-meta p{
  margin:6px 0;
}

@media (max-width: 980px){
  .hero-grid,
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }

  .hero-nest{
    width:160px;
    right:10px;
    top:140px;
  }

  .contact::after{
    width:120px;
    height:120px;
    right:16px;
    bottom:20px;
  }
}

@media (max-width: 520px){
  .row{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .brand-logo{ width:145px; }
  .hero{ padding-top:54px; }
  .hero-feather{ width:85px; top:66px; left:-8px; }
  .hero-nest{ width:120px; top:150px; }
  html{
    scroll-padding-top: 100px;
  }
  
}

/* BACKGROUND ART SYSTEM */
.bg-art{
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

/* FEATHER VARIATIONS */
.feather-1{
  top: 10%;
  left: 0px;
  width: 120px;
}

.feather-2{
  bottom: 10%;
  right: -30px;
  width: 110px;
}

.feather-3{
  top: 40%;
  right: 10%;
  width: 90px;
}

.feather-4{
  top: 10%;
  right: 200px;
  width: 90px;
}

/* NEST VARIATIONS */
.nest-1{
  top: 8%;
  right: 5%;
  width: 200px;
}

.nest-2{
  bottom: 5%;
  left: 5%;
  width: 160px;
}

.nest-3{
  top: 50%;
  left: 10%;
  width: 140px;
}

/* Make sure sections allow positioning */
.hero,
.section,
.contact{
  position: relative;
  overflow: hidden;
}

/* Keep content above */
.container{
  position: relative;
  z-index: 2;
}

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