:root {
  /* Warm, amber-derived palette built around the brand yellow (#f1b71d). */
  --navy-950: #1a1306;
  --navy-900: #241c0c;
  --navy-800: #322916;
  --navy-700: #5c4820;
  --navy-500: #8c6d2a;
  --navy-100: #f5e6b8;
  --navy-50:  #fbf5e0;
  --ink:      #1a1306;
  --paper:    #fbfaf7;
  --paper-2:  #f3ecd9;
  --line:     #e4d9b8;
  --accent:   #f1b71d;
  --accent-dark: #c89314;
  --red-hot:  #c83232;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--navy-950);
  color: var(--navy-100);
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: 0.04em;
}
.top-strip .inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.top-strip .left { display: flex; gap: 28px; opacity: 0.85; }
.top-strip .right { display: flex; gap: 20px; align-items: center; }
.top-strip a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.top-strip a:hover { color: white; }
.static-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; display: inline-block; margin-right: 6px;
}

/* ============ HEADER ============ */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 22px 32px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink);
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--navy-950);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em;
  position: relative;
}
.logo-mark .dot { color: var(--accent); }
.logo-mark::after {
  content: ''; position: absolute; top: 4px; right: 4px; bottom: 4px; left: 4px;
  border: 1px solid var(--accent); opacity: 0.6;
}
.logo-img { width: 44px; height: 44px; display: block; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.logo-text .sub { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy-700); margin-top: 3px; font-weight: 500; }

nav.main-nav { display: flex; gap: 38px; justify-content: center; }
nav.main-nav a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s;
}
nav.main-nav a:hover { color: var(--navy-700); }

.cta-btn {
  background: var(--navy-950); color: var(--paper);
  padding: 13px 28px; border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--navy-700); }
.cta-btn-full { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; }

.cta-btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  padding: 13px 28px; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-outline:hover { background: var(--ink); color: var(--paper); }

/* --- Shop buttons (brand accent) --- */
.header-actions { display: flex; align-items: center; gap: 12px; }

.cta-btn-shop-sm {
  background: var(--accent);
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid var(--accent-dark);
  font-family: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta-btn-shop-sm svg { width: 16px; height: 16px; }
.cta-btn-shop-sm:hover { background: var(--ink); color: var(--accent); border-color: var(--ink); }

.cta-btn-shop {
  background: var(--accent);
  color: var(--ink);
  padding: 15px 26px;
  border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
  margin-top: 32px;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-shop svg { width: 18px; height: 18px; }
.cta-btn-shop:hover { background: var(--ink); color: var(--accent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 32px 120px;
  max-width: 1400px; margin: 0 auto;
}
.hero-wrap { display: grid; gap: 72px; position: relative; z-index: 1; }

.hero-bg {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  mix-blend-mode: multiply;
  filter: saturate(0.65) contrast(0.95);
  mask-image: radial-gradient(ellipse 82% 74% at 50% 52%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.45) 58%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 82% 74% at 50% 52%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.45) 58%, transparent 100%);
}

.eyebrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--navy-700); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--navy-700); }

.hero-row-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.hero-row-top .eyebrow { margin-bottom: 0; }
.hero-location {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--navy-700); font-weight: 500;
}

.hero-row-main {
  display: block;
}
h1.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 7.2vw, 104px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--navy-950);
  white-space: nowrap;
}
h1.hero-title .block { display: block; }

.hero-tagline {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy-800);
}
.hero-tagline .block { display: block; }

.hero-row-cta {
  display: flex; flex-direction: column;
  gap: 36px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.hero-lede {
  font-size: 18px; line-height: 1.7; color: var(--navy-800);
  max-width: 860px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-services {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 14px 36px;
  align-items: center;
}
.hero-services li {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy-800); font-weight: 500;
  position: relative;
}
.hero-services li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%; transform: translate(50%, -50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
}

/* ============ SERVICES ============ */
.section {
  max-width: 1400px; margin: 0 auto; padding: 140px 32px;
}
.section-head {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: end;
  margin-bottom: 90px;
}
h2.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05; font-weight: 700; letter-spacing: -0.035em;
  color: var(--navy-950);
}
.section-intro { font-size: 17px; line-height: 1.7; color: var(--navy-800); max-width: 520px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 48px 40px;
  min-height: 340px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: var(--paper-2); }
.service-num {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--navy-700);
  position: absolute; top: 32px; right: 32px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.service-icon {
  width: 44px; height: 44px; margin-bottom: 40px;
  color: var(--navy-950);
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-950);
  margin-bottom: 18px;
}
.service-card p {
  font-size: 15px; line-height: 1.6; color: var(--navy-800);
  flex: 1;
}
/* ============ OM OS ============ */
.about-section {
  background: var(--navy-950); color: var(--paper);
  padding: 160px 32px;
}
.about-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-800);
  overflow: hidden;
}
.about-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,19,6,0.5) 0%, rgba(26,19,6,0) 30%, rgba(26,19,6,0) 55%, rgba(26,19,6,0.88) 100%);
  z-index: 1;
}
.about-visual-label {
  position: absolute; top: 28px; left: 28px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--navy-100); z-index: 2;
  font-weight: 500;
}
.about-visual-label .bar { display: inline-block; width: 28px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 10px; }
.about-visual-caption {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--navy-100);
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 14px;
  z-index: 2;
  font-weight: 500;
  line-height: 1.4;
}

.about-text .eyebrow { color: var(--navy-100); }
.about-text .eyebrow::before { background: var(--accent); }
.about-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.1;
  color: var(--paper);
  margin-bottom: 36px;
}
.about-text p {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.82);
  margin-bottom: 20px; max-width: 540px;
}
.certs {
  margin-top: 48px;
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cert {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.cert .tick { color: var(--accent); font-size: 14px; }

/* ============ MARQUEE ============ */
.marquee-section {
  background: var(--navy-950);
  padding: 72px 0 80px;
  overflow: hidden;
}
.marquee-head {
  max-width: 1400px;
  margin: 0 auto 36px;
  padding: 0 32px;
}
.marquee-head .eyebrow-dark {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--navy-100); font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
}
.marquee-head .eyebrow-dark .bar {
  width: 40px; height: 1px; background: var(--accent);
  display: inline-block;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  width: 360px; height: 240px;
  overflow: hidden;
  background: var(--navy-900);
  margin: 0;
}
.marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-2280px); } /* (360 + 20) * 6 items per set */
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 640px) {
  .marquee-section { padding: 56px 0 64px; }
  .marquee-item { width: 260px; height: 180px; }
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-1680px); } /* (260 + 20) * 6 */
  }
}

/* ============ BATHROOM SHOWCASE ============ */
.showcase {
  padding: 160px 32px;
  max-width: 1400px; margin: 0 auto;
}
.showcase-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; gap: 60px; flex-wrap: wrap;
}
.showcase-head .left { max-width: 640px; }
.showcase-head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--navy-950);
}
.showcase-head .right { max-width: 380px; text-align: left; }
.showcase-head .right p { font-size: 15px; line-height: 1.7; color: var(--navy-800); }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 20px;
}
.showcase-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-100);
}
.showcase-item.i1 { grid-column: span 7; grid-row: span 4; }
.showcase-item.i2 { grid-column: span 5; grid-row: span 2; }
.showcase-item.i3 { grid-column: span 5; grid-row: span 2; }
.showcase-item.i4 { grid-column: span 4; grid-row: span 3; }
.showcase-item.i5 { grid-column: span 4; grid-row: span 3; }
.showcase-item.i6 { grid-column: span 4; grid-row: span 3; }

.showcase-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.showcase-item:hover .showcase-img { transform: scale(1.03); }
.showcase-img.vola-shot { object-position: center top; }
.showcase-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,19,6,0.88) 0%, rgba(26,19,6,0) 100%);
  color: var(--paper);
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
}
.showcase-meta .t {
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em;
}

/* ============ WEBSHOP ============ */
.shop-section {
  padding: 160px 32px;
  max-width: 1400px; margin: 0 auto;
}
.shop-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center;
}
.shop-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--navy-950); margin-bottom: 32px;
}
.shop-text .intro {
  font-size: 17px; line-height: 1.7; color: var(--navy-800);
  margin-bottom: 20px; max-width: 540px;
}
.shop-text p {
  font-size: 16px; line-height: 1.7; color: var(--navy-800);
  max-width: 540px;
}

.shop-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--accent);
  overflow: hidden;
  color: var(--ink);
  container-type: inline-size;
}
.shop-visual-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 28cqw, 200px);
  font-weight: 800;
  color: rgba(26,19,6,0.18);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 8%;
}
.shop-visual-label {
  position: absolute; top: 28px; left: 28px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  z-index: 2;
}
.shop-visual-label .bar {
  display: inline-block; width: 28px; height: 1px;
  background: var(--ink); vertical-align: middle; margin-right: 10px;
}
.shop-visual-caption {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--ink);
  border-top: 1px solid rgba(26,19,6,0.25);
  padding-top: 14px;
  z-index: 2;
  font-weight: 500;
  line-height: 1.4;
}
.shop-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,19,6,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,19,6,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ============ CONTACT / EMERGENCY ============ */
.contact-section {
  background: var(--paper-2);
  padding: 140px 32px;
}
.contact-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
@media (min-width: 1025px) {
  .contact-right { position: sticky; top: 110px; }
}
.contact-left h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--navy-950); margin-bottom: 32px;
}
.contact-left .intro {
  font-size: 17px; line-height: 1.7; color: var(--navy-800);
  margin-bottom: 48px; max-width: 460px;
}
.emergency-card {
  background: var(--navy-950); color: var(--paper);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.emergency-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,50,50,0.2), transparent 70%);
  transform: translate(50%, -50%);
}
.emergency-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 28px;
  font-weight: 500;
}
.emergency-label .dot-red {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-hot);
}
.emergency-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 16px;
}
.emergency-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 28px; }
.emergency-phone {
  font-family: 'Inter', sans-serif;
  font-size: 38px; font-weight: 800; letter-spacing: -0.035em;
  color: var(--paper);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.emergency-phone:hover { color: var(--accent); }

.contact-right {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}
.contact-right h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.contact-form-note {
  font-size: 13px; color: var(--navy-700);
  margin-bottom: 28px; line-height: 1.5;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy-700); margin-bottom: 10px; font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-bottom-color: var(--navy-950);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.info-cards {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 540px;
}
.info-card { padding-top: 20px; border-top: 1px solid var(--navy-700); }
.info-card .lbl {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--navy-700); margin-bottom: 10px;
  font-weight: 500;
}
.info-card .val {
  font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.3;
  color: var(--navy-950); font-weight: 600;
}

.map-card {
  display: block;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  aspect-ratio: 16 / 9;
  max-width: 540px;
  transition: border-color 0.2s;
  background: var(--paper);
}
.map-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.map-card:hover { border-color: var(--ink); }
.map-card:hover img { transform: scale(1.03); }
.map-card-cta {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--paper);
  padding: 10px 16px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-950); color: rgba(255,255,255,0.7);
  padding: 100px 32px 24px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .mark-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.footer-brand .mark-row .logo-mark { background: var(--paper); color: var(--navy-950); }
.footer-brand .mark-row .logo-mark::after { border-color: var(--accent); }
.footer-brand .mark-row .name { font-family: 'Inter', sans-serif; font-size: 17px; color: var(--paper); font-weight: 700; letter-spacing: -0.01em; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--paper); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col li.spaced { margin-top: 14px; }
.footer-col li.cvr { margin-top: 14px; font-size: 12px; opacity: 0.7; }
.footer-col a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; font-size: 12px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 20px;
}
.footer-bottom .serif-big {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.footer-credit {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.footer-credit a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .section-head, .about-inner, .contact-inner, .shop-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-row-cta { gap: 32px; }
  .hero-wrap { gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav.main-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .showcase-grid { grid-auto-rows: 100px; }
  .showcase-item.i1 { grid-column: span 12; grid-row: span 3; }
  .showcase-item.i2, .showcase-item.i3 { grid-column: span 6; grid-row: span 2; }
  .showcase-item.i4, .showcase-item.i5, .showcase-item.i6 { grid-column: span 4; grid-row: span 2; }
  .info-cards { grid-template-columns: 1fr; }
  .shop-visual { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .top-strip .left { display: none; }
  .section, .showcase, .about-section, .contact-section { padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px; }
  .hero { padding: 48px 20px 72px; }
  .hero-wrap { gap: 40px; }
  .hero-row-top { flex-wrap: wrap; gap: 12px; }
  .hero-location { display: none; }
  .hero-trust { padding: 24px; }
  .hero-trust-stat .num { font-size: 56px; }
  .hero-services { gap: 10px 28px; }
  .hero-services li:not(:last-child)::after { right: -16px; }
  .header-inner { padding: 14px 20px; gap: 16px; }
  .header-inner .cta-btn {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.04em;
    gap: 6px;
  }
  .header-actions { gap: 8px; }
  .cta-btn-shop-sm { padding: 9px 11px; }
  .cta-btn-shop-sm .label { display: none; }
  .shop-section { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .showcase-item { grid-column: span 12 !important; grid-row: span 2 !important; }
  .form-row-grid { grid-template-columns: 1fr; gap: 0; }
  .logo-text .sub { display: none; }
  .logo-text .name { font-size: 15px; }
  .logo-mark { width: 40px; height: 40px; font-size: 17px; }
  .logo-img { width: 40px; height: 40px; }
  .contact-right { padding: 28px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
}
