:root {
  --bg: #f6f1e8;
  --bg-strong: #efe6d8;
  --surface: rgba(255, 250, 243, 0.88);
  --surface-strong: #fffaf2;
  --surface-dark: #16303a;
  --ink: #17262d;
  --ink-soft: #4d5b61;
  --line: rgba(23, 38, 45, 0.12);
  --line-strong: rgba(23, 38, 45, 0.22);
  --accent: #b97843;
  --accent-deep: #945627;
  --accent-soft: #ead8c4;
  --forest: #55654f;
  --gold: #c9a35a;
  --shadow: 0 28px 70px rgba(30, 25, 17, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 163, 90, 0.12), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(85, 101, 79, 0.15), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.has-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(23, 38, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 38, 45, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 88%);
  pointer-events: none;
  z-index: -2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

main {
  padding-bottom: 80px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.topbar-inner,
.nav-wrap,
.footer-grid {
  width: var(--container);
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 232, 0.78);
  border-bottom: 1px solid transparent;
  box-shadow: 0 8px 26px rgba(23, 38, 45, 0.04);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-badge {
  position: relative;
  width: 76px;
  height: 76px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, #474747 0%, #2b2b2b 42%, #161616 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(23, 38, 45, 0.22);
}

.brand-badge::before,
.brand-badge::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.brand-badge::before {
  inset: 5px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.brand-badge::after {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.brand-badge-core {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.brand-squares {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: -6px;
}

.brand-square {
  position: absolute;
  inset: 0;
  border: 3px solid #d1bb67;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(209, 187, 103, 0.14);
}

.brand-square-back {
  transform: rotate(-8deg) translate(4px, 2px);
  opacity: 0.92;
}

.brand-square-front {
  transform: rotate(6deg) translate(-2px, -1px);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
  font-family: "Manrope", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name-word {
  color: var(--ink);
}

.brand-accent {
  color: #c7ad58;
}

.brand-tag {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.nav-cta {
  border-radius: 999px;
  padding: 11px 16px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-link {
  color: var(--ink-soft);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.nav-cta {
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 38, 45, 0.16);
}

.nav-cta:hover,
.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.page-hero {
  padding: 42px 0 26px;
}

.hero-card,
.section-card,
.feature-card,
.product-card,
.project-card,
.faq-item,
.detail-card,
.form-card,
.metric-card,
.quote-card,
.cta-banner,
.story-card,
.tip-panel,
.newsletter-card,
.service-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(243, 235, 224, 0.94)),
    radial-gradient(circle at top right, rgba(201, 163, 90, 0.16), transparent 34%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 163, 90, 0.14), transparent 64%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero-title,
.section-title,
.cta-title,
.story-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.92;
  max-width: 12ch;
}

.hero-title.compact {
  max-width: 14ch;
}

.hero-lead,
.section-lead,
.story-copy,
.faq-body,
.metric-copy {
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero-lead {
  margin: 22px 0 0;
  font-size: 1.04rem;
  max-width: 62ch;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 38, 45, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-subpanel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-subcard {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 38, 45, 0.08);
  box-shadow: 0 14px 28px rgba(23, 38, 45, 0.06);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.button-secondary,
.chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button,
.button-secondary {
  padding: 14px 22px;
  font-weight: 700;
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: white;
  box-shadow: 0 18px 34px rgba(148, 86, 39, 0.22);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.mini-chip,
.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
}

.chip {
  padding: 10px 16px;
  font-weight: 700;
}

.mini-chip {
  padding: 7px 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chip.is-active,
.chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.stat-grid,
.metric-grid,
.detail-grid,
.card-grid,
.product-grid,
.project-grid,
.footer-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  margin-top: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.detail-card {
  padding: 20px;
}

.metric-label,
.detail-label {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-value,
.detail-value {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-main,
.visual-side {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 56px rgba(23, 38, 45, 0.2);
}

.visual-main {
  inset: 0 78px 82px 0;
}

.visual-side {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 62%;
  border: 8px solid rgba(255, 250, 243, 0.88);
}

.visual-main img,
.visual-side img,
.media-frame img,
.product-image img,
.project-image img,
.story-image img,
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  max-width: 230px;
  z-index: 2;
}

.floating-note strong {
  font-size: 1.04rem;
}

.floating-note span {
  color: inherit;
  opacity: 0.78;
  line-height: 1.5;
  font-size: 0.92rem;
}

.floating-note.warm {
  top: 28px;
  right: 12px;
  color: #fff;
  background: linear-gradient(155deg, rgba(185, 120, 67, 0.95), rgba(148, 86, 39, 0.95));
}

.floating-note.dark {
  left: 24px;
  bottom: 22px;
  color: #fff;
  background: rgba(22, 48, 58, 0.92);
}

.section {
  padding: 34px 0;
}

.section-header,
.section-copy {
  max-width: 760px;
}

.section-title,
.cta-title,
.story-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.section-lead {
  margin: 16px 0 0;
  font-size: 1rem;
}

.section-card {
  padding: 26px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.service-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -38px auto;
  width: 120px;
  height: 120px;
  border-radius: 34px;
  border: 1px solid rgba(23, 38, 45, 0.08);
  transform: rotate(16deg);
  pointer-events: none;
}

.feature-title,
.product-title,
.project-title,
.detail-title,
.service-title {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}

.feature-card,
.service-card,
.product-card,
.project-card,
.metric-card,
.detail-card,
.story-card,
.section-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover,
.project-card:hover,
.metric-card:hover,
.detail-card:hover,
.story-card:hover,
.section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 74px rgba(23, 38, 45, 0.14);
  border-color: rgba(23, 38, 45, 0.12);
}

.feature-copy,
.product-copy,
.project-copy,
.service-copy {
  color: var(--ink-soft);
  line-height: 1.7;
}

.split-layout,
.story-layout,
.contact-layout,
.cta-banner,
.newsletter-card {
  display: grid;
  gap: 24px;
}

.split-layout,
.contact-layout,
.newsletter-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-layout {
  display: grid;
  gap: 24px;
}

.story-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.media-frame,
.story-image,
.hero-photo {
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
}

.media-frame {
  min-height: 460px;
}

.media-frame.tall {
  min-height: 560px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.project-card {
  overflow: hidden;
  position: relative;
}

.product-image,
.project-image {
  aspect-ratio: 0.78;
  overflow: hidden;
}

.product-image {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  cursor: zoom-in;
}

.product-image img {
  transition: transform 240ms ease;
}

.product-card:hover .product-image img,
.product-image:focus-visible img {
  transform: scale(1.04);
}

.product-image:focus-visible {
  outline: 3px solid rgba(185, 120, 67, 0.32);
  outline-offset: -3px;
}

.product-zoom-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(22, 48, 58, 0.84);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 14px 24px rgba(23, 38, 45, 0.2);
}

.project-image.wide {
  aspect-ratio: 1.25;
}

.product-body,
.project-body {
  padding: 22px;
}

.product-actions,
.chip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-actions {
  margin-top: 18px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(201, 163, 90, 0.14);
  color: var(--accent-deep);
  font-weight: 800;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.project-card.featured .project-image {
  aspect-ratio: auto;
  min-height: 100%;
}

.project-card.featured .project-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card,
.tip-panel,
.story-card,
.form-card,
.newsletter-card {
  padding: 28px;
}

.quote-card {
  background: linear-gradient(180deg, rgba(22, 48, 58, 0.97), rgba(42, 64, 73, 0.96));
  color: #fff;
}

.quote-card p,
.quote-card li {
  color: rgba(255, 255, 255, 0.82);
}

.quote-card ul,
.tip-panel ol,
.faq-body ul,
.faq-body ol {
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 1.7;
}

.quote-card strong {
  color: #fff;
}

.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 8px;
  height: 14px;
  border-right: 3px solid rgba(255, 255, 255, 0.92);
  border-bottom: 3px solid rgba(255, 255, 255, 0.92);
  transform: rotate(38deg);
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-metrics {
  margin-top: 26px;
}

.experience-banner {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(241, 234, 223, 0.96)),
    radial-gradient(circle at top right, rgba(201, 163, 90, 0.16), transparent 34%);
}

.process-band {
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(19, 31, 38, 0.98), rgba(31, 49, 58, 0.96)),
    radial-gradient(circle at top right, rgba(201, 163, 90, 0.18), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 84px rgba(8, 12, 15, 0.24);
}

.process-band .eyebrow,
.process-band .section-title,
.process-band .section-lead {
  color: #fff;
}

.process-band .section-lead {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.8);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step .mini-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.process-step .service-title {
  color: #fff;
}

.process-step .service-copy {
  color: rgba(255, 255, 255, 0.78);
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-points,
.source-list,
.service-area-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.source-list span,
.service-area-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.cta-banner {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(130deg, rgba(22, 48, 58, 0.95), rgba(50, 79, 88, 0.95)),
    radial-gradient(circle at top right, rgba(201, 163, 90, 0.2), transparent 34%);
  color: #fff;
}

.cta-copy {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-banner .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.deal-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
}

.deal-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 800;
}

.deal-price {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-heading {
  margin-bottom: 20px;
}

.faq-showcase {
  padding: 28px 30px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e9f0ef 0%, #e4eceb 100%);
  border: 1px solid rgba(23, 38, 45, 0.08);
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.faq-item {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 250, 243, 0.92);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(23, 38, 45, 0.05);
}

.faq-item.is-open .faq-toggle {
  background: #4a4949;
  color: #fff;
}

.faq-toggle span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.08;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.faq-icon::before {
  content: ">";
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  color: currentColor;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon::before {
  transform: rotate(90deg);
}

.faq-body {
  display: none;
  padding: 26px 20px 8px;
  color: #223136;
  line-height: 1.8;
  background: transparent;
  font-size: 1.02rem;
}

.faq-item.is-open .faq-body {
  display: block;
}

.faq-body p {
  margin: 0 0 20px;
}

.faq-body h4 {
  margin: 28px 0 14px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
}

.faq-body ol,
.faq-body ul {
  margin: 0 0 18px 24px;
  padding: 0;
}

.faq-body li {
  margin-bottom: 10px;
}

.faq-checklist {
  list-style: none;
  margin-left: 0 !important;
}

.faq-checklist li {
  position: relative;
  padding-left: 24px;
}

.faq-checklist li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #273931;
  border-bottom: 3px solid #273931;
  transform: rotate(38deg);
}

.form-card form,
.newsletter-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  font-size: 0.94rem;
}

.field input,
.field textarea {
  border: 1px solid rgba(23, 38, 45, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(185, 120, 67, 0.18);
  border-color: rgba(185, 120, 67, 0.35);
}

.form-feedback {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(185, 120, 67, 0.08);
  border: 1px solid rgba(185, 120, 67, 0.16);
}

.form-helper-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-note,
.newsletter-note,
.muted {
  color: var(--ink-soft);
  line-height: 1.7;
}

.status-text {
  min-height: 1.4em;
  font-size: 0.94rem;
  color: var(--accent-deep);
}

.status-text.is-error {
  color: #a44436;
}

.status-text.is-success {
  color: #375547;
}

.map-card {
  padding: 28px;
}

.map-frame {
  margin-top: 20px;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.55);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.zoom-modal[hidden] {
  display: none;
}

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.zoom-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 25, 0.72);
  backdrop-filter: blur(12px);
}

.zoom-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(246, 239, 227, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.zoom-close,
.zoom-control {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.zoom-close:hover,
.zoom-control:hover {
  transform: translateY(-1px);
  border-color: rgba(185, 120, 67, 0.4);
}

.zoom-close {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.zoom-toolbar,
.zoom-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.zoom-toolbar .section-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.zoom-toolbar .muted,
.zoom-footer .muted {
  margin: 10px 0 0;
  max-width: 54ch;
}

.zoom-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.zoom-control {
  min-width: 52px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 800;
}

.zoom-percent {
  min-width: 88px;
  font-size: 1rem;
}

.zoom-stage {
  min-height: clamp(420px, 70vh, 760px);
  overflow: hidden;
  padding: 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(201, 163, 90, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(231, 237, 236, 0.96), rgba(214, 223, 221, 0.96));
  border: 1px solid rgba(23, 38, 45, 0.08);
  touch-action: none;
}

.zoom-stage.is-draggable {
  cursor: crosshair;
}

.zoom-stage.is-dragging {
  cursor: grabbing;
}

.zoom-stage-inner {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 64vh, 700px);
}

.zoom-stage img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  border-radius: 28px;
  box-shadow: 0 26px 56px rgba(23, 38, 45, 0.22);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.site-footer {
  margin-top: 28px;
  padding: 42px 0 46px;
  background:
    linear-gradient(180deg, rgba(20, 31, 37, 0.99), rgba(13, 20, 24, 1)),
    radial-gradient(circle at top right, rgba(201, 163, 90, 0.14), transparent 34%);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 38ch;
}

.footer-links a,
.footer-meta a,
.footer-meta span {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover,
.footer-meta a:hover {
  color: #d6bb73;
}

.footer-bottom {
  width: var(--container);
  margin: 26px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.catalog-toolbar {
  margin-bottom: 24px;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-copy {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.empty-state {
  display: grid;
  gap: 14px;
}

.footer-credit a {
  color: #d6bb73;
  font-weight: 700;
}

.product-shell {
  display: grid;
  gap: 24px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
  align-items: start;
}

.product-panel,
.product-viewer,
.product-section {
  padding: 28px;
}

.product-viewer {
  display: grid;
  gap: 20px;
  overflow: hidden;
}

.viewer-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.viewer-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.viewer-stage {
  position: relative;
  min-height: clamp(420px, 62vh, 760px);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(23, 38, 45, 0.08);
  background:
    radial-gradient(circle at top left, rgba(201, 163, 90, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(231, 237, 236, 0.96), rgba(214, 223, 221, 0.96));
  touch-action: none;
}

.viewer-stage.is-draggable {
  cursor: crosshair;
}

.viewer-stage.is-dragging {
  cursor: grabbing;
}

.viewer-stage img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  border-radius: 28px;
  box-shadow: 0 26px 56px rgba(23, 38, 45, 0.22);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.viewer-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(85, 101, 79, 0.14);
  color: #365143;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-chip-row {
  margin-top: 18px;
}

.product-summary,
.product-support {
  color: var(--ink-soft);
  line-height: 1.78;
}

.product-summary {
  margin: 18px 0 0;
  font-size: 1.03rem;
}

.product-support {
  margin: 18px 0 0;
}

.product-quick-specs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-pill-row {
  margin-top: 14px;
}

.product-briefs {
  margin-top: 18px;
}

.product-section-wide {
  grid-column: 1 / -1;
}

.product-panel .section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.product-section .section-title,
.product-viewer .section-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.spec-table {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 38%;
  color: var(--ink);
  font-size: 0.94rem;
}

.spec-table td {
  color: var(--ink-soft);
}

.product-tip-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.product-tip-list li {
  margin-bottom: 10px;
}

.guide-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-step {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.guide-step h4 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-step ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.related-grid {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .card-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.featured {
    grid-column: span 2;
  }

  .metric-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-card,
  .split-layout,
  .story-layout,
  .contact-layout,
  .newsletter-card,
  .process-grid,
  .product-hero-grid,
  .product-section-grid,
  .guide-grid,
  .project-card.featured,
  .cta-banner,
  .deal-banner,
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 30px 24px;
  }

  .hero-subpanel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .detail-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .zoom-toolbar,
  .zoom-footer {
    flex-direction: column;
  }

  .zoom-controls {
    width: 100%;
  }

  .process-band {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .container,
  .topbar-inner,
  .nav-wrap,
  .footer-grid,
  .footer-bottom {
    width: min(100vw - 24px, 1180px);
  }

  .page-hero {
    padding-top: 28px;
  }

  .hero-card,
  .section-card,
  .quote-card,
  .tip-panel,
  .story-card,
  .form-card,
  .newsletter-card,
  .product-panel,
  .product-viewer,
  .product-section,
  .cta-banner,
  .deal-banner,
  .zoom-dialog {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-pill-row {
    gap: 8px;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand {
    gap: 10px;
  }

  .brand-badge {
    width: 62px;
    height: 62px;
  }

  .brand-squares {
    width: 24px;
    height: 24px;
  }

  .brand-square {
    border-width: 2px;
  }

  .brand-name {
    font-size: 1.45rem;
    letter-spacing: 0.14em;
  }

  .brand-tag {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
  }

  .card-grid,
  .product-grid,
  .project-grid,
  .process-grid,
  .metric-grid,
  .stat-grid,
  .product-quick-specs,
  .guide-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-column: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-main {
    inset: 0 44px 76px 0;
  }

  .visual-side {
    width: 48%;
    height: 50%;
  }

  .floating-note {
    max-width: 180px;
    padding: 14px 16px;
  }

  .footer-bottom {
    display: grid;
  }

  .zoom-modal {
    padding: 12px;
  }

  .zoom-close,
  .zoom-control {
    min-height: 46px;
  }

  .zoom-stage {
    min-height: 340px;
    padding: 18px;
  }

  .viewer-stage {
    min-height: 320px;
  }

  .product-zoom-badge {
    right: 12px;
    bottom: 12px;
  }
}
