
:root {
  --bg: #0f0d0b;
  --bg-alt: #17130f;
  --surface: #201a15;
  --surface-2: #2a2219;
  --border: rgba(242, 237, 228, 0.1);
  --text: #f3ede2;
  --text-muted: #b3a89a;
  --accent: #c9a25f;
  --accent-2: #e3c286;
  --accent-dark: #9a7842;
  --warm-bg: #f3ebdd;
  --warm-surface: #ffffff;
  --warm-border: rgba(43, 36, 30, 0.1);
  --warm-text: #2b241d;
  --warm-text-muted: #6f6152;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 2px;
  --container: 1180px;
  --nav-h: 84px;
  --topbar-h: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section {
  padding: 120px 0;
  position: relative;
}
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}
.section-head p { color: var(--text-muted); font-size: 17px; max-width: 52ch; }
.section-head.center p { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #16110b;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 95, 0.28); }
.btn-outline {
  border-color: rgba(243, 237, 226, 0.28);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3); }
.btn-block { width: 100%; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
}
.topbar-row {
  height: var(--topbar-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s var(--ease), opacity 0.25s var(--ease), border-color 0.3s var(--ease);
}
.nav.is-scrolled .topbar-row { height: 0; opacity: 0; border-bottom-color: transparent; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; width: 100%; }
.topbar-text { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { color: var(--accent); display: flex; transition: color 0.25s; }
.topbar-social a:hover { color: var(--text); }
.topbar-social svg { width: 15px; height: 15px; }

.nav-row {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), height 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled .nav-row {
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(14px);
  border-color: var(--border);
  height: 72px;
}
.nav-row .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { color: var(--text-muted); transition: color 0.25s; position: relative; }
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-actions .btn { padding: 13px 24px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text); transition: all 0.3s; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-top: calc(var(--nav-h) + var(--topbar-h));
  overflow: hidden;
    background-color: var(--bg);
  background-image:
    linear-gradient(0deg, rgba(10,9,7,0.72) 0%, rgba(10,9,7,0.32) 46%, rgba(10,9,7,0.48) 100%),
    radial-gradient(ellipse 70% 60% at 75% 15%, rgba(201,162,95,0.14), transparent),
    url("../img/hero/hero-kitchen.jpg"),
    linear-gradient(160deg, #241d16 0%, #17130f 55%, #0f0d0b 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
  max-width: 680px;
}
.hero-kicker {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 22px;
  color: #fff;
}
.hero-lead {
  color: rgba(243, 237, 226, 0.86);
  font-size: 19px;
  max-width: 44ch;
  margin-bottom: 20px;
}
.hero-tags {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--accent-2);
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-photo-credit {
  position: absolute;
  right: 32px; bottom: 24px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(243, 237, 226, 0.5);
}
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, rgba(243,237,226,0.5));
}
.scroll-cue::after {
  content: "";
  position: absolute; left: -3px; top: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: 0; opacity: 1; } 90% { opacity: 0; } 100% { top: 90%; opacity: 0; } }

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-track span::after { content: "—"; margin-left: 60px; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.35s var(--ease);
}
.service-card:hover { background: var(--surface); }
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  display: block;
}
.service-card h3 { font-size: 26px; margin-bottom: 14px; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 34px; border-top: 1px solid var(--border); }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: var(--accent);
  position: absolute;
  top: -13px; left: 0;
  background: var(--bg-alt);
  padding-right: 14px;
}
.process-step h4 { font-size: 20px; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14px; }

.section-portfolio {
  background: var(--warm-bg);
  color: var(--warm-text);
}
.section-portfolio h2, .section-portfolio h3, .section-portfolio h4 { color: var(--warm-text); }
.section-portfolio .eyebrow { color: var(--accent-dark); }
.section-portfolio .eyebrow::before { background: var(--accent-dark); }
.section-portfolio .section-head p { color: var(--warm-text-muted); }

.portfolio-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  border: 1px solid var(--warm-border);
  background: transparent;
  color: var(--warm-text-muted);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.filter-btn.is-active, .filter-btn:hover { border-color: var(--accent-dark); color: var(--accent-dark); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.portfolio-item {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--warm-surface);
  border: 1px solid var(--warm-border);
  box-shadow: 0 18px 40px rgba(43, 36, 30, 0.08);
    display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.portfolio-item:hover, .portfolio-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(43, 36, 30, 0.18);
}
.portfolio-item:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 3px; }
.portfolio-item.is-hidden { display: none; }
.portfolio-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover .portfolio-photo,
.portfolio-item:focus-visible .portfolio-photo { transform: scale(1.04); }
.portfolio-caption {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 26px;
    background: linear-gradient(0deg, rgba(15,13,11,0.78) 0%, rgba(15,13,11,0.22) 55%, rgba(15,13,11,0.12) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.portfolio-item:hover .portfolio-caption,
.portfolio-item:focus-visible .portfolio-caption { opacity: 1; }
.portfolio-caption h4 { font-size: 20px; margin-bottom: 4px; color: #fff; }
.portfolio-caption span { font-size: 13px; color: var(--accent-2); }

.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(10, 9, 7, 0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 90px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure {
  max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.lightbox-img {
  max-width: 100%; max-height: 76vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  color: var(--text);
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}
.lightbox-caption .lightbox-title { display: block; font-size: 18px; }
.lightbox-caption .lightbox-cat {
  display: block;
  margin-top: 6px;
  color: var(--accent-2);
  font-size: 12px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  border: 1px solid rgba(243, 237, 226, 0.28);
  background: rgba(15, 13, 11, 0.5);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-close { top: 26px; right: 26px; width: 46px; height: 46px; }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 26px; }
.lightbox-next { right: 26px; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.advantage-card {
  background: var(--bg);
  padding: 40px 30px;
  transition: background 0.35s var(--ease);
}
.advantage-card:hover { background: var(--surface); }
.advantage-card .icon {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.advantage-card .icon svg { width: 22px; height: 22px; }
.advantage-card h4 { font-size: 19px; margin-bottom: 10px; }
.advantage-card p { font-size: 14px; color: var(--text-muted); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.material-card {
  border: 1px solid var(--border);
  padding: 40px 34px;
  background: var(--surface);
}
.material-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.material-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; }
.material-card.is-generic .material-brand { color: var(--text); font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em; font-family: "Inter", sans-serif; font-weight: 600; }
.material-stat {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 12px;
  margin-bottom: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.pricing-card .icon {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.pricing-card .icon svg { width: 22px; height: 22px; }
.pricing-card h4 { font-size: 22px; margin-bottom: 10px; }
.pricing-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute; inset: 18px;
  border: 1px solid rgba(201, 162, 95, 0.3);
  z-index: 1;
}
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-visual-portrait { display: flex; align-items: center; justify-content: center; }
.portrait-ph-icon { position: relative; z-index: 1; width: 72px; height: 72px; color: rgba(201, 162, 95, 0.35); }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; max-width: 56ch; }
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.about-values h4 { font-size: 18px; margin-bottom: 8px; color: var(--accent-2); }
.about-values p { font-size: 14px; color: var(--text-muted); margin: 0; }

.founder {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 56px;
  align-items: center;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-text .eyebrow { margin-bottom: 22px; }
.founder-quote { font-size: 20px; color: var(--text); max-width: 56ch; font-family: "Cormorant Garamond", serif; line-height: 1.5; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.contact-grid > div { min-width: 0; }
.contact-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact-row { display: flex; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.contact-row .icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-row .icon svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; font-family: "Inter", sans-serif; font-weight: 600; }
.contact-row p, .contact-row a { color: var(--text-muted); font-size: 15px; }
.contact-row a:hover { color: var(--accent); }
.gis-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(201, 162, 95, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gis-link:hover { color: var(--text); border-color: var(--text); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}
.contact-card h3 { font-size: 26px; margin-bottom: 6px; }
.contact-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; }

.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; background: var(--bg-alt); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; padding-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 34ch; margin-top: 14px; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-cols { display: flex; gap: 72px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { font-size: 12px; color: rgba(179, 168, 154, 0.6); margin-top: 10px; max-width: 70ch; }

.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 300;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
body.lightbox-active .wa-float { opacity: 0; pointer-events: none; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.legal-page { padding: calc(var(--nav-h) + var(--topbar-h) + 80px) 0 120px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 12px; }
.legal-updated { color: var(--text-muted); font-size: 14px; margin-bottom: 56px; }
.legal-page h2 { font-size: 22px; margin: 44px 0 16px; color: var(--accent-2); }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-callout {
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  background: var(--surface);
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

    .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; width: 32px; height: 32px; flex-shrink: 0; }
  .nav-row .container { gap: 10px; }
  .nav nav { display: none; }
  .logo { font-size: 22px; }
  .nav-actions { gap: 0; }
  .nav-actions .btn { padding: 10px 16px; font-size: 12px; letter-spacing: 0.02em; }

    .topbar-row { display: none; }
  .hero { padding-top: var(--nav-h); }
  .legal-page { padding: calc(var(--nav-h) + 80px) 0 120px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .logo { font-size: 21px; }
  .nav-actions .btn { padding: 9px 14px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-content { padding-bottom: 64px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-item { aspect-ratio: 4/3; box-shadow: none; }
    .portfolio-item { aspect-ratio: auto; overflow: visible; box-shadow: none; }
  .portfolio-photo { position: static; display: block; width: 100%; height: auto; aspect-ratio: 4/3; }
  .portfolio-caption { opacity: 1; transform: translateY(0); position: static; background: none; padding: 14px 2px 0; }
  .portfolio-caption h4 { color: var(--warm-text); }
  .portfolio-caption span { color: var(--accent-dark); }
  .process-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
    .founder { grid-template-columns: 1fr; gap: 28px; margin-top: 56px; padding-top: 48px; }
  .founder-photo { aspect-ratio: 3/4; max-height: 70vh; }
  .founder-quote { max-width: none; font-size: 18px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }

  .lightbox { padding: 70px 16px 24px; }
  .lightbox-img { max-height: 60vh; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-nav { width: 42px; height: 42px; top: auto; bottom: 8px; transform: none; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 17px; }
}

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 250;
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.mobile-nav ul a { font-family: "Cormorant Garamond", serif; font-size: 30px; }
.mobile-nav-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.mobile-nav-social .topbar-text { font-size: 13px; }
.mobile-nav-social .topbar-social { gap: 18px; }
.mobile-nav-social .topbar-social a {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.mobile-nav-social .topbar-social svg { width: 19px; height: 19px; }
.mobile-nav-close {
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px; border: 1px solid var(--border);
  background: none; display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 18px; height: 18px; stroke: var(--text); }
