/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
  --bg-color: #ffffff;
  --text-main: #1a1a1a;
  --text-light: #555555;
  --text-muted: #777777;
  --border-light: #e6e6e6;
  --header-bg: #ffffff;
  --header-height: 90px;
  --font-main: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --section-spacing: 120px;
  --container-max: 1200px;
  --container-pad-min: 2.75rem;
  --container-pad-max: 4.5rem;
  --minerva-gold: #c1a36b;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-weight: 300;
  padding-top: var(--header-height); /* Space for the fixed header */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.page-shell {
  display: flex;
  flex-direction: column;
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img,
video {
  display: block;
  max-width: 100%;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(var(--container-pad-min), 4vw, var(--container-pad-max));
  z-index: 1000;
  border-bottom: 1px solid #eaeaea;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
}
.logo a {
  color: #111111 !important;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  height: 65px;
  width: auto;
  display: block;
}
.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.logo-wordmark {
  letter-spacing: 3px;
  padding-bottom: 2px;
}
.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888cc;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
  z-index: 1001;
}
.nav-links li {
  position: relative;
}
.nav-links .nav-cta .cta-btn {
  background: #000;
  color: #fff !important;
  border-color: #000;
  padding: 0.65rem 1.6rem;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  letter-spacing: 1.5px;
}
.nav-links .nav-cta .cta-btn:hover {
  background: #222;
  border-color: #222;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.nav-links a {
  color: #333333 !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #000000 !important;
}

/* Language Switcher */
.nav-lang-switcher {
  margin-left: 1rem;
}

.nav-lang-switcher select {
  background: transparent;
  border: 1px solid #eaeaea;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 0.7rem;
  padding-right: 2rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-lang-switcher select:hover {
  border-color: #000;
  color: #000;
}

.nav-lang-switcher select:focus {
  outline: none;
  border-color: #000;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  padding: 0.75rem 0;
  gap: 0;
}

.nav-dropdown li {
  padding: 0;
}
.nav-dropdown a {
  padding: 0.55rem 1rem;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: flex;
}

.has-dropdown.open .nav-dropdown {
  display: flex;
}
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid #000;
  padding: 0.55rem 0.85rem;
  border-radius: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1002;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
.nav-toggle:active {
  transform: translateY(0);
}

.nav-toggle-label {
  color: #000;
}

.nav-toggle-icon {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background: #000;
  border-radius: 0;
  transition: transform 0.25s ease;
}

.nav-toggle-icon::before {
  top: 3px;
  transform: rotate(0deg);
}
.nav-toggle-icon::after {
  top: 7px;
  transform: rotate(0deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-4px) rotate(-45deg);
}
/* =========================================
   2. BUTTONS
   ========================================= */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: transparent;
}

.cta-btn:hover {
  background-color: #ffffff;
  color: #000000 !important;
  border-color: #ffffff;
}

.cta-btn--dark {
  border-color: #000;
  color: #000 !important;
}

.cta-btn--dark:hover {
  background: #000;
  color: #fff !important;
}

.cta-btn--solid {
  background: #000;
  color: #fff !important;
  border-color: #000;
  padding: 10px;
}

.cta-btn--pill {
  border-radius: 0;
  padding: 0.9rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
}

.cta-btn--full {
  width: 100%;
}

/* =========================================
   3. LAYOUT & TYPOGRAPHY
   ========================================= */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(var(--container-pad-min), 5vw, var(--container-pad-max));
}
.container-narrow {
  max-width: 1100px;
}
.section-pad {
  padding: var(--section-spacing) 0;
}
.section-pad-small {
  padding: 70px 0;
}
.section-pad-tight {
  padding: 60px 0;
}
.section-muted {
  background: #fafafa;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.muted {
  color: var(--text-light);
}
.no-margin {
  margin-bottom: 0;
}
.link-underline {
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.mb-lg {
  margin-bottom: 2rem;
}
.spaced-block {
  margin-bottom: 2rem;
}
.section-rule {
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.info-box--spaced {
  margin-top: 2rem;
}
.text-gap {
  margin-top: 1.25rem;
}
.text-gap-sm {
  margin-top: 0.75rem;
}
.stacked-link {
  display: inline-block;
  margin-top: 2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
}

.subtitle {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #999;
}

.subtitle.faded {
  color: rgba(255, 255, 255, 0.7);
}

p.lead {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}
p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.page-intro {
  padding-top: 140px;
  padding-bottom: 3rem;
}

.section-divider {
  border-top: 1px solid #eee;
  padding-top: 3rem;
  margin-top: 3rem;
}

.location-tags {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.location-tags .subtitle {
  margin-bottom: 0;
  padding-right: 1rem;
  border-right: 1px solid #ccc;
}

.location-tags .subtitle:last-child {
  border-right: none;
  padding-right: 0;
}

/* =========================================
   4. IMAGE BANNERS & OVERLAYS
   ========================================= */
.banner-overlay {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  margin-bottom: 2rem;
  background: #000;
}

.banner-hero {
  height: calc(100vh - var(--header-height));
}
.banner-large {
  height: 633px;
}
.banner-medium {
  height: 500px;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.9;
}

.banner-bg.desaturated {
  filter: grayscale(100%);
  opacity: 0.85;
}

.banner-overlay:hover .banner-bg {
  transform: scale(1.03);
}

.banner-video {
  object-position: center center;
}

.overlay-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.overlay-scrim--dense {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem clamp(var(--container-pad-min), 6vw, var(--container-pad-max));
  z-index: 3;
}

.banner-content:not(.center) {
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: var(--container-max);
}

.banner-content.center {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  width: auto;
}

.banner-content.align-right {
  text-align: right;
  right: 0;
  left: auto;
}

.banner-content.align-right p {
  margin-left: auto;
}

.banner-content h1,
.banner-content h2 {
  color: #fff;
}
.banner-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}
.banner-content .subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   5. GRIDS, CARDS & HELPERS
   ========================================= */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.banner-meta {
  display: flex;
  gap: 2rem;
  opacity: 0.8;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
}

.project-card .img-wrapper {
  height: 500px;
  margin-bottom: 1.5rem;
}
.project-card .details {
  padding: 0 1rem;
}
.project-card h3 {
  color: #000;
  margin-bottom: 0.5rem;
}
.project-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  max-width: none;
}
.project-card .subtitle {
  color: #999;
  font-size: 0.7rem;
}
.project-card .banner-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}
.material-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  filter: grayscale(20%);
}
.material-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.info-box {
  background: #ffffff;
  border: none;
  padding: 2.8rem;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  counter-increment: info-counter;
}

/* Large background number */
.info-box::after {
  content: counter(info-counter);
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 180px;
  font-weight: 700;
  color: #f8f8f8;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.4s ease;
}

/* Subtle gradient accent on left edge */
.info-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #000000 0%, #444444 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-box:hover::before {
  opacity: 1;
}

.info-box:hover::before {
  opacity: 1;
}

/* Elevated hover state */
.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Large variant for standalone boxes */
.info-box--large {
  padding: 3.5rem;
  margin-bottom: 2rem;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-box--large:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.info-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  counter-reset: info-counter;
}

.info-list {
  list-style: none;
  padding-left: 0;
  color: #555;
  line-height: 1.8;
  font-size: 0.98rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.info-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
}

/* Custom bullet with smooth appearance */
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  opacity: 0.7;
}

/* Subtitle styling with enhanced spacing */
.info-box .subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 1.2rem;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 1;
}

.info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: #111111;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.info-box p {
  font-size: 1.02rem;
  color: #555555;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: none;
  position: relative;
  z-index: 1;
}

/* Time estimate styling */
.info-box .time-estimate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.info-box .time-estimate::before {
  content: "⏱";
  font-size: 1rem;
}

/* Only show numbered boxes in sections with the class .numbered-boxes */
.numbered-boxes .info-grid-2 {
  counter-reset: info-counter;
}

.numbered-boxes .info-box {
  counter-increment: info-counter;
}

/* Hide numbers and time estimates by default */
.info-box::after {
  display: none;
}

.info-box .time-estimate {
  display: none;
}

/* Show numbers and time estimates only in numbered sections */
.numbered-boxes .info-box::after {
  display: block;
}

.numbered-boxes .info-box .time-estimate {
  display: inline-flex;
}

.cabinetry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.cabinetry-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.cabinetry-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cabinetry-media {
  position: relative;
  overflow: hidden;
}
.cabinetry-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.cabinetry-card:hover .cabinetry-media img {
  transform: scale(1.04);
}
.cabinetry-body {
  padding: 1.6rem 1.5rem 1.8rem;
}
.cabinetry-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #111;
}
.cabinetry-body p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}
.sustain-grid {
  align-items: center;
  gap: 3rem;
}
.sustain-grid--reverse > .sustain-image {
  order: -1;
}
.sustain-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  background: #f6f6f6;
}
.sustain-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sustain-image:hover img {
  transform: scale(1.04);
}

.partner-form-header h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.partner-form-header p {
  max-width: 720px;
}
.partner-form-shell {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.partner-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem 0.9rem;
}
.partner-grid .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.partner-grid .span-2 {
  grid-column: 1 / -1;
}
.partner-grid textarea {
  min-height: 110px;
  resize: vertical;
}
.address-block {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.address-block h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.1rem;
}
.partner-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.partner-form-section {
  background: #000;
  color: #f6f6f6;
}
.partner-form label {
  font-size: 1rem;
  font-weight: 400;
}
.partner-form-section .partner-form-header h2 {
  color: #ffffff;
}
.partner-form-section .partner-form-header p {
  color: rgba(255, 255, 255, 0.82);
}
.partner-form-dark .partner-form-left,
.partner-form-dark .partner-form-right {
  background: transparent;
  border: none;
  box-shadow: none;
}
.partner-form-dark label {
  color: rgba(255, 255, 255, 0.85);
}
.partner-form-dark .boxed-input,
.partner-form-dark textarea,
.partner-form-dark select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.2rem 0 0.3rem;
  font-size: 1rem;
}
.partner-form-dark .boxed-input::placeholder,
.partner-form-dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.partner-form-dark .boxed-input:focus,
.partner-form-dark textarea:focus,
.partner-form-dark select:focus {
  border-color: #ffffff;
}
.partner-form-dark textarea {
  min-height: 80px;
}
.partner-form-dark .partner-form-right h3 {
  color: #ffffff;
}
.partner-form-dark .checkbox-container {
  color: #eaeaea;
}
.partner-form-dark .checkbox-container .checkmark {
  border-color: rgba(255, 255, 255, 0.5);
}
.partner-form-dark .checkbox-container input:checked ~ .checkmark {
  background: #fff;
}
.partner-form-dark .checkbox-container input:checked ~ .checkmark::after {
  border-color: #000;
}
.partner-form-footer {
  margin-top: 0.4rem;
  gap: 0.5rem;
}
.partner-form .input-group {
  margin-bottom: 0.25rem;
}
.partner-form .honeypot {
  display: none;
}
.partner-form-section .partner-form-header h2 {
  font-size: 2.3rem;
  letter-spacing: 0.05em;
}
.partner-form-section .partner-form-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.partner-form .cta-btn {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
  padding: 0.9rem 2.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}
.partner-form .cta-btn:hover {
  background: #eaeaea;
  color: #000 !important;
  border-color: #eaeaea;
}
.partner-submit {
  margin-left: auto;
}
.partner-form .checkbox-container {
  align-items: flex-start;
}
.partner-form .checkbox-container .checkmark {
  margin-top: 4px;
  border-radius: 3px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem 1.5rem;
}
.project-collection h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.75rem 0 0.25rem;
  color: #111;
}
.project-collection .muted {
  margin: 0;
  color: #666;
}
.project-collection .small-muted {
  margin: 0.35rem 0 0;
  color: #555;
  font-size: 0.95rem;
}
.contact-showroom {
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}
.contact-showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.contact-block .subtitle {
  color: #888;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.contact-block p {
  margin: 0.2rem 0;
  color: #222;
}
.contact-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-hero {
  position: relative;
  background: transparent;
  text-align: center;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/officine-logo.png") no-repeat right / 580px;
  opacity: 0.6;
  pointer-events: none;
}
.contact-hero h1,
.contact-hero p,
.contact-hero .subtitle {
  position: relative;
  z-index: 1;
}
.recaptcha-wrap {
  margin-left: auto;
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .contact-showroom-grid {
    grid-template-columns: 1fr;
  }
  .project-image img {
    min-height: 220px;
  }
}
.partner-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.partner-grid-cards .partner-body a {
  align-self: flex-start;
}
.partner-card {
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.partner-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.partner-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.partner-body h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #111;
}
.partner-body p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.outdoor-hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.project-row {
  padding: 20px 0;
}
.project-grid {
  gap: 1.25rem;
  align-items: center;
  padding: 0;
}
.project-grid .story-text {
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.project-image img {
  min-height: 480px;
  height: 100%;
  object-fit: cover;
}
.cabinetry-hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.brand-lede .brand-heading {
  font-size: 3.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.brand-lede .lead {
  font-size: 1.15rem;
  color: #444;
  max-width: 820px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}
.story-grid.story-grid--reverse {
  grid-template-columns: 1fr 1fr;
}
.story-grid.story-grid--reverse .story-image {
  grid-column: 2;
  grid-row: 1;
}
.story-grid.story-grid--reverse .story-text {
  grid-column: 1;
  grid-row: 1;
}
.story-text .story-overline {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.8rem;
}
.story-text h3 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.story-text p {
  font-size: 1.02rem;
  color: #444;
  line-height: 1.8;
}
.story-image {
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}
.story-image:hover img {
  transform: scale(1.05);
}

.faq-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.faq-item {
  border-top: 1px solid #eee;
  padding: 1.5rem 0;
}
.faq-item:last-child {
  border-bottom: 1px solid #eee;
}
.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.faq-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  max-width: none;
}

.map-wrapper {
  width: 100%;
}
.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(100%);
}
.map-caption {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
}

.visit-form-col .lead {
  font-size: 1rem;
  margin: 0 0 2.5rem;
  color: var(--text-light);
}

.visit-sidebar {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 3rem;
  height: fit-content;
}

.visit-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.sidebar-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.sidebar-list {
  list-style: disc;
  padding-left: 1.2rem;
}
.sidebar-list li {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  color: #ffffff;
  background: #000;
  display: block;
}
.resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}
.resource-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.8rem;
  z-index: 2;
}
.resource-content h4 {
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 0.02em;
}
.resource-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.resource-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* =========================================
   6. FORMS
   ========================================= */
.form-minimal label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}
.form-heading {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 1.5rem;
  color: #111;
}

.form-minimal .boxed-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  background: #fff;
  color: #000;
}

.form-minimal .boxed-input:focus {
  border-color: #000;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.input-group {
  flex: 1;
  min-width: 230px;
}
.input-group.full-width {
  width: 100%;
}
.full-width {
  width: 100%;
}
.inline-fields {
  display: flex;
  gap: 1rem;
}
.inline-select {
  width: 35%;
  min-width: 120px;
}
.grow {
  flex: 1;
}
.input-group.spaced {
  margin-bottom: 2rem;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #444;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #000;
  border-color: #000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.floating-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.privacy-text {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 1rem;
}

/* =========================================
   7. FOOTER
   ========================================= */
.site-footer {
  background: #0f0f0f;
  color: #f5f5f5;
  margin-top: var(--section-spacing);
  border-top: 1px solid #1c1c1c;
}

.footer-top {
  width: 100%;
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand-title {
  letter-spacing: 0.35em;
  font-weight: 300;
  font-size: 1rem;
  color: #ffffff;
}

.footer-brand-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #999;
}

.footer-intro {
  margin-top: 1rem;
  color: #c9c9c9;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-heading {
  font-weight: 300;
  margin-bottom: 0.9rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: #c9c9c9;
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-address {
  color: #c9c9c9;
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-contact {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact a {
  color: #c9c9c9;
  font-size: 0.95rem;
}
.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.footer-contact-list li {
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.footer-contact-list a {
  color: #c9c9c9;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-contact-link {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2d2d2d;
}
.footer-contact-link a {
  color: #c9c9c9;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}
.footer-contact-link a:hover {
  color: #ffffff;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2d2d2d, transparent);
  border: none;
}

/* =========================================
   10. RANGE PAGES
   ========================================= */
.range-section {
  padding: 3rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.range-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
}

.range-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #777;
}

.range-title {
  font-size: 2.6rem;
  font-weight: 300;
  margin: 0.6rem 0 0.9rem;
  letter-spacing: 0.05em;
}

.range-description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.range-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem 2rem;
  padding: 1.6rem 0 0.4rem;
  border-top: 1px solid #e6e6e6;
}

.range-features li {
  list-style: disc;
  margin-left: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.range-main {
  margin: 2.5rem 0;
}

.range-main img {
  width: 100%;
  object-fit: cover;
  border: 1px solid #e6e6e6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.range-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.range-gallery img {
  width: 100%;
  object-fit: cover;
  border: 1px solid #e6e6e6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================
   11. COLLECTIONS GRID
   ========================================= */
.collections-hero {
  padding: 4rem clamp(var(--container-pad-min), 5vw, var(--container-pad-max));
  text-align: left;
}

.collections-hero h1 {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 1.2rem;
}

.collections-hero p {
  max-width: 960px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 3rem 2.5rem;
  padding: 0 clamp(var(--container-pad-min), 5vw, var(--container-pad-max))
    4.5rem;
}

@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.collection-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.9rem;
}

.collection-card a {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 50%;
  border: none;
  box-shadow: none;
  transition: transform 0.5s ease;
}

.collection-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.collection-card a:hover img {
  transform: scale(1.06);
}

.collection-card a:hover::before {
  opacity: 1;
}

/* =========================================
   12. FINISHES PAGE
   ========================================= */
.filter-bar {
  position: sticky;
  top: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eaeaea;
  z-index: 950;
  padding: 1rem 0;
  margin-bottom: 3rem;
  backdrop-filter: blur(5px);
  transition: top 0.2s ease;
}

body.navbar-hidden .filter-bar {
  top: 0;
}

.filter-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.filter-nav li {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: #888;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.filter-nav li:hover,
.filter-nav li.active {
  color: #000;
  font-weight: 500;
}

.filter-nav li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

.finish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.finish-item {
  transition: opacity 0.4s ease;
}

.swatch-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f4f4f4;
}

.swatch-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.finish-item:hover .swatch-wrapper img {
  transform: scale(1.05);
}

.swatch-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #111;
}

.swatch-info span {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .filter-nav {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .finish-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .swatch-wrapper {
    height: 180px;
  }
}

/* =========================================
   13. DIRECT-TO-CONSUMER STRIP
   ========================================= */
.direct-section {
  position: relative;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 255, 255, 0.04),
      transparent 28%
    ),
    #0d0d0d;
  color: #ffffff;
  padding: var(--section-spacing) 0;
  overflow: hidden;
  margin-top: -32px;
}
.direct-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}
.direct-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.direct-heading {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.direct-section .lead {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.5rem;
  max-width: none;
}
.link-underline--spaced {
  display: inline-block;
  margin-top: 1.2rem;
}
.direct-section .subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.direct-pills {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.direct-pill {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.direct-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.direct-section .link-underline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.direct-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.direct-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.5rem;
}
.direct-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.75;
}

/* =========================================
   14. SIGNATURE PROCESS SECTION
   ========================================= */
.signature-section {
  background: #f7f7f7;
  padding: 4rem clamp(var(--container-pad-min), 5vw, var(--container-pad-max))
    var(--section-spacing);
  border-top: 1px solid #e6e6e6;
}

.signature-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.signature-header .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #666;
  display: block;
  margin-bottom: 0.75rem;
}

.signature-header h2 {
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 1rem;
  color: #111;
}

.signature-header p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.signature-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 280px;
}

.signature-badge {
  position: absolute;
  top: -20px;
  left: 1.75rem;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  background: #fff;
}

.signature-card h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #111;
}

.signature-card p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.65;
}

.signature-card .note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .signature-header h2 {
    font-size: 2.1rem;
  }
  .signature-header p {
    font-size: 1rem;
  }
}

.collection-card h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: #111;
  padding-top: 14px;
}

.footer-bottom {
  width: 100%;
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  color: #a0a0a0;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #a0a0a0;
}
.footer-bottom a:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* =========================================
   9. PHILOSOPHY PAGE ELEMENTS
   ========================================= */
.hero-immersive {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #f8f6f1;
  border-bottom: 1px solid #eaeaea;
}

.hero-immersive video,
.hero-immersive img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.8),
    #fff
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.hero-inner h1 {
  font-size: 2.75rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-inner p {
  max-width: 760px;
  color: #555;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.quote-card {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.75);
  padding: 2.5rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.03);
}

.quote-card p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.5rem;
  max-width: none;
}
.quote-card .byline {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #444;
}
.quote-card .byline-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.4rem;
  display: block;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  border: 1px solid #e2e2e2;
  border-radius: 0;
  background: #fff;
  padding: 1.75rem;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: #111;
  font-weight: 300;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666;
  margin-top: 0.75rem;
  display: block;
}
.stat-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.75rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem 2rem;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.1rem;
  border: 1px solid #eaeaea;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.timeline-badge {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  background: #fdfdfd;
  color: #222;
  margin-top: 4px;
  flex-shrink: 0;
}

.timeline-rail {
  display: none;
}

.timeline-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #111;
}
.timeline-step p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  max-width: none;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.palette-card {
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.palette-card span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
}

.palette-card h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0;
  color: #111;
}

.palette-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

.bullet-list {
  display: grid;
  gap: 1rem;
}

.bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  color: #666;
  font-size: 0.95rem;
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #111;
  margin-top: 4px;
}

.export-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.export-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.export-card {
  border: 1px solid #e6e6e6;
  border-radius: 0;
  padding: 1.25rem;
  background: #fff;
}

.export-card h3 {
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.export-card p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.media-frame {
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #000;
}

.media-frame video,
.media-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.note-small {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777;
  margin-top: 2em;
}
/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
  .visit-grid {
    gap: 4rem;
  }
}

@media (max-width: 1024px) {
  .banner-large {
    height: 600px;
  }
}

@media (max-width: 900px) {
  .faq-map-grid,
  .info-grid-2,
  .visit-grid,
  .story-grid,
  .direct-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-grid.story-grid--reverse .story-image {
    order: 0;
  }

  .info-box {
    padding: 2.2rem;
  }

  .info-box h3 {
    font-size: 1.35rem;
  }

  .brand-lede .brand-heading {
    font-size: 2.6rem;
  }
  .direct-heading {
    font-size: 2.4rem;
  }

  .story-grid,
  .story-grid.story-grid--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .story-grid.story-grid--reverse .story-image,
  .story-grid.story-grid--reverse .story-text {
    grid-column: auto;
    grid-row: auto;
  }
  .project-grid .story-text {
    padding: 0 1.25rem;
  }
  .story-image img {
    min-height: 240px;
  }

  .form-row {
    flex-direction: column;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    padding: 1.5rem clamp(1.5rem, 5vw, 2.5rem) 2rem;
    background: #fff;
    flex-direction: column;
    gap: 1.25rem;
    border-bottom: 1px solid #eaeaea;
    display: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    align-items: flex-start;
  }

  .nav-links.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links .cta-btn {
    width: 100%;
    justify-content: center;
  }
  .nav-links .nav-cta {
    width: 100%;
  }
  .nav-links .nav-cta .cta-btn {
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem;
    gap: 0.2rem;
  }
  .nav-dropdown a {
    padding: 0.45rem 0;
    font-size: 0.78rem;
  }
  .nav-dropdown a::before {
    content: "-- ";
    color: #000;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .split-grid,
  .export-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    align-items: flex-end;
    padding-bottom: 2rem;
  }
  .hero-inner h1 {
    letter-spacing: 0.18em;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.6rem;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .banner-hero h1 {
    font-size: 2rem;
  }
  .banner-large,
  .banner-medium {
    height: 450px;
  }
  .banner-content {
    padding: 2rem 1.6rem;
  }
  .site-footer {
    padding: 3rem 1.6rem;
  }
  .info-box {
    padding: 2rem;
  }

  .info-box h3 {
    font-size: 1.25rem;
  }

  .info-box p {
    font-size: 0.98rem;
  }
}

/* =========================================
   SUSTAINABILITY UPGRADE (ADD-ON)
   ========================================= */

.sustain-hero-tags {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.sustain-tag {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.sustain-lede {
  text-align: center;
  padding-top: 1.25rem;
}

.sustain-lede h2 {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 2.2rem;
}

.sustain-lede .lead {
  margin-top: 1rem;
  max-width: 880px;
}

.sustain-pillars {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.sustain-card {
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sustain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.06);
}

.sustain-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.sustain-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: #111;
}

.sustain-card p {
  margin: 0;
  max-width: none;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.sustain-section-rule {
  border-top: 1px solid #eee;
}

.sustain-image--rect {
  aspect-ratio: 4 / 3;
}

.sustain-standards {
  border: 1px solid #eaeaea;
  background: #fafafa;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.04);
  padding: 3rem;
}

.sustain-standards-inner p {
  max-width: 760px;
}

.sustain-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.2rem;
  margin-top: 2rem;
}

.sustain-badge {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 1.1rem 1.1rem;
}

.badge-mark {
  width: 56px;
  height: 56px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
}

.badge-text strong {
  display: block;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.15rem;
}

.badge-text span {
  display: block;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.45;
}

.sustain-cta {
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.04);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.sustain-cta p {
  margin-bottom: 0;
}

.sustain-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .sustain-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .sustain-badges {
    grid-template-columns: 1fr;
  }
  .sustain-cta {
    grid-template-columns: 1fr;
  }
  .sustain-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .sustain-pillars {
    grid-template-columns: 1fr;
  }
}
/* ===== Sustainability: centered pillars + premium SVG icons ===== */

.sustain-lede--center {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.sustain-lede--center .lead {
  max-width: 860px;
}

.sustain-pillars--center {
  max-width: 980px;
  margin: 2.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.sustain-card {
  text-align: left;
  padding: 1.8rem 1.6rem;
}

.sustain-icon {
  width: 46px;
  height: 46px;
  border: 1px solid #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #111;
  background: #fff;
}

.sustain-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* tighten heading feel */
.sustain-lede--center h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* make the section feel stronger */
.section-pad-tight {
  padding: 80px 0;
}

/* mobile */
@media (max-width: 768px) {
  .sustain-pillars--center {
    grid-template-columns: 1fr;
  }
  .sustain-card {
    padding: 1.6rem 1.4rem;
  }
}
/* =========================================
   SUSTAINABILITY — DENSER, BOLDER RHYTHM
   ========================================= */

/* Reduce global section padding only on sustainability page */
body.page-sustainability .section-pad {
  padding: 80px 0;
}

body.page-sustainability .section-pad-tight {
  padding: 56px 0;
}

/* Hero → content transition tighter */
body.page-sustainability header + section {
  margin-top: -12px;
}

/* Headings closer to content */
body.page-sustainability h2 {
  margin-bottom: 0.85rem;
}

body.page-sustainability .subtitle {
  margin-bottom: 0.9rem;
}

/* Paragraph rhythm tighter */
body.page-sustainability p {
  margin-bottom: 1.1rem;
}

body.page-sustainability .lead {
  margin-bottom: 1.6rem;
}
