/* RESET HAUS WEBSITE — Complete stylesheet */

:root {
  --cream: #F1ECE1;
  --ink: #181613;
  --verm: #DA3B26;
  --amber: #E8963A;
  --muted: #8A8377;
  --line: #D8D2C4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 20px; }
h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; line-height: 1.08; margin-bottom: 20px; }
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin-bottom: 16px; }
h4 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
p { font-size: 16px; margin-bottom: 16px; }
a { color: var(--verm); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Utility */
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--verm); font-weight: 700; margin-bottom: 12px; }
.lead { font-size: 18px; line-height: 1.55; max-width: 55ch; }
.muted { color: var(--muted); }
.red { color: var(--verm); }
.text-center { text-align: center; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }

/* Navigation */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo { width: 200px; height: auto; }
.logo img { width: 100%; height: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover { color: var(--verm); }

.cta-button {
  background: var(--verm);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: opacity 0.2s;
}

.cta-button:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { height: 60px; }
  .logo { width: 150px; }
}

/* Hero */
.hero {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, var(--cream) 0%, #faf6ed 100%);
}

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { margin-bottom: 24px; }
.hero-text p { font-size: 18px; line-height: 1.7; max-width: 50ch; margin-bottom: 20px; }

.button-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary { background: var(--verm); color: var(--cream); border-color: var(--verm); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.hero-image { display: flex; align-items: center; justify-content: center; }
.hero-image img { width: 100%; max-width: 400px; border-radius: 16px; }

@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
}

/* Section spacing */
section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

section:last-child { border-bottom: none; }

/* Cards */
.card {
  background: #FBF8F1;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(24, 22, 19, 0.08);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Service cards */
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card .tag { font-size: 14px; color: var(--verm); font-style: italic; margin-bottom: 16px; display: block; }
.service-card ul { list-style: none; margin: 16px 0; }
.service-card li { display: flex; gap: 8px; margin-bottom: 10px; font-size: 15px; }
.service-card li::before { content: "✓"; color: var(--verm); font-weight: bold; flex-shrink: 0; }
.service-card .meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; }
.service-card .price { color: var(--ink); font-weight: 700; }

/* About section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { width: 100%; border-radius: 16px; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { max-width: 60ch; margin-bottom: 16px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }
}

/* Contact form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: white;
}

.form-group textarea { min-height: 120px; resize: vertical; }

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--verm);
  box-shadow: 0 0 0 2px rgba(218, 59, 38, 0.1);
}

.form-group button {
  background: var(--verm);
  color: var(--cream);
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.form-group button:hover { opacity: 0.9; }

/* Footer */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { color: var(--cream); margin-bottom: 16px; }
.footer-col a { color: var(--cream); opacity: 0.7; display: block; margin-bottom: 8px; }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 22, 19, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.open { display: flex; }

.modal-content {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .wrap { padding: 0 16px; }
  section { padding: 60px 0; }
  .card { padding: 24px; }
  .button-group { flex-direction: column; }
  .btn { width: 100%; }
}

/* Print */
@media print {
  header, footer, .cta-button { display: none; }
}

/* ===== v2 additions ===== */
.tier-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:1024px){ .tier-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .tier-grid{grid-template-columns:1fr;} }
.tier { position:relative; background:#FBF8F1; border:1.5px solid var(--ink); border-radius:16px; padding:28px 24px; display:flex; flex-direction:column; }
.tier.popular { border-width:3px; box-shadow:0 12px 28px rgba(24,22,19,.12); }
.badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--verm); color:var(--cream); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:6px 14px; border-radius:999px; white-space:nowrap; }
.tier .per { font-size:34px; font-weight:900; color:var(--ink); }
.tier .per span { font-size:15px; font-weight:600; color:var(--muted); }
.tier .monthly { font-size:13px; color:var(--muted); margin-bottom:16px; }
.tier ul { list-style:none; margin:14px 0 0; }
.tier li { display:flex; gap:8px; margin-bottom:8px; font-size:14px; }
.tier li::before { content:"✓"; color:var(--verm); font-weight:700; }
.step-row { display:flex; gap:20px; margin-bottom:28px; }
.step-num { font-size:30px; font-weight:900; color:var(--verm); flex-shrink:0; width:44px; }
.soft-band { background:linear-gradient(135deg,var(--cream) 0%,#faf6ed 100%); border-radius:20px; padding:40px; border:1.5px solid var(--line); }
.proof-cell { background:#FBF8F1; border:1.5px solid var(--line); border-radius:14px; padding:22px; }
.proof-label { font-size:11px; letter-spacing:.2em; text-transform:uppercase; font-weight:700; color:var(--verm); margin-bottom:8px; }
.timeline-item { border-left:3px solid var(--verm); padding:0 0 24px 20px; }
.timeline-item h4 { margin-bottom:4px; }
.day-time { font-weight:900; color:var(--verm); font-size:15px; margin-bottom:4px; }
.svc-hub-card h3 { margin-bottom:6px; }
.svc-hub-card .anchor { font-weight:700; color:var(--ink); font-size:14px; margin-top:14px; }

/* ===== v5: real multipage, dropdown nav, mobile menu, title rows ===== */
.logo.seal-only { width:52px; height:52px; }
.logo.seal-only img { width:100%; height:100%; }

/* dropdown */
.has-dropdown { position:relative; }
.dropdown-toggle { display:flex; align-items:center; gap:6px; cursor:pointer; background:none; border:none; font-family:inherit; font-size:14px; font-weight:600; color:var(--ink); text-transform:uppercase; letter-spacing:.05em; }
.dropdown-toggle svg { width:11px; height:11px; transition:transform .2s; }
.has-dropdown:hover .dropdown-toggle svg, .has-dropdown.open .dropdown-toggle svg { transform:rotate(180deg); }
.dropdown-menu { position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(-8px); background:#FBF8F1; border:1.5px solid var(--ink); border-radius:14px; padding:10px; min-width:280px; opacity:0; visibility:hidden; transition:all .18s ease; box-shadow:0 16px 34px rgba(24,22,19,.14); z-index:200; }
.has-dropdown:hover .dropdown-menu, .has-dropdown.open .dropdown-menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.dropdown-menu a { display:flex; align-items:center; gap:12px; padding:10px 12px; border-radius:9px; color:var(--ink); font-size:15px; font-weight:600; letter-spacing:0; text-transform:none; }
.dropdown-menu a:hover { background:var(--cream); color:var(--verm); opacity:1; }
.dropdown-menu img { width:34px; height:34px; flex-shrink:0; }

/* mobile toggle */
.menu-toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.menu-toggle span { display:block; width:24px; height:2.5px; background:var(--ink); margin:5px 0; border-radius:2px; transition:.25s; }
.menu-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

@media (max-width:860px){
  .menu-toggle{ display:block; }
  .nav-links{
    position:fixed; top:64px; left:0; right:0; bottom:0; background:var(--cream);
    flex-direction:column; align-items:flex-start; gap:0; padding:16px 24px;
    transform:translateX(100%); transition:transform .28s ease; overflow-y:auto;
    display:flex; border-top:1px solid var(--line);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links > li{ width:100%; border-bottom:1px solid var(--line); }
  .nav-links > li > a, .dropdown-toggle{ display:block; width:100%; padding:18px 0; font-size:18px; }
  .cta-button{ margin-top:16px; text-align:center; }
  .dropdown-menu{ position:static; transform:none; opacity:1; visibility:visible; box-shadow:none; border:none; background:transparent; padding:0 0 12px 0; min-width:0; display:none; }
  .has-dropdown.open .dropdown-menu{ display:block; }
  .has-dropdown:hover .dropdown-menu{ opacity:1; } /* no hover open on mobile */
  .dropdown-menu a{ padding:12px 0 12px 46px; font-size:16px; }
}

/* page title row: icon + heading side by side */
.title-row{ display:flex; align-items:center; gap:20px; margin-bottom:20px; }
.title-row img{ width:88px; height:88px; flex-shrink:0; }
.title-row h1{ margin:0; }
@media (max-width:600px){ .title-row img{ width:60px; height:60px; } .title-row{ gap:14px; } }

/* hero watermark */
.hero{ position:relative; overflow:hidden; }
.hero-watermark{ position:absolute; right:-60px; bottom:-60px; width:340px; opacity:.05; pointer-events:none; }
@media (max-width:768px){ .hero-watermark{ display:none; } }

/* seal divider */
.seal-divider{ display:flex; align-items:center; justify-content:center; gap:16px; margin:8px 0 40px; }
.seal-divider::before, .seal-divider::after{ content:""; height:1px; background:var(--line); flex:1; max-width:120px; }
.seal-divider img{ width:34px; height:34px; opacity:.8; }

/* ===== v7: pricing section headers + dark tier headers ===== */
.step-header{ display:flex; flex-direction:column; gap:6px; margin-bottom:20px; }
.step-tag{ font-size:11px; letter-spacing:.28em; text-transform:uppercase; font-weight:700; color:var(--verm); }
.step-header h2{ margin:0; }

/* inverted tier headers: dark strip, cream text; body stays cream */
.tier{ padding:0; overflow:hidden; }
.tier .tier-head{ background:var(--ink); color:var(--cream); padding:22px 22px 18px; }
.tier .tier-head h3{ color:var(--cream); margin:0 0 8px; font-size:19px; }
.tier .tier-head .per{ color:var(--cream); font-size:30px; font-weight:900; }
.tier .tier-head .per span{ color:var(--cream); opacity:.7; font-size:14px; font-weight:600; }
.tier ul{ padding:20px 22px 24px; margin:0; }
.tier .upkeep-meta{ padding:18px 22px 24px; color:var(--muted); font-size:15px; line-height:1.7; }
.tier.popular .tier-head{ background:var(--verm); }
.tier.popular .badge{ background:var(--ink); }

/* kitchen page step section headers get the same inverted strip treatment */
.kitchen-step-head{ background:var(--ink); color:var(--cream); border-radius:16px; padding:22px 28px; margin-bottom:28px; }
.kitchen-step-head .step-tag{ color:var(--amber); }
.kitchen-step-head h2{ color:var(--cream); margin:6px 0 0; }

/* ===== v7: RESET legend ===== */
.reset-legend{ max-width:620px; margin:0 auto; }
.reset-word{ font-family:'Archivo',sans-serif; font-weight:900; font-size:clamp(64px,12vw,120px); letter-spacing:.12em; text-align:center; line-height:1; color:var(--cream); }
.reset-legend-light .reset-word{ color:var(--ink); }
.reset-rule{ height:3px; width:180px; background:var(--verm); margin:20px auto 32px; }
.reset-steps{ list-style:none; margin:0; padding:0; }
.reset-steps li{ display:grid; grid-template-columns:44px 150px 1fr; align-items:baseline; gap:14px; padding:14px 0; border-top:1px solid rgba(241,236,225,.15); }
.reset-legend-light .reset-steps li{ border-top:1px solid var(--line); }
.reset-steps .rl{ font-family:'Archivo',sans-serif; font-weight:900; font-size:30px; color:var(--verm); }
.reset-steps .rw{ font-weight:700; font-size:20px; color:var(--cream); }
.reset-legend-light .reset-steps .rw{ color:var(--ink); }
.reset-steps .rd{ font-size:15px; color:var(--cream); opacity:.75; }
.reset-legend-light .reset-steps .rd{ color:#33302b; opacity:1; }
@media (max-width:600px){
  .reset-steps li{ grid-template-columns:34px 1fr; }
  .reset-steps .rd{ grid-column:2; }
}

/* ===== v8: premium pricing redesign ===== */
.pricing-page section{ padding:72px 0; border-bottom:none; }
.pricing-intro{ font-size:16px; color:var(--ink); max-width:70ch; margin-bottom:44px; }
.psec-head{ margin-bottom:10px; }
.psec-tag{ font-size:11px; letter-spacing:.28em; text-transform:uppercase; font-weight:700; color:var(--verm); display:block; margin-bottom:8px; }
.psec-head h2{ margin:0; }

/* project / foundation cards: price-first */
.price-card{ position:relative; background:var(--cream); border:1.5px solid var(--ink); border-radius:18px; padding:36px 32px; }
.price-card .pc-title{ font-size:17px; font-weight:700; color:var(--ink); letter-spacing:.02em; margin-bottom:6px; }
.price-card .pc-price{ font-family:'Archivo',sans-serif; font-weight:900; font-size:clamp(38px,5vw,52px); line-height:1; color:var(--ink); margin-bottom:16px; }
.price-card .pc-desc{ font-size:15px; color:var(--ink); margin:0; line-height:1.6; }
.pc-badge{ position:absolute; top:-13px; left:28px; font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:6px 14px; border-radius:999px; color:var(--cream); }
.pc-badge.verm{ background:var(--verm); }
.pc-badge.amber{ background:var(--amber); color:var(--ink); }

/* weekly comparison: cream cards, price-first, dark text */
.wk-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .wk-grid{ grid-template-columns:1fr; } }
.wk-col{ position:relative; background:var(--cream); border:1.5px solid var(--ink); border-radius:18px; padding:34px 28px; }
.wk-col.hl{ border-width:3px; }
.wk-col .wk-title{ font-size:17px; font-weight:700; margin-bottom:6px; color:var(--ink); }
.wk-col .wk-price{ font-family:'Archivo',sans-serif; font-weight:900; font-size:44px; line-height:1; color:var(--ink); margin-bottom:8px; }
.wk-col .wk-price span{ font-size:15px; font-weight:600; color:var(--ink); }
.wk-col ul{ list-style:none; margin:20px 0 0; padding:0; }
.wk-col li{ display:flex; gap:10px; padding:9px 0; font-size:15px; color:var(--ink); border-top:1px solid rgba(24,22,19,.12); }
.wk-col li::before{ content:"✓"; color:var(--verm); font-weight:700; }
.callout{ background:var(--cream); border:1.5px solid var(--ink); border-radius:14px; padding:20px 24px; margin-top:28px; text-align:center; font-size:15px; color:var(--ink); }

/* flight matrix */
.matrix-wrap{ overflow-x:auto; }
.matrix{ width:100%; border-collapse:separate; border-spacing:12px; min-width:720px; }
.matrix th, .matrix td{ background:var(--cream); border:1.5px solid var(--ink); border-radius:14px; padding:20px 18px; text-align:center; vertical-align:middle; }
.matrix thead th{ font-size:15px; font-weight:700; color:var(--ink); position:relative; }
.matrix .row-title{ text-align:left; font-weight:700; font-size:16px; color:var(--ink); min-width:170px; }
.matrix .m-price{ font-family:'Archivo',sans-serif; font-weight:900; font-size:30px; line-height:1; color:var(--ink); }
.matrix .m-per{ font-size:13px; font-style:italic; color:var(--ink); margin-top:6px; }
.matrix col.hl-verm, .matrix td.hl-verm{ box-shadow:inset 0 0 0 2px var(--verm); }
.mx-badge{ display:inline-block; font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:4px 10px; border-radius:999px; margin-bottom:8px; }
.mx-badge.verm{ background:var(--verm); color:var(--cream); }
.mx-badge.amber{ background:var(--amber); color:var(--ink); }
.matrix td.col-verm{ box-shadow:inset 0 0 0 2.5px var(--verm); }
.matrix td.col-amber{ box-shadow:inset 0 0 0 2.5px var(--amber); }

/* closing CTA */
.close-cta{ text-align:center; max-width:60ch; margin:0 auto; }
.close-cta p{ font-size:19px; color:var(--ink); margin-bottom:28px; }

/* ===== v9: How We Work five-column ===== */
.reset-columns{ display:grid; grid-template-columns:repeat(5,1fr); gap:40px; }
.reset-col{ text-align:center; }
.rc-letter{ font-family:'Archivo',sans-serif; font-weight:900; font-size:clamp(56px,7vw,96px); line-height:1; color:var(--cream); margin-bottom:14px; }
.rc-word{ font-weight:700; font-size:20px; color:var(--verm); margin-bottom:14px; letter-spacing:.01em; }
.rc-desc{ font-size:15px; line-height:1.6; color:var(--cream); opacity:.85; margin:0; }
@media (max-width:900px){
  .reset-columns{ grid-template-columns:repeat(2,1fr); gap:44px 32px; }
  .reset-col:last-child{ grid-column:1 / -1; max-width:50%; margin:0 auto; }
}
@media (max-width:520px){
  .reset-columns{ grid-template-columns:1fr; gap:36px; }
  .reset-col:last-child{ grid-column:auto; max-width:none; }
}
