
:root {
  --ink: #17201c;
  --muted: #66716b;
  --paper: #f6f4ef;
  --white: #fff;
  --forest: #173c32;
  --forest-2: #235446;
  --lime: #d7ff70;
  --sand: #e8dfd0;
  --rust: #c96e46;
  --line: #d8dcd7;
  --blue: #dfeaf1;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.site-header {
  max-width: 1280px;
  height: 86px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 54px;
  height: 44px;
  border-radius: 10px;
  background: #0f2f28;
  display: block;
  position: relative;
  overflow: hidden;
  border: 0;
  box-shadow: 0 5px 12px rgba(15,47,40,.12);
}
.brand-mark::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f8f5ee;
  box-shadow: 9px 0 0 #f8f5ee, 18px 0 0 #f8f5ee;
  z-index: 2;
}
.brand-mark span:first-child {
  position: absolute;
  left: 7px;
  right: 7px;
  top: 18px;
  bottom: 7px;
  background: linear-gradient(132deg, #9db65c 0 52%, #f3eee5 52.5% 100%);
  border-radius: 2px;
}
.brand-mark span:last-child { display: none; }
.brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}
.brand-name strong { font-weight: 900; }
.desktop-nav { display: flex; gap: 27px; font-size: 13px; font-weight: 700; }
.desktop-nav a { opacity: .8; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}
.menu-button { display: none; border: 0; background: transparent; font-weight: 800; cursor: pointer; }
.mobile-nav { display: none; }

.hero {
  max-width: 1280px;
  margin: auto;
  padding: 70px 28px 92px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}
.eyebrow, .section-label {
  color: var(--forest-2);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 900;
}
.eyebrow:before, .section-label:before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  margin: 0 10px 3px 0;
}
.hero h1, .section h2, .work-section h2, .package-section h2, .contact-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.045em;
}
.hero h1 {
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: .96;
  margin: 19px 0 25px;
}
.hero h1 em { color: var(--rust); font-style: italic; }
.hero-lead { max-width: 620px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 31px 0 38px; }
.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.primary { background: var(--forest); color: white; }
.secondary { border-color: #b9c2bc; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.hero-proof div { border-top: 1px solid var(--line); padding-top: 13px; }
.hero-proof strong { display: block; font-family: Georgia, serif; font-size: 19px; color: var(--forest); }
.hero-proof span { display: block; font-size: 10px; color: var(--muted); line-height: 1.4; }

.hero-visual { min-height: 610px; position: relative; display: grid; align-items: center; }
.frame-shadow {
  position: absolute;
  inset: 70px 0 30px 55px;
  background: var(--forest);
  border-radius: 4px;
  transform: rotate(2.4deg);
}
.browser-card {
  position: relative;
  z-index: 2;
  background: white;
  border: 1px solid #cfd5d1;
  box-shadow: 0 30px 80px rgba(23,43,35,.2);
  border-radius: 9px;
  overflow: hidden;
}
.main-browser { width: calc(100% - 40px); margin-left: 0; }
.browser-top, .mini-top {
  height: 34px;
  background: #f1f2ef;
  border-bottom: 1px solid #e0e2df;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.browser-top > span, .mini-top span { width: 7px; height: 7px; border-radius: 50%; background: #c7cbc7; }
.url-bar { margin-left: 10px; flex: 1; background: white; border-radius: 4px; padding: 3px 9px; color: #9a9f9b; font-size: 8px; }

.float-card {
  position: absolute;
  z-index: 3;
  background: var(--lime);
  width: 185px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15,34,27,.2);
}
.float-card span { display: block; font-size: 9px; font-weight: 900; opacity: .6; }
.float-card strong { display: block; font-family: Georgia, serif; font-size: 18px; line-height: 1.1; margin: 12px 0 5px; }
.float-card small { display: block; line-height: 1.35; font-size: 9px; }
.float-one { right: -5px; top: 13px; }
.float-two { left: -36px; bottom: 0; background: white; }

.statement { background: var(--forest); color: white; padding: 50px 24px; }
.statement p { max-width: 1040px; margin: auto; text-align: center; font-family: Georgia,serif; font-size: clamp(25px,3vw,38px); line-height: 1.28; }
.statement strong { color: var(--lime); font-weight: 500; }

.section { max-width: 1280px; margin: auto; padding: 105px 28px; }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 90px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .value-lead h2, .faq-heading h2, .audience-layout h2 {
  font-size: clamp(42px,5vw,66px);
  line-height: 1.02;
  margin: 15px 0 0;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.steps article { background: white; border: 1px solid var(--line); padding: 31px; min-height: 310px; }
.steps article.featured { background: var(--lime); border-color: var(--lime); transform: translateY(-12px); }
.step-number { display: inline-block; font-size: 17px; line-height: 1; font-weight: 900; color: var(--rust); letter-spacing: -.03em; }
.steps h3 { font-family: Georgia,serif; font-size: 30px; line-height: 1.06; font-weight: 500; margin: 75px 0 13px; }
.steps p { color: var(--muted); font-size: 14px; }
.featured p { color: #405144; }

.work-section { background: #102c25; color: white; padding-bottom: 105px; }
.work-intro { padding-bottom: 55px; }
.light-label { color: #cfe2d7; }
.section-heading.compact { margin-bottom: 0; }
.work-section .section-heading > p { color: #bdd0c6; }
.work-grid { max-width: 1280px; margin: auto; padding: 0 28px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.project { border: 1px solid rgba(255,255,255,.14); padding: 14px; }
.project-browser { border-radius: 5px; overflow: hidden; background: white; min-height: 330px; color: var(--ink); }
.mini-top { height: 28px; }

.project-meta { padding: 22px 4px 8px; }
.project-meta span { color: #aac0b5; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.project-meta h3 { font-family: Georgia,serif; font-size: 25px; margin: 8px 0 4px; font-weight: 500; }
.project-meta p { color: #b9cbc2; font-size: 12px; margin: 0; }

.value-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.value-lead { position: sticky; top: 30px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.value-grid article { min-height: 240px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid article:nth-child(2n) { border-right: 0; }
.value-grid span { color: var(--rust); font-weight: 900; font-size: 17px; line-height: 1; letter-spacing: -.03em; }
.value-grid h3 { font-family: Georgia,serif; font-weight: 500; font-size: 26px; margin: 55px 0 8px; }
.value-grid p { font-size: 13px; color: var(--muted); }

.package-section { background: #d0d9d2; padding: 100px 28px; }
.package-wrap { max-width: 1180px; margin: auto; display: grid; grid-template-columns: 1fr .82fr; gap: 90px; align-items: center; }
.package-copy h2 { font-size: clamp(48px,6vw,72px); line-height: 1; margin: 16px 0 24px; }
.package-copy > p { color: #53635b; font-size: 17px; }
.hosting-note { border-top: 1px solid #aebcb2; margin-top: 34px; padding-top: 22px; display: grid; grid-template-columns: .42fr 1fr; gap: 20px; }
.hosting-note span { font-weight: 900; font-size: 12px; }
.hosting-note p { margin: 0; color: #53635b; font-size: 13px; }
.price-card { background: var(--forest); color: white; padding: 44px; box-shadow: 0 28px 60px rgba(20,45,37,.2); }
.price-card > span { color: #c9d9d0; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.price { font-family: Georgia,serif; font-size: 78px; line-height: 1; letter-spacing: -.05em; margin: 14px 0 0; }
.price small { font-size: 28px; vertical-align: top; margin-right: 5px; }
.price-card em { color: #aac0b5; font-style: normal; font-size: 11px; }
.price-card ul { list-style: none; margin: 30px 0; padding: 0; }
.price-card li { border-top: 1px solid rgba(255,255,255,.13); padding: 10px 0 10px 20px; position: relative; font-size: 12px; color: #d6e1db; }
.price-card li:before { content:'✓'; position:absolute; left:0; color:var(--lime); }
.package-button { width: 100%; background: var(--lime); color: #19352d; }
.package-small { text-align: center; font-size: 9px; color: #9cb2a7; margin-bottom: 0; }

.audience-layout { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; margin-top: 15px; }
.audience-layout h2 { margin: 0; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
.audience-tags span { border: 1px solid #bdc6c0; border-radius: 999px; padding: 9px 13px; font-size: 11px; background: white; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-heading h2 { font-size: clamp(38px,4.5vw,58px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; text-align: left; font-weight: 800; cursor: pointer; }
.faq-question i { font-style: normal; font-size: 22px; transition: transform .2s ease; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 50px 22px 0; color: var(--muted); font-size: 14px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.contact-section { background: var(--rust); color: white; padding: 100px 28px; }
.contact-wrap { max-width: 1180px; margin: auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy h2 { font-size: clamp(48px,6vw,74px); line-height: .98; margin: 15px 0 24px; }
.contact-copy > p { color: #f2ddd3; font-size: 16px; }
.contact-note { margin-top: 32px; font-size: 11px; display: flex; gap: 9px; align-items: center; }
.contact-note span { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }
.contact-details { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 12px; color: #f6e7df; }
.contact-details a { color: white; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.contact-form { background: #b85c38; padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  color: white;
  outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #efd4c9; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.wide { grid-column: 1/-1; }
.form-button { background: var(--lime); color: #21392f; width: 100%; margin-top: 2px; }
.form-status { display: none; background: #fff1e7; color: #64321f; padding: 12px; font-size: 12px; }
.form-status.show { display: block; }
.form-status.success { background: #e7f2e9; color: #173c32; }
.form-status.error { background: #fff0ec; color: #74331f; }
.form-button:disabled { cursor: wait; opacity: .72; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer {
  max-width: 1280px;
  margin: auto;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 11px;
}
.footer-brand { margin: 0; color: var(--ink); }
.site-footer p { text-align: center; }
.footer-meta { display: grid; justify-items: end; gap: 3px; text-align: right; }
.footer-meta a { color: var(--ink); font-weight: 800; }
.footer-meta span { color: var(--muted); }

/* Fictitious portfolio mockups */
.kleurhaven-site, .luwte-site, .helderpad-site, .voltveer-site {
  height: 302px;
  overflow: hidden;
  position: relative;
}
.kleurhaven-site { display: grid; grid-template-columns: 46px 1fr; background: #f3eadb; color: #1b241f; }
.kleurhaven-rail { background: #bd6343; color: white; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 13px 0; }
.kleurhaven-rail strong { font-family: Georgia,serif; font-size: 16px; }
.kleurhaven-rail span { font-size: 7px; transform: rotate(-90deg); margin-bottom: 8px; }
.kleurhaven-main { display: grid; grid-template-rows: 42px 1fr 31px; }
.kleurhaven-nav { padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #d9cbbc; }
.kleurhaven-nav strong { font-family: Georgia,serif; font-size: 13px; }
.kleurhaven-nav span { font-size: 5.5px; text-transform: uppercase; letter-spacing: .08em; }
.kleurhaven-body { display: grid; grid-template-columns: .95fr 1.05fr; }
.kleurhaven-copy { padding: 24px 16px; display: flex; flex-direction: column; justify-content: center; }
.kleurhaven-copy small { font-size: 5.5px; letter-spacing: .14em; font-weight: 900; color: #a65236; }
.kleurhaven-copy .concept-display-heading { font-family: Georgia,serif; font-size: 27px; line-height: .92; font-weight: 500; letter-spacing: -.045em; margin: 9px 0; }
.kleurhaven-copy p { font-size: 6.5px; line-height: 1.5; color: #626a65; }
.kleurhaven-copy b { margin-top: 10px; font-size: 6px; text-transform: uppercase; letter-spacing: .08em; }
.kleurhaven-photo {
  background-image: linear-gradient(rgba(40,34,26,.06),rgba(40,34,26,.06)), url('/resources/kleurhaven.webp');
  background-size: cover;
  background-position: center 44%;
}
.kleurhaven-bottom { border-top: 1px solid #d9cbbc; display: flex; align-items: center; justify-content: space-around; font-size: 5.5px; text-transform: uppercase; letter-spacing: .1em; }

.luwte-site { background: #233f31; }
.luwte-photo {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg,rgba(20,46,34,.12),rgba(20,46,34,.62)), url('/resources/luwte.webp');
  background-size: cover;
  background-position: center;
}
.luwte-overlay { position: absolute; inset: 0; color: white; padding: 16px; display: flex; flex-direction: column; }
.luwte-nav { display: flex; align-items: center; justify-content: space-between; }
.luwte-nav strong { font-family: Georgia,serif; font-size: 15px; letter-spacing: .12em; }
.luwte-nav span { font-size: 5px; text-transform: uppercase; letter-spacing: .12em; }
.luwte-message { margin-top: auto; width: 74%; }
.luwte-message small { font-size: 5px; letter-spacing: .16em; font-weight: 900; }
.luwte-message .concept-display-heading { font-family: Georgia,serif; font-weight: 500; font-size: 30px; line-height: .92; margin: 8px 0 12px; }
.luwte-message b { display: inline-block; padding: 7px 9px; background: #e1efc9; color: #294938; font-size: 5.5px; border-radius: 999px; }
.luwte-index { display: flex; gap: 18px; margin-top: 19px; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.35); font-size: 5px; text-transform: uppercase; letter-spacing: .08em; }

.voltveer-site { height: 390px; color: #18312a; }
.voltveer-nav { height: 57px; padding: 0 20px; display: flex; align-items: center; border-bottom: 1px solid #e3e5df; background: #fffdf8; }
.voltveer-logo { display: grid; grid-template-columns: 24px auto; grid-template-rows: 1fr 1fr; column-gap: 8px; align-items: center; }
.voltveer-logo > span { grid-row: 1/3; width: 24px; height: 24px; border-radius: 3px; display: grid; place-items: center; background: #cfe66a; color: #173c32; font-weight: 900; font-size: 12px; }
.voltveer-logo strong { font-size: 9px; letter-spacing: .11em; }
.voltveer-logo small { font-size: 4px; letter-spacing: .13em; color: #65716b; }
.voltveer-links { margin-left: auto; display: flex; gap: 13px; font-size: 6px; color: #65716b; }
.voltveer-nav > b { margin-left: 15px; background: #173c32; color: white; padding: 7px 10px; border-radius: 999px; font-size: 6px; }
.voltveer-fresh-hero { min-height: 292px; display: grid; grid-template-columns: .9fr 1.1fr; }
.voltveer-fresh-copy {
  padding: 35px 26px 27px;
  background: radial-gradient(circle at 12% 15%, rgba(215,255,112,.55), transparent 34%), #f4f0e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voltveer-fresh-copy > small { color: #466151; font-size: 6px; letter-spacing: .16em; font-weight: 900; }
.voltveer-fresh-copy .concept-display-heading { margin: 10px 0; font-family: Georgia,serif; font-size: 35px; line-height: .96; font-weight: 500; letter-spacing: -.045em; }
.voltveer-fresh-copy p { max-width: 245px; margin: 0; color: #5d6b64; font-size: 8px; line-height: 1.55; }
.voltveer-fresh-actions { display: flex; align-items: center; gap: 11px; margin-top: 15px; }
.voltveer-fresh-actions span { padding: 8px 10px; border-radius: 999px; background: #173c32; color: white; font-size: 6px; font-weight: 900; }
.voltveer-fresh-actions b { font-size: 6px; color: #40564b; }
.voltveer-fresh-proof { display: flex; gap: 7px; align-items: baseline; margin-top: 15px; }
.voltveer-fresh-proof strong { font-family: Georgia,serif; font-size: 14px; color: #173c32; }
.voltveer-fresh-proof small { font-size: 5.5px; color: #6d7872; }
.voltveer-fresh-photo { position: relative; overflow: hidden; background: #dbe2da; }
.voltveer-fresh-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 38%; }
.voltveer-photo-card { position: absolute; right: 13px; bottom: 13px; width: 133px; padding: 10px 12px; background: rgba(255,255,255,.95); box-shadow: 0 10px 28px rgba(23,60,50,.18); }
.voltveer-photo-card span { color: #769034; font-size: 5px; font-weight: 900; }
.voltveer-photo-card strong { display: block; margin-top: 3px; font-family: Georgia,serif; font-size: 11px; line-height: 1.05; }
.voltveer-photo-card small { display: block; margin-top: 4px; color: #67736d; font-size: 5.5px; line-height: 1.35; }
.voltveer-fresh-bar { height: 41px; display: grid; grid-template-columns: repeat(3,1fr); background: #173c32; color: #dae5df; }
.voltveer-fresh-bar span { padding: 8px 13px; border-right: 1px solid rgba(255,255,255,.12); font-size: 5.5px; }
.voltveer-fresh-bar span:last-child { border-right: 0; }
.voltveer-fresh-bar b { display: block; color: #d7ff70; font-size: 6px; }

.helderpad-premium { padding: 0; background: #f4eee8; color: #2f4f57; display: grid; grid-template-rows: 43px 1fr 63px; }
.helderpad-premium-top { display: flex; align-items: center; padding: 0 13px; gap: 10px; border-bottom: 1px solid #ded6cf; background: #fffaf5; }
.helderpad-premium-top strong { font-family: Georgia,serif; font-size: 12px; font-weight: 500; }
.helderpad-premium-top span { margin-left: auto; color: #6d7b7f; font-size: 5px; }
.helderpad-premium-top b { background: #b97d68; color: white; border-radius: 999px; padding: 6px 8px; font-size: 5px; }
.helderpad-premium-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 196px; }
.helderpad-premium-copy { padding: 21px 16px; display: flex; flex-direction: column; justify-content: center; }
.helderpad-premium-copy small { color: #b07965; font-size: 5px; font-weight: 900; letter-spacing: .15em; }
.helderpad-premium-copy .concept-display-heading { margin: 7px 0; font-family: Georgia,serif; font-size: 24px; line-height: .94; font-weight: 500; letter-spacing: -.04em; }
.helderpad-premium-copy p { margin: 0 0 10px; color: #68797d; font-size: 6px; line-height: 1.5; }
.helderpad-premium-button { align-self: flex-start; padding: 6px 8px; background: #315963; color: white; border-radius: 999px; font-size: 5.5px; font-weight: 800; }
.helderpad-premium-photo { position: relative; overflow: hidden; }
.helderpad-premium-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.helderpad-quote { position: absolute; left: 9px; right: 9px; bottom: 9px; padding: 8px 9px; background: rgba(255,250,245,.94); font-family: Georgia,serif; font-size: 8px; line-height: 1.2; }
.helderpad-premium-bottom { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #ded6cf; background: #fffaf5; }
.helderpad-premium-bottom > div { display: grid; align-content: center; padding: 7px 10px; border-right: 1px solid #ded6cf; }
.helderpad-premium-bottom > div:last-child { border-right: 0; }
.helderpad-premium-bottom span { color: #b07965; font-size: 4.5px; }
.helderpad-premium-bottom strong { font-family: Georgia,serif; font-size: 9px; font-weight: 500; }
.helderpad-premium-bottom small { color: #718085; font-size: 4.5px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  background: #fff;
  color: var(--forest);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid #6f8d35; outline-offset: 3px; }
.button, .header-cta, .menu-button, .mobile-nav a, .faq-question { min-height: 44px; }
.menu-button { min-width: 44px; }

.portfolio-cta {
  max-width: 1224px;
  margin: 38px auto 0;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.portfolio-cta h3 { margin: 8px 0 0; font-family: Georgia,serif; font-size: 30px; font-weight: 500; }
.portfolio-cta-button { background: var(--lime); color: #173c32; flex: 0 0 auto; }

@media (max-width: 920px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .mobile-nav { padding: 4px 24px 18px; border-bottom: 1px solid var(--line); gap: 2px; background: var(--paper); }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 9px 0; font-size: 13px; font-weight: 800; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 52px; }
  .hero-visual { min-height: 560px; }
  .main-browser { width: calc(100% - 20px); }
  .section-heading, .value-section, .package-wrap, .audience-layout, .faq-section, .contact-wrap { grid-template-columns: 1fr; gap: 38px; }
  .steps, .work-grid { grid-template-columns: 1fr; }
  .steps article.featured { transform: none; }
  .project-browser { min-height: 380px; }
  .value-lead { position: static; }
  .package-wrap { max-width: 760px; }
  .audience-tags { max-width: 700px; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer p { text-align: left; margin: 0; }
  .footer-meta { justify-items: start; text-align: left; }
  .portfolio-cta { margin-left: 28px; margin-right: 28px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { height: 70px; padding: 0 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 20px; }
  .mobile-nav a { min-height: 44px; display: flex; align-items: center; font-size: 16px; }
  .menu-button { font-size: 16px; }
  .hero { padding: 38px 16px 65px; gap: 35px; }
  .hero h1 { font-size: 48px; }
  .hero-lead, .section-heading > p, .steps p, .project-meta p, .value-grid p, .package-copy > p, .hosting-note p, .faq-answer, .contact-copy > p, .contact-form input, .contact-form textarea { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 8px; }
  .hero-proof div { display: grid; grid-template-columns: .8fr 1fr; align-items: baseline; gap: 12px; }
  .hero-visual { min-height: 410px; }
  .frame-shadow { inset: 35px 0 10px 22px; }
  .main-browser { width: 100%; }
  .browser-top { height: 27px; }
  .float-card { display: none; }
  .statement { padding: 38px 16px; }
  .statement p { font-size: 23px; }
  .section { padding: 72px 16px; }
  .section-heading h2, .value-lead h2, .faq-heading h2, .audience-layout h2 { font-size: 38px; }
  .section-heading { margin-bottom: 30px; }
  .steps article { min-height: 0; padding: 24px; }
  .steps h3 { margin-top: 40px; font-size: 27px; }
  .work-section { padding-bottom: 72px; }
  .work-grid { padding: 0 16px; }
  .project-browser { min-height: 300px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { border-right: 0; min-height: 190px; padding: 22px 0; }
  .value-grid h3 { margin-top: 35px; }
  .package-section, .contact-section { padding: 72px 16px; }
  .package-copy h2, .contact-copy h2 { font-size: 45px; }
  .hosting-note { grid-template-columns: 1fr; gap: 8px; }
  .price-card { padding: 30px 22px; }
  .price { font-size: 66px; }
  .faq-answer { padding-right: 10px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px 16px; }
  .contact-form label { font-size: 14px; }
  .wide { grid-column: auto; }
  .site-footer { padding: 30px 16px; }
  .button, .header-cta, .form-button { min-height: 48px; font-size: 15px; }
  .portfolio-cta { margin: 28px 16px 0; padding: 22px 18px; display: grid; gap: 18px; }
  .portfolio-cta h3 { font-size: 26px; }

  .voltveer-site { height: 270px; }
  .voltveer-nav { height: 42px; padding: 0 10px; }
  .voltveer-links { display: none; }
  .voltveer-fresh-hero { min-height: 192px; grid-template-columns: 1fr 1.05fr; }
  .voltveer-fresh-copy { padding: 18px 12px; }
  .voltveer-fresh-copy .concept-display-heading { font-size: 22px; }
  .voltveer-fresh-copy p { font-size: 6px; }
  .voltveer-fresh-actions b, .voltveer-fresh-proof { display: none; }
  .voltveer-photo-card { display: none; }
  .voltveer-fresh-bar { height: 36px; }
  .helderpad-premium-grid { min-height: 196px; }
}
