:root{
  --bg: #0b0d12;
  --slate: #1a1f2a;
  --offwhite: #f6f3ed;
  --paper: #fbf8f2;
  --text: rgba(255,255,255,.86);
  --muted: rgba(255,255,255,.62);
  --ink: #12141a;
  --gold: #d3a648;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.kicker{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 14px;
}
.kicker--gold{ color: var(--gold); }

.title{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.03;
  color: #0f1116;
  margin: 0 0 10px 0;
}

.sub{
  color: rgba(15,17,22,.68);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.slateTitle{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.03;
  color: rgba(255,255,255,.90);
  margin: 0 0 10px 0;
}

.slateSub{
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 740px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-2px); border-color: rgba(211,166,72,.28); background: rgba(255,255,255,.10); }
.btn--ghost{ background: transparent; }
.btn--full{ width: 100%; }
.btn--small{ padding: 10px 14px; border-radius: 12px; }

/* High-contrast button for light surfaces */
.btn--ink{
  background: var(--ink);
  color: rgba(255,255,255,.95);
  border-color: rgba(15,17,22,.24);
}
.btn--ink:hover{
  background: rgba(18,20,26,.92);
  border-color: rgba(211,166,72,.28);
}

/* Header */
.siteHeader{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,13,18,.66);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.headerRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brandMark{
  width: 34px; height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(closest-side, rgba(211,166,72,.18), rgba(211,166,72,.04)),
    rgba(255,255,255,.06);
  border: 1px solid rgba(211,166,72,.22);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.brandName{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}
.brandTag{
  display:block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-top: 2px;
}

.navToggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.navToggle span{
  display:block;
  height: 2px;
  width: 18px;
  background: rgba(255,255,255,.84);
  margin: 5px auto;
  border-radius: 99px;
}

.navMenu{
  display:flex;
  align-items:center;
  gap: 16px;
  color: rgba(255,255,255,.76);
}
.navMenu a{ padding: 10px 10px; border-radius: 10px; }
.navMenu a:hover{ background: rgba(255,255,255,.06); }

/* Sections */
.section{ padding: 90px 0; }
.section--light{ background: var(--paper); color: #0f1116; }
.section--offwhite{ background: var(--offwhite); color: #0f1116; }
.section--slate{ background: var(--slate); }

.centerHead{
  text-align:center;
  margin-bottom: 34px;
}
.centerHead .sub, .centerHead .slateSub{ margin: 0 auto; }

/* Hero */
.hero{
  position: relative;
  padding: 90px 0 70px;
  background: linear-gradient(180deg, rgba(26,31,42,.95), rgba(11,13,18,1));
  overflow:hidden;
}
.heroBg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 420px at 15% 20%, rgba(211,166,72,.18), transparent 55%),
    radial-gradient(900px 420px at 85% 25%, rgba(255,255,255,.08), transparent 58%);
  opacity: .75;
}
.heroGrid{
  position: relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.heroTitle{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.0;
  margin: 0 0 14px 0;
  color: rgba(255,255,255,.92);
}
.accent{ color: var(--gold); }
.heroSub{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  max-width: 620px;
  margin: 0 0 22px 0;
}
.heroCtas{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.heroBadges{ display:flex; gap: 10px; flex-wrap: wrap; }
.badge{
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
}

/* Hero card */
.heroCard{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(10px);
}
.heroCardTop{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pill{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.heroStatNum{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 28px;
  color: rgba(255,255,255,.92);
  line-height: 1;
}
.heroStatLabel{
  font-size: 12px;
  color: rgba(255,255,255,.60);
  margin-top: 4px;
}
.heroCardList{ display:grid; gap: 12px; margin: 12px 0 16px; }
.row{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(211,166,72,.80);
  box-shadow: 0 0 0 4px rgba(211,166,72,.12);
}
.rowTitle{
  font-weight: 600;
  color: rgba(255,255,255,.90);
  margin-bottom: 2px;
}
.rowText{
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.64);
}


/* Work / Portfolio */
.workGrid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}
.workCard{
  display: block;
  text-decoration: none;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.workCard:hover{
  transform: translateY(-2px);
  border-color: rgba(211,166,72,.35);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}
.workCard:focus-visible{
  outline: none;
  border-color: rgba(211,166,72,.55);
  box-shadow: 0 0 0 4px rgba(211,166,72,.18), 0 22px 70px rgba(0,0,0,.45);
}
.workThumb{
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,.22);
}

.workImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.workThumb .workImg{
  object-position: 50% 100%;
}


.workThumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 65%, rgba(0,0,0,.58) 100%);
}
.workBadge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  background: rgba(10,12,16,.55);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.workBody{
  padding: 18px 18px 20px;
}
.workTitle{
  font-weight: 650;
  font-size: 18px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  margin: 0 0 6px 0;
}
.workDesc{
  margin: 0 0 14px 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.66);
}
.workCta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 650;
  color: var(--gold);
}
@media (max-width: 860px){
  .workGrid{ grid-template-columns: repeat(auto-fit, minmax(240px, 360px)); }
}

/* Feature cards */
.featureGrid{
  margin-top: 28px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.featureCard{
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,17,22,.08);
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:center;
}
.featureIcon{
  width: 34px; height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(211,166,72,.14);
  border: 1px solid rgba(211,166,72,.28);
  color: #5b430f;
  font-weight: 700;
}
.featureTitle{
  font-weight: 600;
  color: rgba(15,17,22,.88);
  font-size: 14px;
  line-height: 1.35;
}

/* FAQ */
.faq{
  margin-top: 26px;
  width: min(820px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 12px;
}
.faqItem{
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,17,22,.10);
  overflow: hidden;
}
.faqItem summary{
  cursor: pointer;
  list-style: none;
  padding: 16px 16px;
  font-weight: 600;
  color: rgba(15,17,22,.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqItem summary::after{
  content: "+";
  font-weight: 700;
  color: rgba(15,17,22,.55);
}
.faqItem[open] summary::after{ content: "–"; }
.faqBody{
  padding: 0 16px 16px 16px;
  color: rgba(15,17,22,.72);
  line-height: 1.65;
}
.faqBody strong{ color: rgba(15,17,22,.92); }
.faqNote{
  margin-top: 6px;
  font-size: 14px;
  color: rgba(15,17,22,.70);
  text-align: center;
}
.faqNote a{
  color: rgba(15,17,22,.92);
  text-decoration: underline;
  text-decoration-color: rgba(211,166,72,.55);
  text-underline-offset: 4px;
}

/* Pricing */
.pricingGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.priceCard{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.priceCard--hot{
  border-color: rgba(211,166,72,.30);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.pricePill{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  display:inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.price{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 40px;
  margin: 14px 0 6px 0;
  color: rgba(255,255,255,.92);
}
.priceDesc{
  color: rgba(255,255,255,.66);
  line-height: 1.6;
  margin-bottom: 12px;
}
.checks{
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display:grid;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.checks li{
  padding-left: 18px;
  position: relative;
}
.checks li::before{
  content: "✓";
  position:absolute;
  left:0;
  top:0;
  color: rgba(211,166,72,.95);
  font-weight: 800;
}
.fine{
  font-size: 12px;
  color: rgba(255,255,255,.60);
  margin: 12px 0;
}
.note{
  margin-top: 20px;
  text-align:center;
  color: rgba(255,255,255,.66);
  font-size: 13px;
}
.note span{ color: var(--gold); font-weight: 700; }

/* Contact */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contactCard{
  border-radius: 18px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,17,22,.10);
  padding: 18px;
  display:grid;
  gap: 12px;
}
.formNotice{
  border-radius: 14px;
  border: 1px solid rgba(211,166,72,.32);
  background: rgba(211,166,72,.12);
  color: rgba(15,17,22,.82);
  padding: 12px 12px;
  font-weight: 600;
}
.srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contactCard label{ display:grid; gap: 6px; }
.contactCard span{ font-size: 12px; color: rgba(15,17,22,.70); }
.contactCard input,
.contactCard textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(15,17,22,.12);
  padding: 12px 12px;
  font: inherit;
  background: rgba(255,255,255,.92);
}
.contactCard textarea{ resize: vertical; }

/* Footer */
.siteFooter{
  padding: 26px 0;
  background: #0b0d12;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footerRow{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}
.footerLinks{ display:flex; gap: 14px; }
.footerLinks a:hover{ color: rgba(255,255,255,.90); }

/* Process base grid */
.processGrid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.processStep{ min-height: 170px; }
.processIcon{ color: var(--gold); }
.processNum{ color: rgba(255,255,255,.70); }
.processTitle{ color: rgba(255,255,255,.92); }
.processText{ color: rgba(255,255,255,.62); }

/* === Process (Premium Glass + Glow) === */
.processLux{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --lux-gold: #d3a648;
  --lux-card: rgba(255,255,255,.06);
  --lux-border: rgba(255,255,255,.12);
  --lux-text: rgba(244,241,234,.88);
  --lux-muted: rgba(244,241,234,.62);
}

.processLux__bg{
  position:absolute;
  inset:-1px;
  z-index:0;
  background:
    radial-gradient(900px 420px at 15% 20%, rgba(211,166,72,.14), transparent 55%),
    radial-gradient(800px 380px at 85% 35%, rgba(211,166,72,.10), transparent 60%),
    radial-gradient(1000px 520px at 50% 110%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(12,14,18,.25), rgba(12,14,18,.55));
  filter: saturate(1.05);
}

.processLux::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .35;
}

.processLux .container{ position: relative; z-index: 2; }

.processLux__wrap{
  position: relative;
  margin-top: 28px;
  padding: 22px 0 8px;
}

.processLux__line{
  position:absolute;
  left: 2%;
  right: 2%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(211,166,72,0),
    rgba(211,166,72,.35),
    rgba(255,255,255,.10),
    rgba(211,166,72,.35),
    rgba(211,166,72,0)
  );
  opacity: .75;
}

.processLux__grid{ gap: 18px; }

.processLux__card{
  background: var(--lux-card);
  border: 1px solid var(--lux-border);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow:
    0 10px 28px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.processLux__card:hover{
  transform: translateY(-4px);
  border-color: rgba(211,166,72,.30);
  box-shadow:
    0 16px 44px rgba(0,0,0,.28),
    0 0 0 1px rgba(211,166,72,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.processLux__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.processLux__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color: var(--lux-gold);
  background:
    radial-gradient(closest-side, rgba(211,166,72,.14), rgba(211,166,72,.06)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(211,166,72,.25);
  box-shadow:
    0 10px 24px rgba(0,0,0,.22),
    0 0 22px rgba(211,166,72,.14),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.processLux__icon svg{ width: 22px; height: 22px; }

.processLux__num{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,234,.70);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 8px 10px;
  border-radius: 999px;
}

.processLux__title{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 20px;
  line-height: 1.15;
  color: var(--lux-text);
  margin: 0 0 8px 0;
}

.processLux__text{
  font-size: 14px;
  line-height: 1.55;
  color: var(--lux-muted);
}

.processLux__card.is-active{
  border-color: rgba(211,166,72,.35);
  box-shadow:
    0 18px 54px rgba(0,0,0,.32),
    0 0 0 1px rgba(211,166,72,.22),
    0 0 40px rgba(211,166,72,.10),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .featureGrid{ grid-template-columns: repeat(2, 1fr); }
  .pricingGrid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .processGrid{ grid-template-columns: 1fr; }
  .processLux__line{ display:none; }

  .navToggle{ display:inline-grid; place-items:center; }
  .navMenu{
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(360px, calc(100vw - 40px));
    display:none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(11,13,18,.92);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
  }
  .navMenu.is-open{ display:flex; }
  .navMenu a{ padding: 12px; }
}

@media (max-width: 520px){
  .section{ padding: 70px 0; }
}


/* Brand logo image */
.brandLogo{
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 520px){
  .brandLogo{ height: 26px; }
}
/* Work card placeholder (when no screenshot image is provided yet) */
.workThumb--placeholder{
  background: radial-gradient(1200px 600px at 20% 15%, rgba(212,163,115,.22), transparent 60%),
              radial-gradient(900px 500px at 80% 70%, rgba(125,211,252,.10), transparent 60%),
              rgba(0,0,0,.22);
  overflow: hidden;
}
.workPlaceholder{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align:center;
  padding: 22px;
  color: rgba(255,255,255,.86);
}
.workPlaceholderTop{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.68);
  margin-bottom: 10px;
}
.workPlaceholderTitle{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.workPlaceholderSub{
  font-size: 13px;
  color: rgba(255,255,255,.70);
  max-width: 22ch;
}


/* Work card placeholder variant (landscaping) */
.workThumb--landscape{
  background: radial-gradient(1200px 600px at 18% 18%, rgba(82,121,111,.26), transparent 60%),
              radial-gradient(900px 520px at 82% 72%, rgba(211,166,72,.10), transparent 62%),
              rgba(0,0,0,.22);
  overflow: hidden;
}

/* --- Alignment fixes: keep CTAs aligned across cards (no layout/content changes) --- */
/* Work cards: pin "Visit site" to bottom of each card body */
.workCard{ display:flex; flex-direction:column; }
.workBody{ display:flex; flex-direction:column; flex: 1; }
.workBody .workCta{ margin-top: auto; }

/* Pricing cards: pin "Get started" to bottom of each price card */
.priceCard{ display:flex; flex-direction:column; }
.priceCard > a.btn{ margin-top: auto; }
