:root {
  --ink: #edc7b7;
  --noir: #123c69;
  --charcoal: #1e4d7a;
  --stone: #eee2dc;
  --porcelain: #edc7b7;
  --paper: #eee2dc;
  --accent: #ac3b61;
  --accent-light: #c95a7e;
  --muted: rgba(237, 199, 183, 0.65);
  --line: rgba(255, 255, 255, 0.18);
  --line-warm: rgba(172, 59, 97, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --shadow-warm: 0 24px 70px rgba(18, 60, 105, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  transition: transform var(--transition);
}

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

::selection {
  background: var(--accent);
  color: var(--porcelain);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 640ms; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 720ms; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 800ms; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 880ms; }
.reveal-stagger.visible > *:nth-child(13) { transition-delay: 960ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Subtle noise texture overlay ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 5px clamp(18px, 4vw, 54px);
  color: var(--porcelain);
  background: linear-gradient(180deg, rgba(15, 11, 8, 0.88), rgba(15, 11, 8, 0.12));
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 11, 8, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--porcelain);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: auto;
  max-height: 70px;
  filter: invert(1);
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 250, 242, 0.75);
}

.nav a {
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.nav a:hover::after {
  width: 100%;
}

.nav a.is-active {
  color: var(--porcelain);
}

.nav a.is-active::after {
  width: 100%;
  background: var(--porcelain);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 242, 0.4);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 250, 242, 0.7);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 6vw, 78px) 38px;
  overflow: hidden;
  color: var(--porcelain);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gallery {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1410;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-image {
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.68) contrast(1.1) saturate(0.9);
  transform: scale(1.1);
  animation: kenBurns 27s ease-in-out infinite;
  transform-origin: center;
}

.image-one {
  animation-delay: 0s;
}

.image-two {
  animation-delay: 9s;
  transform-origin: 70% 42%;
}

.image-three {
  animation-delay: 18s;
  transform-origin: 32% 62%;
}

.hero-shade {
  background: #0000004d;
  backdrop-filter: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-light);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  border-color: var(--porcelain);
  background: var(--porcelain);
  color: var(--ink);
  font-weight: 600;
}

.button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.button.secondary {
  color: var(--porcelain);
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.3);
}

.button.secondary:hover {
  background: rgba(255, 250, 242, 0.15);
  border-color: rgba(255, 250, 242, 0.5);
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-panel span {
  padding: 20px 18px;
  background: rgba(15, 11, 8, 0.55);
  color: rgba(255, 250, 242, 0.9);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-panel span:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 78px);
}

.marquee {
  padding: 0;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: textLoop 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  padding: 24px 38px;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.01em;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 38px;
  font-size: 0.5em;
  vertical-align: middle;
  color: var(--accent);
  opacity: 0.5;
}

.section-band {
  background: var(--noir);
  color: var(--porcelain);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
}

.intro p:last-child,
.showcase-copy p,
.consultation p {
  font-size: 18px;
  color: rgb(173 173 173 / 72%) !important;
}

.section-band .intro p,
.section-band p,
.section-band .timeline p {
  color: rgba(255, 250, 242, 0.72);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: end;
  border-radius: var(--radius);
  background: var(--noir);
  transition: transform var(--transition), box-shadow var(--transition);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.collection-card.large {
  grid-row: span 2;
  min-height: 640px;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.12) saturate(0.9);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 11, 8, 0.9) 0%, rgba(15, 11, 8, 0.12) 58%, transparent 100%);
  transition: opacity var(--transition);
}

.collection-card:hover::after {
  opacity: 0.85;
}

.collection-card div {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 32px 28px;
  color: var(--porcelain);
}

.collection-card span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.timeline article:hover {
  background: rgba(255, 255, 255, 0.04);
}

.timeline strong {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  transition: color var(--transition);
}

.timeline article:hover strong {
  color: var(--porcelain);
}

.services {
  background: var(--paper);
}

.studio-gallery {
  background: var(--paper);
}

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

.studio-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--stone);
  border-radius: var(--radius-sm);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.studio-gallery-grid img:nth-child(1),
.studio-gallery-grid img:nth-child(6),
.studio-gallery-grid img:nth-child(13) {
  grid-column: span 2;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-grid article {
  min-height: 260px;
  padding: 28px 24px;
  background: var(--porcelain);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  color: rgba(8, 8, 8, 0.18);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: center;
}

.feature-list,
.accessory-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span,
.accessory-strip span {
  padding: 10px 16px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  transition: all var(--transition);
}

.feature-list span:hover,
.accessory-strip span:hover {
  background: var(--ink);
  color: var(--porcelain);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.clients {
  background: var(--porcelain);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.client-strip span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(8, 8, 8, 0.1);
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(8, 8, 8, 0.5);
  transition: color var(--transition), background var(--transition);
}

.client-strip span:hover {
  color: var(--accent);
  background: rgba(184, 134, 60, 0.04);
}

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

.testimonial-grid article {
  display: grid;
  align-content: space-between;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), background var(--transition);
}

.testimonial-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.testimonial-grid strong {
  color: var(--porcelain);
}

.testimonial-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.material-board {
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.swatch {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.swatch:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.marble {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.76), rgba(221, 213, 199, 0.74)),
    url("img/marble-island-kitchen.jpeg");
  background-size: cover;
}

.walnut {
  background:
    linear-gradient(120deg, rgba(87, 55, 38, 0.25), rgba(29, 18, 13, 0.28)),
    url("img/wood-modern-kitchen.jpg");
  background-size: cover;
}

.brass {
  background: linear-gradient(135deg, #1a1410, #c8a87c 42%, #8a7a6a);
}

.glass {
  background:
    linear-gradient(135deg, rgba(31, 39, 38, 0.86), rgba(116, 128, 119, 0.46)),
    url("img/glossy-l-shaped-kitchen.jpeg");
  background-size: cover;
}

.layout-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--porcelain);
  background: rgba(255, 250, 242, 0.06);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.tab:hover {
  background: rgba(255, 250, 242, 0.12);
  border-color: rgba(255, 250, 242, 0.3);
}

.tab.active {
  background: var(--porcelain);
  color: var(--ink);
  border-color: var(--porcelain);
}

.layout-display {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 42px);
  background: rgba(255, 250, 242, 0.03);
}

#layout-image {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  transition: opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.layout-visual {
  position: relative;
  aspect-ratio: 1.25;
  min-height: 260px;
  background: rgba(255, 250, 242, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.counter {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(200, 168, 124, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.counter-a {
  left: 13%;
  right: 13%;
  top: 22%;
  height: 22%;
}

.counter-b,
.counter-c {
  opacity: 0;
}

.layout-visual.parallel .counter-a {
  top: 20%;
}

.layout-visual.parallel .counter-b {
  opacity: 1;
  left: 13%;
  right: 13%;
  bottom: 20%;
  height: 22%;
}

.layout-visual.lshape .counter-a {
  left: 13%;
  right: 42%;
  top: 18%;
  bottom: 18%;
  height: auto;
}

.layout-visual.lshape .counter-b {
  opacity: 1;
  left: 13%;
  right: 16%;
  bottom: 18%;
  height: 22%;
}

.layout-visual.ushape .counter-a {
  left: 13%;
  right: 13%;
  top: 18%;
  height: 20%;
}

.layout-visual.ushape .counter-b,
.layout-visual.ushape .counter-c {
  opacity: 1;
  top: 18%;
  bottom: 18%;
  width: 20%;
}

.layout-visual.ushape .counter-b {
  left: 13%;
}

.layout-visual.ushape .counter-c {
  right: 13%;
}

.trend {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

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

.material-grid article {
  padding: 28px 24px;
  min-height: 230px;
  background: var(--stone);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.material-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.accessory-strip span {
  background: rgba(255, 250, 242, 0.08);
  border-color: var(--line);
  color: var(--porcelain);
}

.care {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.82fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.care img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.08) saturate(0.94);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.care img:hover {
  transform: scale(1.01);
}

.care ul {
  padding-left: 20px;
  line-height: 1.9;
  color: rgba(22, 18, 15, 0.74);
}

.care ul li {
  transition: transform var(--transition);
}

.care ul li:hover {
  transform: translateX(4px);
}

/* ── Calculator ── */
.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

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

.calculator-form input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 250, 242, 0.2);
  outline: none;
  min-height: auto;
  padding: 0;
  border: 0;
}

.calculator-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--porcelain);
  transition: transform 200ms ease;
}

.calculator-form input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calculator-form input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--porcelain);
}

.calculator-form output {
  display: block;
  margin-top: -10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-light);
}

.calculator-result {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.05);
  text-align: center;
}

.calculator-result__inner {
  padding: 28px;
}

.calculator-result__inner img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  transition: opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.calculator-result__inner .eyebrow {
  color: var(--accent-light);
}

.calculator-result strong {
  display: block;
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  color: var(--porcelain);
}

.calculator-result p {
  color: rgba(255, 250, 242, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.74fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
  background: linear-gradient(135deg, var(--noir), #1a1410);
  color: var(--porcelain);
}

.consultation > div {
  align-self: center;
}

.consultation p {
  color: rgb(173 173 173 / 72%);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(300px, 1.06fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  background: linear-gradient(135deg, var(--noir), #1a1410);
  color: var(--porcelain);
}

.contact-hero h1 {
  max-width: 12ch;
}

.contact-hero p {
  color: rgba(255, 250, 242, 0.72);
}

.contact-hero__panel {
  width: 100%;
}

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

.contact-mini-card {
  min-height: 168px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.05);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), background var(--transition);
}

.contact-mini-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, 0.08);
}

.contact-mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--porcelain);
  font-size: 15px;
}

.contact-mini-card a {
  color: var(--accent-light);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-mini-card a:hover {
  color: var(--porcelain);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 6vw, 78px);
  background: var(--paper);
}

.contact-card {
  padding: 28px 24px;
  background: var(--porcelain);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.contact-card span {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.contact-card p {
  margin-bottom: 0;
  color: rgba(22, 18, 15, 0.74);
}

.contact-card a {
  font-weight: 600;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-map {
  position: relative;
  display: block;
  padding: 0;
  background: #6a6058;
}

.contact-map__cards {
  display: grid;
  gap: 14px;
  position: absolute;
  left: clamp(18px, 6vw, 78px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: min(100%, 320px);
}

.location-card {
  padding: 20px 20px 18px;
  background: var(--porcelain);
  color: var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-card:hover,
.location-card:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  outline: none;
}

.location-card h3 {
  margin-bottom: 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.location-card p {
  margin-bottom: 10px;
  color: rgba(22, 18, 15, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.location-card strong {
  font-weight: 700;
}

.contact-map__visual {
  min-height: 560px;
  background: #8a7a6a;
}

.leaflet-map,
.contact-map__visual .leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #1a1410;
  color: #fff;
  border-radius: var(--radius-sm) !important;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(300px, 1.06fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  color: var(--porcelain);
}

.page-hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6.4vw, 42px);
  line-height: 0.92;
  margin: 18px 0 18px;
}

.page-hero-copy p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 18px;
}

.page-hero-visual img {
  width: 100%;
  min-height: 420px;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.page-hero-visual img:hover {
  transform: scale(1.01);
}

.journey,
.service-highlights,
.services-extra,
.project-series,
.video-band {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 78px);
}

.project-series--bg {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 11, 8, 0.6), rgba(15, 11, 8, 0.75)),
    url("img/modern-island-hood-kitchen.jpeg") center/cover no-repeat;
}

.project-series--bg .section-heading {
  position: relative;
  z-index: 1;
}

.project-series--bg .eyebrow {
  color: var(--accent-light);
}

.project-series--bg h2 {
  color: #fff;
}

.project-series--bg .project-series-card {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 0;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-series--bg .project-series-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-series--bg .project-series-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.45) contrast(1.15);
}

.project-series--bg .project-series-card span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--porcelain);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.journey-grid,
.principles,
.project-grid,
.project-series-grid,
.video-grid {
  display: grid;
  gap: 24px;
  margin-top: 50px;
}

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

.journey-card,
.principle-card,
.project-series-card,
.video-card {
  padding: 28px 24px;
  background: var(--porcelain);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.journey-card:hover,
.principle-card:hover,
.project-card:hover,
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.journey-card span,
.principle-card span,
.project-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 clamp(18px, 6vw, 78px) clamp(58px, 8vw, 112px);
}

.principle-card {
  min-height: 240px;
}

.principle-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  color: rgba(8, 8, 8, 0.18);
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 clamp(18px, 6vw, 78px) clamp(58px, 8vw, 112px);
}

.project-card {
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card div {
  padding: 24px;
}

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

.project-series-card {
  min-height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.01em;
  transition: transform var(--transition), background var(--transition);
  color: var(--porcelain);
}

.project-series-card:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.14);
}

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

.video-card span {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.project-map {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 78px);
}

.project-map__wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.04);
}

.project-map__wrap iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.8) contrast(0.95);
}

.accessory-strip--dark span {
  background: rgba(15, 11, 8, 0.88);
  color: var(--porcelain);
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.05);
  border-radius: var(--radius);
}

.consult-form textarea,
input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  color: var(--porcelain);
  background: rgba(22, 18, 15, 0.35);
  padding: 0 14px;
  font: inherit;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}

.consult-form textarea:focus,
input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(22, 18, 15, 0.5);
}

.consult-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

select option {
  color: var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(18px, 6vw, 78px);
  color: rgba(255, 250, 242, 0.7);
  background: var(--ink);
}

.footer__logo {
  width: min(240px, 42vw);
  height: auto;
  display: block;
  transition: opacity var(--transition);
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__copy {
  display: grid;
  gap: 6px;
}

.footer__copy span:first-child {
  color: var(--porcelain);
  font-weight: 700;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--porcelain);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              background 350ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__social a:hover,
.footer__social a:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999999;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.4);
  animation: contactWave 2.4s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 1.2s;
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@keyframes kenBurns {
  0% {
    opacity: 0;
    transform: scale(1.1) translate3d(0, 0, 0);
  }

  5%,
  31% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
    transform: scale(1.22) translate3d(-2.8%, -1.8%, 0);
  }
}

@keyframes textLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes contactWave {
  from {
    opacity: 0.6;
    transform: scale(0.85);
  }

  to {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
    border-right: 0;
    background: rgba(0, 0, 0, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .intro,
  .collection-grid,
  .showcase,
  .layout-display,
  .care,
  .calculator-layout,
  .consultation,
  .contact-hero {
    grid-template-columns: 1fr;
  }

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

  .contact-map {
    padding-bottom: clamp(40px, 6vw, 80px);
  }

  .page-hero,
  .principles,
  .project-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline,
  .material-grid,
  .service-grid,
  .client-strip,
  .testimonial-grid,
  .studio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card.large {
    min-height: 520px;
  }

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

  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .contact-map__cards {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 16px;
  }

  .contact-map__visual,
  .contact-map__visual .leaflet-map {
    min-height: 380px;
  }

  .project-map__wrap iframe {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(15, 15, 15, 0.94);
    backdrop-filter: blur(14px);
  }

  .brand img {
    max-width: 158px;
    max-height: 46px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 128px;
  }

  .hero-actions,
  .layout-tabs {
    display: grid;
  }

  .button,
  .header-cta,
  .tab {
    width: 100%;
  }

  .timeline,
  .material-grid,
  .service-grid,
  .client-strip,
  .testimonial-grid,
  .contact-details,
  .studio-gallery-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery-grid img,
  .studio-gallery-grid img:nth-child(1),
  .studio-gallery-grid img:nth-child(6),
  .studio-gallery-grid img:nth-child(13) {
    grid-column: auto;
  }

  .journey-grid,
  .project-series-grid {
    grid-template-columns: 1fr;
  }

  .collection-card div,
  .contact-card,
  .contact-mini-card,
  .journey-card,
  .location-card,
  .principle-card,
  .project-card div,
  .project-series-card,
  .service-card,
  .service-highlight-card,
  .video-card {
    text-align: center;
  }

  .page-hero-visual img,
  .project-card img {
    min-height: 320px;
  }

  .material-board {
    min-height: 420px;
  }

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

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-map__visual,
  .contact-map__visual .leaflet-map {
    min-height: 320px;
  }

  .project-map__wrap iframe {
    min-height: 320px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

/* ═══════════════════════════════════════
   LIGHT THEME
   ═══════════════════════════════════════ */
:root {
  --ink: #123c69;
  --noir: #edc7b7;
  --charcoal: #eee2dc;
  --stone: #eee2dc;
  --porcelain: #edc7b7;
  --paper: #eee2dc;
  --accent: #ac3b61;
  --accent-light: #c95a7e;
  --muted: rgba(18, 60, 105, 0.65);
  --line: rgba(18, 60, 105, 0.16);
  --line-warm: rgba(172, 59, 97, 0.18);
  --shadow-warm: 0 24px 70px rgba(18, 60, 105, 0.12);
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(172, 59, 97, 0.06), transparent 40%),
    radial-gradient(circle at 92% 96%, rgba(172, 59, 97, 0.04), transparent 40%),
    #eee2dc;
  color: var(--ink);
}

.site-header {
  color: var(--ink);
  background: rgba(238, 226, 220, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(18, 60, 105, 0.1);
}

.site-header.scrolled {
  background: rgba(238, 226, 220, 0.96);
  box-shadow: 0 4px 30px rgba(18, 60, 105, 0.1);
}

.brand img {
  filter: none;
}

.nav {
  color: rgba(18, 60, 105, 0.6);
}

.nav a::after {
  background: var(--accent);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a.is-active::after {
  background: var(--ink);
}

.header-cta,
.button.secondary {
  color: var(--ink);
  border-color: rgba(18, 60, 105, 0.2);
}

.header-cta:hover {
  background: rgba(18, 60, 105, 0.06);
  border-color: rgba(18, 60, 105, 0.35);
}

.menu-toggle {
  border-color: rgba(18, 60, 105, 0.2);
  background: rgba(238, 226, 220, 0.7);
}

.menu-toggle:hover {
  background: rgba(238, 226, 220, 0.9);
  border-color: rgba(18, 60, 105, 0.35);
}

.menu-toggle span {
  background: var(--ink);
}

.hero {
  color: #edc7b7;
}

.hero-image {
  filter: brightness(0.88) contrast(1.04) saturate(1.02);
}

.hero-shade {
  background: #0000004d;
  backdrop-filter: none;
}

.hero-copy {
  color: rgba(237, 199, 183, 0.85);
}

.hero-panel {
  background: rgba(237, 199, 183, 0.25);
  border-color: rgba(237, 199, 183, 0.4);
}

.hero-panel span {
  background: rgba(237, 199, 183, 0.82);
  color: var(--ink);
}

.hero-panel span:not(:last-child) {
  border-right: 1px solid rgba(18, 60, 105, 0.12);
}

.section-band,
.consultation,
.contact-hero,
.page-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(172, 59, 97, 0.08), transparent 34%),
    radial-gradient(circle at 14% 92%, rgba(172, 59, 97, 0.04), transparent 34%),
    linear-gradient(135deg, #edc7b7, #eee2dc);
}

.section-band .intro p,
.section-band p,
.section-band .timeline p,
.contact-hero p,
.page-hero-copy p,
.consultation p,
.intro p:last-child,
.showcase-copy p {
  color: rgba(18, 60, 105, 0.68) !important;
}

.calculator-form input[type="range"] {
  background: rgba(18, 60, 105, 0.12);
}

.calculator-result {
  background: rgba(237, 199, 183, 0.4);
  border-color: rgba(18, 60, 105, 0.12);
}

.calculator-result strong {
  color: var(--ink);
}

.calculator-result p {
  color: rgba(18, 60, 105, 0.55);
}

.marquee {
  color: var(--ink);
  background: #edc7b7;
  border-color: rgba(18, 60, 105, 0.1);
}

.marquee-track span::after {
  color: var(--accent);
  opacity: 0.4;
}

.section-heading h2 {
  color: var(--ink);
}

.collection-card,
.service-grid article,
.testimonial-grid article,
.journey-card,
.principle-card,
.project-card,
.project-series-card,
.video-card,
.contact-card,
.contact-mini-card,
.consult-form,
.layout-display,
.layout-visual,
.project-map__wrap {
  background: rgba(238, 226, 220, 0.88);
  backdrop-filter: blur(4px);
  border-color: rgba(18, 60, 105, 0.1);
}

.timeline {
  border-color: rgba(18, 60, 105, 0.1);
  background: rgba(18, 60, 105, 0.03);
}

.timeline article {
  border-color: rgba(18, 60, 105, 0.1);
}

.timeline article:hover {
  background: rgba(18, 60, 105, 0.04);
}

.timeline strong {
  color: var(--accent);
}

.timeline article:hover strong {
  color: var(--ink);
}

.collection-card img,
.care img,
.page-hero-visual img {
  filter: brightness(0.95) contrast(1.04) saturate(1.02);
}

.collection-card::after {
  background: linear-gradient(0deg, rgba(18, 60, 105, 0.55) 0%, rgba(18, 60, 105, 0.04) 58%, transparent 100%);
}

.collection-card span {
  color: var(--accent-light);
}

.testimonial-grid p,
.testimonial-grid strong,
.testimonial-grid span {
  color: var(--ink);
}

.testimonial-grid span {
  color: rgba(18, 60, 105, 0.5);
}

.material-grid article {
  background: #edc7b7;
  border-top-color: var(--accent);
}

.material-grid article:hover {
  background: #eee2dc;
}

.tab {
  color: var(--ink);
  background: rgba(238, 226, 220, 0.7);
  border-color: rgba(18, 60, 105, 0.12);
}

.tab:hover {
  background: rgba(238, 226, 220, 0.9);
  border-color: rgba(18, 60, 105, 0.22);
}

.tab.active,
.button.primary {
  color: #edc7b7;
  background: var(--ink);
  border-color: var(--ink);
}

.tab.active:hover,
.button.primary:hover {
  background: #1e4d7a;
}

.accessory-strip span {
  color: var(--ink);
  background: rgba(238, 226, 220, 0.7);
  border-color: rgba(18, 60, 105, 0.12);
}

.accessory-strip span:hover {
  background: var(--ink);
  color: var(--porcelain);
  border-color: var(--ink);
}

.accessory-strip--dark span {
  color: var(--porcelain);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.15);
}

.accessory-strip--dark span:hover {
  background: var(--porcelain);
  color: var(--ink);
  border-color: var(--porcelain);
}

.layout-visual {
  background: rgba(237, 199, 183, 0.5);
}

.counter {
  background: linear-gradient(135deg, #eee2dc, #edc7b7);
  border-color: rgba(18, 60, 105, 0.12);
}

.contact-mini-card strong {
  color: var(--ink);
}

.consult-form textarea,
input,
select {
  color: var(--ink);
  background: rgba(238, 226, 220, 0.8);
  border-color: rgba(18, 60, 105, 0.15);
}

.consult-form textarea:focus,
input:focus,
select:focus {
  border-color: var(--accent);
  background: rgba(238, 226, 220, 0.95);
  box-shadow: 0 0 0 3px rgba(172, 59, 97, 0.12);
}

input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(18, 60, 105, 0.45);
}

.footer {
  color: rgba(237, 199, 183, 0.7);
  background: #000000;
  border-top: 1px solid rgba(237, 199, 183, 0.08);
}

.footer__logo {
  filter: brightness(1.2);
}

.footer__copy span:first-child {
  color: #edc7b7;
}

.footer__social a {
  color: #edc7b7;
  border-color: rgba(237, 199, 183, 0.16);
  background: rgba(237, 199, 183, 0.06);
}

.footer__social a:hover,
.footer__social a:focus-visible {
  background: rgba(237, 199, 183, 0.14);
  border-color: rgba(237, 199, 183, 0.3);
}

/* Section-specific background colors */
#collections {
  background: #8fc1e3;
}

#process {
  background: #c4dbf6;
}

#layouts {
  background: #ececec;
}

.kitchen-about,
#about {
  background: #479761;
}

.kitchen-about #about > section {
  background: transparent;
}

/* Mobile nav light */
  @media (max-width: 980px) {
    .nav {
      background: rgba(238, 226, 220, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-color: rgba(18, 60, 105, 0.1);
    }

    .nav a {
      border-bottom-color: rgba(18, 60, 105, 0.08);
    }
  }

  @media (max-width: 640px) {
    .site-header {
      background: rgba(238, 226, 220, 0.96);
    }
  }

/* ── Section background consistency ── */
body {
  background: #eee2dc;
}

section,
.services,
.studio-gallery,
.materials,
.clients,
.care,
.journey,
.service-highlights,
.services-extra,
.video-band,
.project-grid,
.principles,
.contact-details,
.project-map {
  background-color: #eee2dc;
}

.section-band,
.consultation,
.contact-hero,
.page-hero,
.showcase {
  background:
    radial-gradient(circle at 88% 6%, rgba(172, 59, 97, 0.06), transparent 32%),
    radial-gradient(circle at 12% 94%, rgba(172, 59, 97, 0.04), transparent 32%),
    linear-gradient(180deg, #eee2dc 0%, #edc7b7 100%);
}

.project-series--bg {
  color: var(--porcelain);
  background:
    linear-gradient(180deg, rgba(18, 60, 105, 0.55), rgba(18, 60, 105, 0.75)),
    url("img/modern-island-hood-kitchen.jpeg") center/cover no-repeat;
}

.project-series--bg h2,
.project-series--bg .eyebrow {
  color: var(--porcelain);
}

.project-series--bg .project-series-card {
  color: var(--porcelain);
  padding: 0;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
}

.project-series--bg .project-series-card img {
  filter: brightness(0.5) contrast(1.1);
}

.project-series--bg .project-series-card:hover img {
  filter: brightness(0.4) contrast(1.15);
}

.marquee {
  background: #edc7b7;
  border-color: rgba(18, 60, 105, 0.1);
}

.collection-card,
.service-grid article,
.testimonial-grid article,
.journey-card,
.principle-card,
.project-card,
.project-series-card,
.video-card,
.contact-card,
.contact-mini-card,
.consult-form,
.layout-display,
.layout-visual,
.project-map__wrap,
.studio-gallery-grid img {
  background-color: #eee2dc;
}

.material-grid article {
  background: #eee2dc;
}

.hero {
  background-color: var(--ink);
}

/* Dark footer */
.footer {
  color: rgba(237, 199, 183, 0.7);
  background: #000000;
  border-top: 1px solid rgba(237, 199, 183, 0.08);
}

.footer__copy span:first-child {
  color: #edc7b7;
}

.footer__social a {
  color: #edc7b7;
  border-color: rgba(237, 199, 183, 0.16);
  background: rgba(237, 199, 183, 0.06);
}

.footer__social a:hover,
.footer__social a:focus-visible {
  background: rgba(237, 199, 183, 0.14);
  border-color: rgba(237, 199, 183, 0.3);
}
