:root {
  --bg: #f4efe6;
  --bg-soft: #ede5d8;
  --panel: rgba(255, 252, 247, 0.88);
  --panel-solid: #fffdf9;
  --text: #211c18;
  --muted: #6a6259;
  --line: rgba(68, 50, 29, 0.12);
  --line-strong: rgba(68, 50, 29, 0.22);
  --accent: #b9893d;
  --accent-dark: #8f6423;
  --ink: #161210;
  --shadow: 0 18px 45px rgba(44, 30, 13, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 137, 61, 0.14), transparent 32%),
    radial-gradient(circle at right 15%, rgba(70, 53, 28, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, #f3ede3 42%, #f5f0e8 100%);
  overflow-x: clip;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(76px, 9vw, 116px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-dark {
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #c49446 0%, #ae7e34 100%);
  box-shadow: 0 14px 28px rgba(185, 137, 61, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.48);
  border-color: var(--line-strong);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(68, 50, 29, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(31, 23, 17, 0.08);
  background: rgba(247, 242, 234, 0.92);
}

.topbar {
  border-bottom: 1px solid rgba(68, 50, 29, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.82rem;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
  color: var(--text);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
}

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

.brand-mark {
  width: auto;
  height: 58px;
  flex-shrink: 0;
}

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

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle strong {
  font-size: 0.88rem;
  white-space: nowrap;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(68, 50, 29, 0.2);
  box-shadow: 0 10px 22px rgba(31, 23, 17, 0.08);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(42px, 7vw, 86px) 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  align-items: start;
}

.hero-copy h1,
.section-heading h2,
.contact-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 7vw, 6rem);
}

.lead {
  max-width: 58ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  color: var(--muted);
}

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

.metric-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.7);
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.hero-image-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.75fr);
  gap: 18px;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.hero-main {
  min-height: 620px;
}

.hero-side .shot-card {
  min-height: 300px;
}

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-card figcaption {
  padding: 15px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 253, 249, 0.98));
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-panel,
.about-card,
.step-card,
.collection-card,
.trust-item,
.contact-card.secondary {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.78);
}

.hero-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-note-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hero-note-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.trust-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.product-shell {
  background:
    radial-gradient(circle at top left, rgba(185, 137, 61, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.8) 0%, rgba(245, 237, 226, 0.72) 100%);
}

.catalog-note {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  margin-bottom: 28px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.catalog-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.catalog-note h3,
.catalog-panel h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.18;
}

.catalog-points,
.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.catalog-points span,
.catalog-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.collection-card {
  overflow: hidden;
  border: 1px solid rgba(68, 50, 29, 0.08);
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
  box-shadow: 0 18px 38px rgba(44, 30, 13, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-2px);
  border-color: rgba(68, 50, 29, 0.14);
  box-shadow: 0 24px 44px rgba(44, 30, 13, 0.11);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

.collection-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.card-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.collection-body h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.2;
}

.collection-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.74;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.catalog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--shadow);
}

.catalog-panel-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.projects-shell {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(185, 137, 61, 0.18), transparent 28%),
    linear-gradient(180deg, #1b1512 0%, #261d18 100%);
  color: #fff;
}

.projects-shell .section-heading p:last-child,
.project-body p {
  color: rgba(255, 255, 255, 0.74);
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.project-body {
  padding: 22px;
}

.project-kicker {
  margin: 0 0 10px;
  color: rgba(217, 181, 116, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: 10px;
  font-size: 1.48rem;
}

.project-body p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.project-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.project-roster {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.project-roster-label {
  margin: 0 0 12px;
  color: rgba(217, 181, 116, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.project-roster-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-roster-list span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  margin-bottom: 28px;
  align-items: start;
}

.about-stack {
  display: grid;
  gap: 22px;
}

.about-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.7);
}

.about-card-primary {
  border: 1px solid rgba(68, 50, 29, 0.08);
  box-shadow: 0 18px 38px rgba(44, 30, 13, 0.08);
}

.about-card-secondary {
  border: 1px solid rgba(68, 50, 29, 0.08);
  background:
    radial-gradient(circle at top right, rgba(185, 137, 61, 0.14), transparent 28%),
    rgba(255, 251, 245, 0.92);
  box-shadow: 0 18px 38px rgba(44, 30, 13, 0.08);
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.about-card p {
  color: var(--muted);
  line-height: 1.8;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.about-list div {
  padding: 16px 18px;
  border: 1px solid rgba(68, 50, 29, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.about-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.about-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.about-sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.about-sectors div {
  padding: 16px 18px;
  border: 1px solid rgba(68, 50, 29, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.about-sectors strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.about-sectors span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

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

.step-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.84);
}

.step-number {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.step-card p {
  color: var(--muted);
  line-height: 1.78;
}

.contact-shell {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 22px;
}

.contact-card {
  padding: 32px;
  border-radius: 32px;
}

.contact-card.primary {
  background:
    radial-gradient(circle at top right, rgba(196, 148, 70, 0.24), transparent 28%),
    linear-gradient(145deg, #1a1411 0%, #2c221c 100%);
  color: #fff;
  box-shadow: 0 24px 48px rgba(26, 20, 17, 0.22);
}

.contact-card.primary p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card.primary h2 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-highlights div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.contact-highlights span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.68;
}

.contact-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.contact-flow article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-flow span {
  display: block;
  margin-bottom: 8px;
  color: rgba(217, 181, 116, 0.94);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-flow strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.68;
}

.contact-card.secondary {
  background: rgba(255, 253, 249, 0.92);
}

.form-card {
  display: grid;
  gap: 18px;
}

.form-card h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.16;
}

.form-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.quote-form {
  display: grid;
  gap: 16px;
}

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

.field,
.field-group {
  display: grid;
  border: 0;
  gap: 10px;
  margin: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field span,
.field-group legend {
  padding: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(68, 50, 29, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(106, 98, 89, 0.86);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(185, 137, 61, 0.58);
  box-shadow: 0 0 0 4px rgba(185, 137, 61, 0.12);
  background: #fff;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-pill {
  position: relative;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(68, 50, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.choice-pill:hover span {
  transform: translateY(-1px);
}

.choice-pill input:checked + span {
  border-color: transparent;
  background: linear-gradient(135deg, #c49446 0%, #ae7e34 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 137, 61, 0.18);
}

.choice-pill input:focus-visible + span {
  outline: 2px solid rgba(185, 137, 61, 0.45);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .btn {
  min-width: 210px;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-note {
  color: var(--muted);
}

.form-status {
  min-height: 1.7em;
  color: var(--muted);
}

.form-status.is-success {
  color: #246144;
}

.form-status.is-error {
  color: #9b4c2d;
}

.quote-support {
  display: grid;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.contact-list.compact {
  gap: 14px;
}

.contact-list.compact .contact-item {
  padding-bottom: 14px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.service-focus {
  margin-top: 28px;
}

.service-focus h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-locations span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 28px 0 54px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: 540px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-meta p {
  color: var(--muted);
  line-height: 1.74;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.footer-meta a {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .about-shell,
  .contact-grid,
  .catalog-note,
  .hero-image-stack {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: 420px;
  }

  .collection-grid,
  .project-grid,
  .trust-grid,
  .process-grid,
  .hero-note-grid,
  .contact-highlights,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 15px 0;
  }

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

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-actions {
    display: none;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    height: 48px;
  }

  .brand-copy {
    display: flex;
  }

  .brand-copy small {
    display: none;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.35rem);
  }

  .hero-metrics,
  .about-list,
  .about-sectors,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .form-grid,
  .contact-flow {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .topbar-inner {
    justify-content: flex-end;
    min-height: 40px;
  }

  .topbar-inner p {
    display: none;
  }

  .nav-wrap {
    gap: 10px;
    padding: 13px 0;
  }

  .menu-toggle {
    gap: 5px;
    min-width: 48px;
    padding: 10px;
    justify-content: center;
  }

  .menu-toggle strong {
    display: none;
  }

  .brand-mark {
    height: 42px;
  }

  .brand-name {
    font-size: 1.42rem;
  }

  .hero {
    padding-top: 30px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.73rem;
    letter-spacing: 0.18em;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 10.8vw, 3.75rem);
  }

  .lead {
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .topbar-inner,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-points li {
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  .hero-metrics,
  .collection-grid,
  .project-grid,
  .trust-grid,
  .process-grid,
  .hero-note-grid,
  .contact-grid,
  .contact-highlights,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .about-card,
  .step-card,
  .card-panel,
  .metric-card,
  .catalog-note,
  .catalog-panel {
    padding: 24px;
  }

  .hero-main,
  .hero-side .shot-card {
    min-height: 280px;
  }

  .metric-card strong,
  .collection-body h3,
  .project-body h3,
  .about-card h3,
  .step-card h3,
  .service-focus h3,
  .form-card h3 {
    font-size: 1.28rem;
  }

  .form-actions .btn {
    min-width: 0;
  }

  .btn {
    width: 100%;
  }
}
