:root{
  --bg: #f6f3ee;           /* warm paper */
  --paper: #fbfaf8;
  --ink: #141414;          /* charcoal */
  --muted: rgba(20,20,20,.68);
  --line: rgba(20,20,20,.12);
  --shadow: 0 18px 60px rgba(20,20,20,.10);
  --radius: 18px;

  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    --gold: #b08d57;
  --rose: #c98f9b;    /* rose gold */
  --accent: var(--gold);
  --accent-ink: #0f0f0f;

}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 18% -10%, rgba(176,141,87,.14), transparent 60%),
    radial-gradient(900px 520px at 92% 6%, rgba(201,143,155,.12), transparent 58%),
    radial-gradient(800px 500px at 90% 10%, rgba(20,20,20,.06), transparent 55%),
    var(--bg);
}


img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
p{ line-height: 1.6; }

.container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus{ left: 12px; z-index: 9999; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand img{
  height: 64px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(20,20,20,.08));
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a{
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
}

/* Ensure button styles win inside the header nav */
.nav a.btn{
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(20,20,20,.12);
  box-shadow: 0 12px 26px rgba(20,20,20,.18);
}
.nav a.btn:hover{
  background: color-mix(in srgb, var(--ink) 92%, black);
  color: #fff;
}

.nav a:hover{ color: var(--ink); background: rgba(20,20,20,.05); }

.nav-toggle{
  display: none;              /* stays hidden on desktop */
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;

  /* center the icon */
  align-items: center;
  justify-content: center;
}

/* Hamburger icon (robust, centers the X perfectly) */
.nav-toggle .hamburger{
  position: relative;
  width: 26px;
  height: 20px;
  display: block;
}

.nav-toggle .hamburger span{
  position: absolute;
  left: 0;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease, top .18s ease;
}

/* closed state positions */
.nav-toggle .hamburger span:nth-child(1){ top: 0; }
.nav-toggle .hamburger span:nth-child(2){ top: 50%; transform: translateY(-50%); }
.nav-toggle .hamburger span:nth-child(3){ top: 100%; transform: translateY(-100%); }

/* open state -> X */
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1){
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3){
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}


.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.12);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow: 0 12px 26px rgba(20,20,20,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 16px 36px rgba(20,20,20,.22); }
.btn:active{ transform: translateY(0px); box-shadow: 0 10px 18px rgba(20,20,20,.14); }

.btn-small{ padding: 10px 14px; font-size: 14px; }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(20,20,20,.06); box-shadow: none; }

/* Hero logo below header */
.hero-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 18px 0 10px;   /* much tighter */
  margin-top: 0;
}

.hero-logo img{
  width: 140px;           /* stamp size */
  max-width: 46vw;
  height: auto;
  opacity: 0.92;

  /* remove heavy “tile” look */
  filter: none;
  box-shadow: none;
}

/* remove the divider (it reads like a form separator on mobile) */
.hero-logo::after{
  content: none;
}


.hero{
  position: relative;
  padding: 64px 0 28px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: start;
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
h1{
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 8px;
}
.trust-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  box-shadow: 0 0 0 5px rgba(176,141,87,.14);
}


.hero-card{
  background: linear-gradient(180deg, var(--paper), color-mix(in srgb, var(--paper) 85%, transparent));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
  position: relative;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(400px 200px at 20% 10%, rgba(176,141,87,.16), transparent 60%),
    radial-gradient(400px 200px at 90% 0%, rgba(20,20,20,.08), transparent 55%);
  pointer-events:none;
}
.card-top, .card-body, .card-bottom{ position: relative; }
.card-label{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-title{
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 26px;
}
.card-body{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0 6px;
}
.pill{
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.6);
  border-radius: 999px;
  color: rgba(20,20,20,.78);
}
.muted{ color: var(--muted); }
.hero-fade{
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.section{
  padding: 70px 0;
}
.section-alt{
  background: color-mix(in srgb, var(--paper) 62%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 26px;
}
.section-head h2{
  font-family: var(--serif);
  font-size: 34px;
  margin: 0;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 32px rgba(20,20,20,.06);
}
.feature h3{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
}
.feature p{ margin: 0; color: var(--muted); }

.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.step{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.step-num{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent-ink);
  background: rgba(176,141,87,.14);
  border: 1px solid rgba(176,141,87,.22);
  border-radius: 16px;
  display: grid;
  place-items: center;
  height: 56px;
}
.step-body h3{ margin: 0 0 6px; font-size: 18px; }
.step-body p{ margin: 0; color: var(--muted); }

.pricing{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 32px rgba(20,20,20,.06);
  display: grid;
  gap: 12px;
}
.price-card.featured{
  border-color: color-mix(in srgb, var(--gold) 55%, var(--rose) 45%);
  box-shadow: 0 18px 56px rgba(20,20,20,.12);
}

.tier{
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-card h3{
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
}
.price{
  margin: 0;
  font-size: 34px;
  font-weight: 600;
}
.price span{ font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.fineprint{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.faq{
  display: grid;
  gap: 12px;
}
details{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}
summary{
  cursor: pointer;
  font-weight: 600;
}
details p{
  margin: 10px 0 0;
  color: var(--muted);
}

.inquiry-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.contact-card{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(20,20,20,.06);
}

.form{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.field{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
label{ font-size: 13px; color: var(--muted); }
input, textarea{
  font: inherit;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.14);
  background: rgba(255,255,255,.7);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(176,141,87,.55);
  box-shadow: 0 0 0 4px rgba(176,141,87,.16);
}
.form-note{ margin: 12px 0 0; font-size: 13px; }
.hidden{ display: none; }

.footer{
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo{ height: 34px; width: auto; opacity: .9; }
.footer-right{
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-right a{ color: var(--muted); }
.footer-right a:hover{ color: var(--ink); }

/* Anchor offset so #top-anchor scrolls above the sticky header */
#top-anchor{
  position: relative;
  top: -90px;   /* adjust if your header height changes */
  height: 1px;
}


/* Responsive */
@media (max-width: 920px){
  .hero-grid, .inquiry-grid{ grid-template-columns: 1fr; }
  .grid-3, .pricing{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .hero-logo{ padding: 14px 0 6px; }
  .hero-logo img{ width: 120px; }
}
  .nav-toggle{ display: inline-flex; }
  .nav{
    position: absolute;
    right: 24px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100% - 48px));
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav.open{ display: flex; }
  .nav a{ padding: 12px 12px; }
}
