:root {
  --bg: #edf1ea;
  --bg-strong: #e5ebe1;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.86);
  --surface-dark: rgba(17, 19, 24, 0.88);
  --text: #16171c;
  --muted: #5e606a;
  --line: rgba(22, 23, 28, 0.08);
  --line-strong: rgba(22, 23, 28, 0.16);
  --lime: #8fcd79;
  --lime-deep: #5f9f58;
  --violet: #4f8567;
  --violet-deep: #28523d;
  --stone: #9ea69a;
  --graphite: #18231b;
  --white: #ffffff;
  --shadow-soft: 0 30px 80px rgba(23, 25, 30, 0.12);
  --shadow-strong: 0 24px 60px rgba(16, 18, 24, 0.18);
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 10px;
  --radius-card: 12px;
  --radius-panel: 14px;
  --radius-shell: 16px;
  --container: min(1560px, calc(100vw - clamp(24px, 4vw, 80px)));
  --header-offset: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 205, 121, 0.18), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(79, 133, 103, 0.14), transparent 28%),
    linear-gradient(180deg, #f4f7f1 0%, #e9eee6 40%, #edf1ea 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  background: var(--graphite);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0 0;
  transition: padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.header-shell {
  width: var(--container);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(253, 255, 252, 0.94), rgba(238, 243, 236, 0.84));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-shell);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 16px 48px rgba(24, 26, 31, 0.08);
  position: relative;
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 14px 38px rgba(24, 26, 31, 0.12);
}

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

.brand img {
  width: 136px;
  height: auto;
}

.brand-copy {
  display: none;
}

.brand-signal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(143, 205, 121, 0.14), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(40, 82, 61, 0.14);
  box-shadow: 0 10px 24px rgba(24, 35, 27, 0.06);
  flex: 0 0 auto;
}

.brand-signal img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-signal strong,
.hero-signal strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-signal span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--muted);
}

.main-nav {
  flex: 1;
  position: relative;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: rgba(22, 23, 28, 0.06);
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.nav-toggle span {
  top: 25px;
}

.nav-toggle::before {
  top: 18px;
}

.nav-toggle::after {
  top: 32px;
}

.main-nav.is-open .nav-toggle span {
  opacity: 0;
}

.main-nav.is-open .nav-toggle::before {
  top: 25px;
  transform: rotate(45deg);
}

.main-nav.is-open .nav-toggle::after {
  top: 25px;
  transform: rotate(-45deg);
}

.nav-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.menu-spotlight {
  position: absolute;
  inset: 4px auto 4px 0;
  width: 0;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(135deg, rgba(143, 205, 121, 0.22), rgba(79, 133, 103, 0.16));
  box-shadow: inset 0 0 0 1px rgba(22, 23, 28, 0.06);
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 180ms ease,
    width 240ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-button {
  position: relative;
  z-index: 1;
  height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.97rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-button::after {
  content: "+";
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-item:hover > .nav-link,
.nav-item:hover > .nav-button,
.nav-item:focus-within > .nav-link,
.nav-item:focus-within > .nav-button,
.nav-item.is-current > .nav-link,
.nav-item.is-current > .nav-button,
.nav-item.is-open > .nav-button {
  color: var(--text);
}

.nav-item.is-open > .nav-button::after,
.nav-item:hover > .nav-button::after,
.nav-item:focus-within > .nav-button::after {
  transform: rotate(45deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(980px, calc(100vw - 48px));
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dropdown-panel::before {
  content: "";
  position: absolute;
  inset: 18px 16% auto;
  height: 80px;
  background: radial-gradient(circle, rgba(143, 205, 121, 0.24), transparent 70%);
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-layout {
  border-radius: var(--radius-panel);
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(17, 19, 24, 0.96), rgba(34, 36, 43, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 18px;
}

.dropdown-intro {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 22px;
  min-height: 100%;
}

.dropdown-intro p:last-child {
  margin-bottom: 0;
}

.dropdown-intro strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.dropdown-card {
  border-radius: var(--radius-card);
  padding: 18px;
  min-height: 162px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transform: translateY(10px);
  opacity: 0;
  animation: dropdownCardIn 360ms forwards;
}

.dropdown-card:nth-child(2) {
  animation-delay: 45ms;
}

.dropdown-card:nth-child(3) {
  animation-delay: 90ms;
}

.dropdown-card:hover,
.dropdown-card:focus-visible,
.dropdown-card.is-current {
  background:
    linear-gradient(180deg, rgba(143, 205, 121, 0.14), rgba(255, 255, 255, 0.08));
  border-color: rgba(143, 205, 121, 0.34);
}

.dropdown-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}

.dropdown-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

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

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background:
    linear-gradient(90deg, var(--lime), rgba(79, 133, 103, 0.34));
}

.eyebrow.is-light {
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow.is-light::before {
  background: linear-gradient(90deg, var(--lime), rgba(255, 255, 255, 0.2));
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 15px 24px;
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--lime), #b7dfa1);
  color: var(--graphite);
  box-shadow: 0 16px 32px rgba(143, 205, 121, 0.24);
}

.button-secondary {
  background: rgba(40, 82, 61, 0.06);
  color: var(--text);
  border: 1px solid rgba(40, 82, 61, 0.1);
}

.button-dark {
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(79, 133, 103, 0.24);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.page-main {
  overflow: clip;
}

.hero,
.page-hero {
  width: var(--container);
  margin: 28px auto 0;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

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

.hero-copy {
  padding: 76px 0 54px;
}

.hero h1,
.page-hero h1,
.section-head h2,
.footer-cta h2 {
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  max-width: 11ch;
}

.hero p,
.page-hero p,
.section-head p,
.feature-card p,
.split-card p,
.process-step p,
.story-card p,
.project-card p,
.footer-card p,
.footer-nav a,
.footer-contact a,
.footer-note,
.footer-copy p,
.material-card p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-intro {
  max-width: 62ch;
  font-size: 1.1rem;
  margin: 24px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stat-row {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-row li {
  padding: 18px 20px;
  border-radius: var(--radius-shell);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(22, 23, 28, 0.06);
  box-shadow: 0 18px 30px rgba(20, 21, 26, 0.05);
}

.stat-row strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.hero-visual,
.page-hero-shell {
  border-radius: var(--radius-shell);
  background:
    linear-gradient(160deg, rgba(12, 18, 15, 0.98), rgba(31, 45, 38, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero-visual {
  min-height: 720px;
  padding: 30px;
  display: grid;
  align-content: space-between;
}

.hero-visual::before,
.page-hero-shell::before,
.project-card::before,
.feature-card::before,
.split-card::before,
.story-card::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(143, 205, 121, 0.22), transparent 32%),
    radial-gradient(circle at left center, rgba(79, 133, 103, 0.2), transparent 28%);
  pointer-events: none;
}

.hero-signal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-signal img {
  width: 72px;
  height: auto;
}

.hero-signal p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  color: var(--white);
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-panel p,
.hero-note p,
.page-hero-shell p,
.page-hero-shell li {
  color: rgba(255, 255, 255, 0.72);
}

.hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  margin: 34px 0;
  align-items: end;
}

.hero-gallery-main,
.hero-gallery-accent,
.image-showcase-main,
.image-showcase-stack figure,
.split-card-image {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 44px rgba(8, 10, 14, 0.28);
}

.hero-gallery-main,
.hero-gallery-accent {
  border-radius: var(--radius-card);
}

.hero-gallery-main {
  min-height: 370px;
}

.hero-gallery-accent {
  min-height: 244px;
  transform: translateY(48px);
}

.hero-gallery-main img,
.hero-gallery-accent img,
.image-showcase-main img,
.image-showcase-stack img,
.split-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gallery-main::after,
.image-showcase-main::after,
.image-showcase-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.06), rgba(8, 10, 14, 0.66));
}

.hero-gallery-badge,
.image-showcase figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(17, 19, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-gallery-badge strong,
.image-showcase strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.15rem;
}

.hero-gallery-badge span,
.image-showcase figcaption span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-note {
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-note strong,
.feature-card strong,
.split-card strong,
.story-card strong,
.process-step strong,
.project-card strong,
.material-card strong,
.footer-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-note strong {
  color: var(--white);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 58px 0;
}

.section.section-surface {
  --surface-position: center;
  margin: 24px auto 0;
  padding: 42px 34px;
  border-radius: var(--radius-shell);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(246, 249, 243, 0.92), rgba(233, 239, 229, 0.84)),
    var(--surface-image) var(--surface-position) / cover no-repeat,
    linear-gradient(180deg, #f4f7f1 0%, #e7eee3 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.section.section-surface::before,
.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(143, 205, 121, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(79, 133, 103, 0.12), transparent 28%);
  pointer-events: none;
}

.section.section-surface > *,
.footer-shell > * {
  position: relative;
  z-index: 1;
}

.section-tight {
  padding-top: 26px;
}

.section.section-surface.section-tight {
  padding-top: 34px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 14px;
}

.cards-grid,
.story-grid,
.project-grid,
.material-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.split-card,
.story-card,
.project-card,
.material-card,
.footer-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(22, 23, 28, 0.07);
  box-shadow: var(--shadow-soft);
}

.feature-card::after,
.split-card::after,
.story-card::after,
.project-card::after,
.material-card::after,
.footer-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(143, 205, 121, 0.18), rgba(79, 133, 103, 0.12));
  transform: rotate(22deg);
  opacity: 0.7;
}

.feature-card > *,
.split-card > *,
.story-card > *,
.project-card > *,
.material-card > *,
.footer-card > * {
  position: relative;
  z-index: 1;
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(143, 205, 121, 0.22), rgba(79, 133, 103, 0.18));
  border: 1px solid rgba(22, 23, 28, 0.08);
  font-weight: 800;
}

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

.split-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.split-card-media {
  padding: 18px;
  gap: 18px;
}

.split-card-body {
  display: grid;
  gap: 10px;
}

.split-card-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background: rgba(17, 19, 24, 0.12);
}

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

.image-showcase-main,
.image-showcase-stack figure {
  border-radius: var(--radius-card);
}

.image-showcase-main {
  min-height: 520px;
}

.image-showcase-stack {
  display: grid;
  gap: 18px;
}

.image-showcase-stack figure {
  min-height: 250px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-top: 22px;
}

.inline-link::after {
  content: "+";
  transition: transform 180ms ease;
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: rotate(45deg);
}

.brand-bridge {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.brand-bridge-card,
.brand-link-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(22, 23, 28, 0.07);
  box-shadow: var(--shadow-soft);
}

.brand-bridge-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
}

.brand-bridge-card::after,
.brand-link-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(143, 205, 121, 0.18), rgba(79, 133, 103, 0.12));
  transform: rotate(22deg);
  opacity: 0.7;
}

.brand-bridge-card > *,
.brand-link-card > * {
  position: relative;
  z-index: 1;
}

.brand-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(143, 205, 121, 0.14);
  border: 1px solid rgba(40, 82, 61, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-bridge-logo {
  width: min(100%, 260px);
  padding: 18px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 23, 28, 0.08);
  box-shadow: 0 16px 32px rgba(24, 26, 31, 0.08);
}

.brand-bridge-copy {
  display: grid;
  gap: 14px;
}

.brand-bridge-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.18;
}

.brand-bridge-copy p,
.brand-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.brand-bridge-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.brand-link-card strong {
  display: block;
  font-size: 1.1rem;
}

.brand-link-card .inline-link {
  margin-top: auto;
}

.brand-link-card:hover,
.brand-link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(16, 18, 24, 0.14);
  border-color: rgba(40, 82, 61, 0.16);
}

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

.process-step {
  padding: 24px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(22, 23, 28, 0.07);
  position: relative;
  overflow: hidden;
}

.process-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--graphite);
  color: var(--white);
  font-weight: 800;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  background: rgba(22, 23, 28, 0.06);
  border: 1px solid rgba(22, 23, 28, 0.08);
}

.chip.is-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.page-hero-shell {
  padding: 38px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body[data-page="why-choose-us"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(11, 14, 18, 0.76), rgba(32, 35, 43, 0.82)),
    url("../../images/Porcelain-sintered-stone.png") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

body[data-page="our-work"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(11, 14, 18, 0.76), rgba(32, 35, 43, 0.82)),
    url("../../images/porcelain.jpeg") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

body[data-page="commercial"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(11, 14, 18, 0.78), rgba(30, 32, 39, 0.84)),
    url("../../images/porcelain-mykitchen-worktop-uk.jpeg") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

body[data-page="residential"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(11, 14, 18, 0.72), rgba(30, 32, 39, 0.8)),
    url("../../images/porcelain%20(1).jpeg") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: var(--white);
  margin-bottom: 18px;
}

.page-hero-copy {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
}

.page-hero-list {
  list-style: none;
  margin: 0;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-list li + li {
  margin-top: 12px;
}

.project-card {
  min-height: 280px;
}

.project-card .chip-row,
.story-card .chip-row,
.footer-card .chip-row {
  margin-top: 16px;
}

.material-card {
  min-height: 220px;
}

.cta-band {
  width: var(--container);
  margin: 34px auto 0;
  padding: 36px;
  border-radius: var(--radius-shell);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(17, 19, 24, 0.98), rgba(36, 38, 44, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.cta-band.cta-band-photo {
  background:
    linear-gradient(160deg, rgba(9, 12, 16, 0.76), rgba(30, 33, 40, 0.84)),
    var(--surface-image) var(--surface-position, center) / cover no-repeat,
    linear-gradient(160deg, rgba(17, 19, 24, 0.98), rgba(36, 38, 44, 0.94));
}

.footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 12px;
}

.cta-band .muted,
.footer-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  width: var(--container);
  margin: 52px auto 28px;
}

.footer-shell {
  border-radius: var(--radius-shell);
  padding: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(252, 255, 251, 0.94), rgba(238, 243, 236, 0.84)),
    url("../../images/ChatGPT-Image-2-ene-2026-08_37_35.png") center / cover no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 236, 0.82));
  border: 1px solid rgba(22, 23, 28, 0.07);
  box-shadow: var(--shadow-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 24px;
  margin-bottom: 26px;
}

.footer-copy img {
  width: 150px;
  margin-bottom: 16px;
}

.footer-card {
  min-height: 100%;
}

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

.footer-nav,
.footer-contact,
.social-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.footer-nav li + li,
.footer-contact li + li,
.social-list li + li {
  margin-top: 10px;
}

.footer-nav a,
.footer-contact a,
.social-list a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.social-list a:hover,
.social-list a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 23, 28, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-note {
  margin: 0;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(17, 19, 24, 0.96), rgba(50, 53, 62, 0.94));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 34px rgba(9, 10, 14, 0.24);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 200ms ease,
    box-shadow 180ms ease;
  z-index: 120;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  box-shadow: 0 26px 40px rgba(9, 10, 14, 0.3);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

@keyframes dropdownCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatTile {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .brand-signal {
    display: none;
  }

  .header-shell {
    border-radius: var(--radius-shell);
  }

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

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

  .cards-grid-3,
  .story-grid,
  .process-grid,
  .page-hero-copy,
  .brand-bridge,
  .brand-bridge-links,
  .footer-top,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .split-grid,
  .cards-grid-2,
  .project-grid,
  .footer-grid,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

  .image-showcase {
    grid-template-columns: 1fr;
  }

  .image-showcase-main {
    min-height: 420px;
  }

  .section.section-surface {
    padding: 36px 26px;
    border-radius: var(--radius-shell);
  }

  .section.section-surface.section-tight {
    padding-top: 30px;
  }
}

@media (max-width: 980px) {
  .header-shell {
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-shell);
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .main-nav {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .header-cta {
    display: none;
  }

  .nav-drawer {
    display: block;
    position: fixed;
    top: calc(var(--header-offset) + 10px);
    right: 12px;
    bottom: auto;
    left: 12px;
    height: calc(100dvh - var(--header-offset) - 22px);
    max-height: none;
    border-radius: var(--radius-shell);
    background:
      linear-gradient(180deg, rgba(17, 19, 24, 0.97), rgba(30, 32, 39, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open .nav-drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-bottom: 24px;
  }

  .nav-item {
    width: 100%;
  }

  .menu-spotlight {
    display: none;
  }

  .nav-link,
  .nav-button {
    width: 100%;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-card);
    font-size: 1rem;
  }

  .nav-item.is-current > .nav-link,
  .nav-item.is-current > .nav-button,
  .nav-item.is-open > .nav-button {
    background: rgba(143, 205, 121, 0.16);
    color: var(--white);
    border-color: rgba(143, 205, 121, 0.28);
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    margin-top: 10px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
  }

  .has-dropdown.is-open .dropdown-panel {
    display: block;
  }

  .dropdown-panel::before {
    display: none;
  }

  .dropdown-layout {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 10px;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .dropdown-intro {
    display: none;
  }

  .dropdown-intro strong {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .dropdown-intro p {
    font-size: 0.98rem;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dropdown-card {
    min-height: auto;
    padding: 16px 18px;
    border-radius: var(--radius-card);
    opacity: 1;
    transform: none;
    animation: none;
  }

  .dropdown-card strong {
    font-size: 1.04rem;
    margin-bottom: 6px;
  }

  .dropdown-card p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 560px;
    padding: 24px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .hero-gallery-main {
    min-height: 320px;
  }

  .hero-gallery-accent {
    min-height: 220px;
    max-width: 72%;
    justify-self: end;
    transform: none;
  }

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

  .hero-signal {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }

  .hero-signal img {
    width: 60px;
  }
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(540px, 0.96fr);
    gap: 40px;
  }

  .page-hero-shell {
    padding: 44px;
  }

  .section.section-surface,
  .cta-band,
  .footer-shell {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 720px) {
  .header-shell,
  .footer-shell,
  .cta-band {
    padding: 22px;
  }

  .brand img {
    width: 114px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual,
  .page-hero-shell,
  .feature-card,
  .brand-bridge-card,
  .brand-link-card,
  .split-card,
  .story-card,
  .project-card,
  .material-card,
  .footer-card,
  .process-step {
    border-radius: var(--radius-panel);
  }

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

  .hero-gallery-badge,
  .image-showcase figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 15px;
  }

  .hero-gallery-main {
    min-height: 280px;
  }

  .hero-gallery-accent {
    max-width: none;
    width: 100%;
  }

  .split-card-image,
  .image-showcase-stack figure {
    min-height: 220px;
  }

  .image-showcase-main {
    min-height: 300px;
  }

  .section.section-surface {
    padding: 30px 20px;
    border-radius: var(--radius-shell);
  }

  .section.section-surface.section-tight {
    padding-top: 26px;
  }

  .nav-link,
  .nav-button {
    min-height: 60px;
    padding: 0 18px;
  }

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

  .hero-signal img {
    width: 64px;
  }

  .dropdown-layout {
    padding: 0;
  }

  .dropdown-card {
    padding: 16px;
  }

  .dropdown-card {
    min-height: auto;
  }

  .brand-bridge-card,
  .brand-link-card {
    padding: 22px;
  }

  .brand-bridge-logo {
    width: min(100%, 220px);
    padding: 16px;
  }

  .section,
  .hero,
  .page-hero,
  .site-footer {
    width: min(100vw - 24px, var(--container));
  }

  .footer-bottom {
    flex-direction: column;
  }

  .scroll-top {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

/* Reference-inspired refinements */
:root {
  --bg: #efe9df;
  --bg-strong: #e6dfd5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: rgba(18, 21, 18, 0.92);
  --text: #181815;
  --muted: #5f5b54;
  --line: rgba(24, 24, 21, 0.08);
  --line-strong: rgba(24, 24, 21, 0.16);
  --lime: #d5b488;
  --lime-deep: #ad8455;
  --violet: #5e6c57;
  --violet-deep: #2f3a31;
  --stone: #9f968a;
  --graphite: #171915;
  --shadow-soft: 0 24px 58px rgba(24, 23, 20, 0.1);
  --shadow-strong: 0 28px 70px rgba(13, 14, 11, 0.22);
  --font-body: "Raleway", "Segoe UI", sans-serif;
  --font-heading: "Montserrat", "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(213, 180, 136, 0.16), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(94, 108, 87, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f4ed 0%, #f1ece4 44%, #ebe5db 100%);
  letter-spacing: 0.01em;
}

p,
li,
.footer-nav a,
.footer-contact a,
.social-list a {
  font-size: 1.02rem;
}

.site-header {
  padding-top: 12px;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.header-shell {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 234, 0.9));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(24, 22, 18, 0.08);
}

.brand img {
  width: 128px;
}

.brand-signal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 236, 0.74));
  border-color: rgba(24, 24, 21, 0.08);
  box-shadow: 0 10px 24px rgba(24, 22, 18, 0.05);
}

.brand-signal strong,
.hero-signal strong {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.nav-drawer-shell {
  display: contents;
}

.nav-drawer-head,
.nav-drawer-foot {
  display: none;
}

.nav-link,
.nav-button {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4c4941;
}

.nav-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-item.is-open > .nav-button::after,
.nav-item:hover > .nav-button::after,
.nav-item:focus-within > .nav-button::after {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-layout {
  background:
    linear-gradient(160deg, rgba(15, 18, 16, 0.97), rgba(36, 40, 35, 0.94));
}

.dropdown-intro strong,
.hero h1,
.page-hero h1,
.section-head h2,
.footer-cta h2,
.hero-panel h2,
.brand-bridge-copy h3,
.feature-card strong,
.split-card strong,
.story-card strong,
.process-step strong,
.project-card strong,
.material-card strong,
.footer-card strong,
.brand-link-card strong {
  font-family: var(--font-heading);
}

.hero h1,
.page-hero h1,
.section-head h2,
.footer-cta h2 {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.01;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.25rem);
  max-width: 12ch;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 5.8vw, 4.75rem);
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.hero-copy {
  padding-top: 60px;
  padding-bottom: 44px;
}

.hero-intro,
.page-hero p,
.section-head p {
  font-size: 1.05rem;
}

.button {
  padding: 14px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(135deg, #171915, #344136);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(23, 25, 21, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  border: 1px solid rgba(24, 24, 21, 0.1);
}

.button-dark {
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: var(--graphite);
  box-shadow: 0 16px 32px rgba(213, 180, 136, 0.22);
}

.hero-visual,
.page-hero-shell,
.cta-band {
  background:
    linear-gradient(160deg, rgba(15, 17, 14, 0.98), rgba(40, 46, 39, 0.92));
}

.hero-panel,
.hero-signal,
.hero-note,
.page-hero-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-panel,
.page-hero-list {
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel h2 {
  font-size: 1.65rem;
  font-weight: 600;
}

.hero-gallery-main,
.hero-gallery-accent,
.image-showcase-main,
.image-showcase-stack figure,
.split-card-image {
  border-radius: 18px;
}

.section.section-surface {
  background:
    linear-gradient(145deg, rgba(250, 247, 242, 0.94), rgba(238, 232, 223, 0.88)),
    var(--surface-image) var(--surface-position) / cover no-repeat,
    linear-gradient(180deg, #f5f0e8 0%, #ece5da 100%);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.feature-card,
.split-card,
.story-card,
.project-card,
.material-card,
.footer-card,
.brand-bridge-card,
.brand-link-card,
.process-step,
.stat-row li {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8));
}

.hero-gallery-badge,
.image-showcase figcaption {
  background: rgba(17, 19, 16, 0.54);
  border-color: rgba(255, 255, 255, 0.12);
}

.icon-chip,
.process-step span {
  background: linear-gradient(135deg, rgba(213, 180, 136, 0.24), rgba(173, 132, 85, 0.18));
}

.process-step span {
  color: var(--graphite);
}

.stat-row strong {
  font-size: 1.12rem;
  font-weight: 600;
}

.image-showcase-main {
  min-height: 560px;
}

.page-hero-shell {
  padding: 42px;
}

body[data-page="why-choose-us"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(12, 15, 14, 0.76), rgba(35, 38, 40, 0.82)),
    url("https://www.mykitchenworktop.co.uk/wp-content/uploads/2023/03/Caesarstone-Libretta-Porcelain-9c3b4f20-2db0-11ed-a3a3-13815ad1cdbe-scaled.webp") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

body[data-page="our-work"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(12, 15, 14, 0.76), rgba(35, 38, 40, 0.82)),
    url("https://www.mykitchenworktop.co.uk/wp-content/uploads/2023/06/kitchen-worktop-london.webp") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

body[data-page="commercial"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(12, 15, 14, 0.78), rgba(30, 33, 34, 0.84)),
    url("https://www.mykitchenworktop.co.uk/wp-content/uploads/2025/11/Neolith.jpg") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

body[data-page="residential"] .page-hero-shell {
  background:
    linear-gradient(160deg, rgba(12, 15, 14, 0.72), rgba(30, 33, 34, 0.8)),
    url("https://www.mykitchenworktop.co.uk/wp-content/uploads/2023/06/kitchen-worktop-london.webp") center / cover no-repeat,
    linear-gradient(160deg, rgba(12, 14, 18, 0.98), rgba(35, 36, 43, 0.92));
}

@media (max-width: 1100px) {
  .page-hero-shell {
    padding: 34px;
  }

  .image-showcase-main {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(12, 13, 11, 0.42);
    z-index: 90;
  }

  .main-nav {
    position: static;
  }

  .nav-drawer {
    top: calc(var(--header-offset) + 8px);
    left: 10px;
    right: 10px;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(15, 17, 14, 0.98), rgba(34, 39, 35, 0.96));
  }

  .nav-drawer-shell {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .nav-drawer-head {
    display: grid;
    gap: 12px;
    padding: 22px 20px 16px;
    position: sticky;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 17, 14, 0.98), rgba(15, 17, 14, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-drawer-head .eyebrow {
    margin: 0;
  }

  .nav-drawer-head strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.18;
  }

  .nav-list {
    padding: 16px;
    gap: 10px;
  }

  .nav-link,
  .nav-button {
    min-height: 58px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.9);
  }

  .dropdown-panel {
    margin-top: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .dropdown-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-drawer-foot {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding: 10px 16px calc(18px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(15, 17, 14, 0) 0%, rgba(15, 17, 14, 0.92) 30%, rgba(15, 17, 14, 0.98) 100%);
  }

  .nav-drawer-cta,
  .nav-drawer-link {
    min-height: 52px;
    border-radius: var(--radius-card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .nav-drawer-cta {
    padding: 0 18px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-drawer-cta-primary {
    background: rgba(255, 255, 255, 0.94);
    color: var(--graphite);
  }

  .nav-drawer-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-drawer-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .hero-intro,
  .page-hero p,
  .section-head p,
  p,
  li {
    font-size: 0.98rem;
  }

  .hero-actions,
  .cta-actions,
  .brand-bridge-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-actions .button,
  .brand-bridge-actions .button {
    width: 100%;
  }

  .hero-gallery-main {
    min-height: 340px;
  }

  .hero-gallery-accent {
    min-height: 250px;
    max-width: 80%;
  }
}

@media (max-width: 720px) {
  .header-shell,
  .footer-shell,
  .cta-band {
    padding: 18px;
  }

  .brand img {
    width: 106px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .page-hero-shell {
    padding: 24px;
  }

  .image-showcase-main {
    min-height: 300px;
  }
}
