:root {
  /* Brand palette (your ratios expressed as emphasis) */
  --ivory: #f6f1e6;          /* 60% */
  --taupe: #b8a89a;          /* 20% */
  --champagne: #d6b46a;      /* 10% */
  --dusty-rose: #c8a2a6;     /* 5% */
  --charcoal: #2b2b2b;       /* 5% */

  --bg: var(--ivory);
  --panel: rgba(255, 255, 255, 0.55);
  --text: #1f1f1f;
  --muted: rgba(31, 31, 31, 0.65);
  --border: rgba(43, 43, 43, 0.16);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;

  /* Fonts */
  --serif: "Cormorant Garamond", serif; /* elegant serif */
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; /* clean modern sans */
  --secondary: "Montserrat", var(--sans);

  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(1200px 600px at 70% -10%, rgba(214, 180, 106, 0.22), transparent 55%),
              radial-gradient(900px 500px at 10% 10%, rgba(200, 162, 166, 0.18), transparent 60%),
              var(--bg);
}

a { color: inherit; text-decoration: none; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.95em; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 230, 0.72);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  background: rgba(255, 255, 255, 0.45);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 22px;
}
.nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--secondary);
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0);
  background: var(--charcoal);
  color: #fff;
  transition: transform .12s ease, opacity .12s ease, background .2s ease, border .2s ease;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn:active { transform: translateY(0px); }
.btn-wa{
  background: #1f1f1f; /* stays on-brand (charcoal) */
  border: 1px solid rgba(214,180,106,0.55); /* subtle champagne ring */
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.35); }

.btn.full { width: 100%; border-radius: 18px; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.menu-lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text);
  display: inline-block;
}
.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(246, 241, 230, 0.90);
}
.mobile-nav-inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.mobile-nav a {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
}
.mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

/* Typography */
.h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(34px, 4vw, 54px);
  margin: 14px 0 10px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  margin: 8px 0 8px;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}

.pill {
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  color: var(--muted);
  font-family: var(--secondary);
}

/* Sections */
.hero {
  position: relative;
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.metric {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 14px;
  background: rgba(255,255,255,0.35);
}
.metric dt {
  font-family: var(--secondary);
  font-weight: 600;
  font-size: 13px;
}
.metric dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-card .card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 20px;
}

.card-title {
  margin: 0;
  font-size: 18px;
  font-family: var(--secondary);
  font-weight: 600;
}
.card-sub {
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.swatch {
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: grid;
  align-items: end;
  padding: 10px;
  font-size: 11px;
  color: rgba(0,0,0,0.65);
  font-family: var(--secondary);
}
.swatch span {
  background: rgba(255,255,255,0.42);
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid rgba(0,0,0,0.08);
}
.s-ivory { background: var(--ivory); }
.s-taupe { background: var(--taupe); }
.s-gold { background: var(--champagne); }
.s-rose { background: var(--dusty-rose); }
.s-charcoal { background: #3a3a3a; color: rgba(255,255,255,0.8); }
.s-charcoal span { background: rgba(0,0,0,0.24); border-color: rgba(255,255,255,0.12); }

.mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 14px;
}
.mini h3 {
  margin: 0;
  font-size: 13px;
  font-family: var(--secondary);
  font-weight: 600;
}
.mini p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 260px;
  background: radial-gradient(closest-side, rgba(214, 180, 106, 0.25), transparent 70%);
  pointer-events: none;
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.section.alt {
  background: rgba(255, 255, 255, 0.18);
}
.section-head {
  text-align: center;
  margin-bottom: 30px;
}
.kicker {
  font-family: var(--secondary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43,43,43,0.6);
  margin: 0;
}
.sub {
  color: var(--muted);
  max-width: 64ch;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.38);
  padding: 18px;
}
.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  margin: 8px 0 12px;
}
.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(31, 31, 31, 0.78);
  line-height: 1.6;
  font-size: 13px;
}

.cta-strip {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, rgba(214,180,106,0.18), rgba(200,162,166,0.12));
}
.cta-title { margin: 0; font-family: var(--secondary); font-size: 16px; }
.cta-sub { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.work-item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.38);
}
.work-img {
  height: 180px;
  background:
    linear-gradient(120deg, rgba(214,180,106,0.20), rgba(200,162,166,0.12)),
    radial-gradient(600px 220px at 10% 0%, rgba(43,43,43,0.10), transparent 55%),
    rgba(255,255,255,0.35);
  border-bottom: 1px solid var(--border);
}
.work-item figcaption { padding: 14px 16px 16px; }
.work-item h3 { margin: 0; font-family: var(--secondary); font-size: 14px; }
.work-item p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.35);
  color: rgba(31,31,31,0.78);
  font-size: 13px;
  line-height: 1.6;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px;
  background: rgba(255,255,255,0.38);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  background: rgba(214,180,106,0.18);
}
.steps h3 {
  margin: 4px 0 6px;
  font-family: var(--secondary);
  font-size: 14px;
  font-weight: 600;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  margin-top: 22px;
}
.contact-card, .form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.40);
  padding: 18px;
}
.contact-card h3, .form-card h3 {
  margin: 0 0 10px;
  font-family: var(--secondary);
  font-size: 16px;
  font-weight: 600;
}
.contact-list { display: grid; gap: 10px; margin-top: 12px; }
.contact-item {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.30);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.contact-item .muted { color: var(--muted); }

.micro { margin-top: 14px; }
.micro h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-family: var(--secondary);
}
.micro ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(31,31,31,0.78);
  font-size: 13px;
  line-height: 1.6;
}

form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-family: var(--secondary);
}
input, textarea, select {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  font-size: 14px;
  background: rgba(255,255,255,0.45);
  font-family: var(--sans);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(214,180,106,0.85);
  box-shadow: 0 0 0 3px rgba(214,180,106,0.18);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  min-height: 20px;
}

.site-footer {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer .muted { color: rgba(31,31,31,0.55); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .mobile-nav[data-open="true"] { display: block; }
  .header-cta .btn { display: none; } /* keep header clean on mobile */
  .hero-metrics { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}