/* === DOCKYARD BATHROOMS — DESIGN SYSTEM === */
/* Industrial Luxury: Bodoni + IBM Plex Mono + Brass/Steel palette */

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

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --charcoal: #1A1A1A;
  --steel: #2A2A2A;
  --concrete: #3A3A3A;
  --iron: #555;
  --worn: #777;
  --mist: #999;
  --fog: #BBB;
  --bone: #E8E4DE;
  --linen: #F2EEE8;
  --raw: #FAF8F5;
  --brass: #A0845C;
  --brass-light: #B8996E;
  --brass-bright: #CCAD7D;
  --brass-faint: rgba(160,132,92,0.06);
  --oxide: #8B7355;
  --white: #FEFDFB;
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-body: 'Inter', -apple-system, sans-serif;
  --cream-warm: #F5F0E8;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--raw);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--brass); color: var(--black); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* === TYPOGRAPHY === */
.t-display { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
.t-mono { font-family: var(--font-mono); }
.t-body { font-family: var(--font-body); }

.tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: block;
}

.tag-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tag-line::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--brass);
  opacity: 0.4;
}

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

em, .accent { font-style: italic; color: var(--brass); }

.body-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--iron);
}

.body-text + .body-text { margin-top: 1rem; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s var(--ease-slow);
}

.nav--transparent { /* blend mode removed — causes contrast failures over light sections */ }
.nav--dark { background: rgba(10,10,10,0.95); backdrop-filter: blur(30px); }

.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(10,10,10,0.95);
  padding: 1.2rem 5vw;
  backdrop-filter: blur(30px);
}

.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.nav-wordmark {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-dot { width: 6px; height: 6px; background: var(--brass); border-radius: 50%; margin: 0 1rem; }
.nav-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--brass);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.4s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta-link {
  color: var(--brass) !important;
  border: 1px solid rgba(160,132,92,0.3);
  padding: 0.55rem 1.5rem;
  transition: all 0.4s var(--ease) !important;
}
.nav-cta-link:hover {
  background: var(--brass) !important;
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 1px; background: var(--white); }

/* === BUTTONS === */
.btn-brass {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--brass);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.btn-brass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass-bright);
  transform: translateX(-101%);
  transition: transform 0.6s var(--ease);
}
.btn-brass:hover::before { transform: translateX(0); }
.btn-brass > * { position: relative; z-index: 1; }
.btn-brass > span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-brass .arr {
  width: 20px;
  height: 1px;
  background: var(--black);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  transition: width 0.4s var(--ease);
}
.btn-brass .arr::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--black);
  border-top: 1px solid var(--black);
  transform: translateY(-50%) rotate(45deg);
}
.btn-brass:hover .arr { width: 28px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  background: transparent;
  border: 1px solid rgba(160,132,92,0.3);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--brass);
  color: var(--black);
  border-color: var(--brass);
}

.btn-line {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--iron);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.4s;
}
.btn-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(160,132,92,0.2);
  transition: background 0.4s;
}
.btn-line:hover { color: var(--charcoal); }
.btn-line:hover::after { background: var(--brass); }

/* === PAGE HEADER (for inner pages) === */
.page-header {
  background: var(--black);
  padding: 10rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.page-header-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(160,132,92,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,132,92,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 60%, rgba(0,0,0,0.5), transparent);
}

.page-header-content {
  position: relative;
  max-width: 800px;
}

.page-header .tag { color: var(--brass); }
.page-header .heading-xl { color: var(--white); margin-bottom: 1.5rem; }
.page-header .body-text { color: rgba(255,255,255,0.4); max-width: 500px; }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb span { margin: 0 0.5rem; }

/* === MATERIAL STRIP === */
.material-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 4px; }
.mat-1 { background: var(--brass); }
.mat-2 { background: var(--concrete); }
.mat-3 { background: var(--oxide); }
.mat-4 { background: var(--steel); }

/* === SECTIONS === */
.section { padding: 8rem 5vw; }
.section--dark { background: var(--black); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--cream { background: var(--cream-warm, var(--linen)); }
.section--linen { background: var(--linen); }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-narrow { max-width: 900px; margin: 0 auto; }

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2-offset { display: grid; grid-template-columns: 1.3fr 1fr; gap: 6rem; align-items: start; }

/* === SPLIT SECTION === */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split-image {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.split-image::before, .split-image::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(160,132,92,0.12);
  border-radius: 50%;
  z-index: 2;
}
.split-image::before { top: 2rem; left: 2rem; }
.split-image::after { bottom: 2rem; right: 2rem; }
.split-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }

/* === CARDS === */
.card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s var(--ease);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.8s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.card:hover::after { width: 100%; }

.card-dark {
  background: transparent;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.04);
  transition: all 0.5s var(--ease);
  position: relative;
}
.card-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.8s var(--ease);
}
.card-dark:hover { background: rgba(255,255,255,0.015); }
.card-dark:hover::after { width: 100%; }

/* === PORTFOLIO GRID === */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 520px 520px;
  gap: 3px;
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 350px 280px 280px;
  }
  .portfolio-grid .p-card:first-child {
    grid-row: auto;
  }
}

/* === PORTFOLIO CARD === */
.p-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}
.p-card::before, .p-card::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(160,132,92,0.1);
  border-radius: 50%;
  z-index: 3;
  transition: border-color 0.5s;
}
.p-card::before { top: 1.5rem; left: 1.5rem; }
.p-card::after { top: 1.5rem; right: 1.5rem; }
.p-card:hover::before, .p-card:hover::after { border-color: rgba(160,132,92,0.3); }

.p-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--dark) 0%, #1E1E1E 50%, var(--charcoal) 100%);
}

.p-card-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-card-ph span {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
}

.p-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.p-card:hover .p-card-overlay { opacity: 1; }

.p-card-tag {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.p-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
}

/* === PROCESS STEPS === */
.step {
  display: grid;
  grid-template-columns: 100px 220px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(160,132,92,0.08);
  transition: all 0.4s var(--ease);
  align-items: baseline;
}
.step:first-child { border-top: 1px solid rgba(160,132,92,0.08); }
.step:hover { padding-left: 1.5rem; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--brass);
}
.step-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
}
.step-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--iron);
}

/* === BRANDS === */
.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.b-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fog);
  padding: 0.6rem 2rem;
  transition: color 0.5s;
  cursor: default;
  letter-spacing: 0.05em;
}
.b-name:hover { color: var(--brass); }
.brands-divider { width: 1px; height: 14px; background: rgba(160,132,92,0.15); }

.brand-origins {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .brand-origins {
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    padding: 0 1rem;
  }
}

/* === QUOTE SECTION === */
.quote-section {
  padding: 10rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(160,132,92,0.06);
  line-height: 0.5;
  margin-bottom: 2rem;
  position: relative;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.quote-source {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  position: relative;
}
.quote-loc {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  margin-top: 0.4rem;
  position: relative;
}

/* === CONTACT FORM === */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--bone);
  padding: 0.9rem 1rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--brass); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--mist);
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 5rem 5vw 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brass), var(--steel) 40%, var(--oxide) 70%, var(--concrete));
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-about {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.25);
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-base {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
}
.footer-social { display: flex; gap: 2rem; }
.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--brass); }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 1s var(--ease-slow);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2-offset { grid-template-columns: 1fr; gap: 3rem; }
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 400px; }
  .split-content { padding: 4rem 5vw; }
  .step { grid-template-columns: 70px 1fr; }
  .step-desc { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1.5rem 6vw; }
  .brands-row { padding: 0 1rem; }
  .b-name { padding: 0.4rem 1rem; font-size: 0.95rem; }
  .nav.scrolled { padding: 1rem 6vw; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 5rem 6vw; }
  .page-header { padding: 8rem 6vw 4rem; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; padding: 2rem 0; }
  .p-card-overlay { opacity: 1; }
  .footer { padding: 3rem 6vw 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-base { flex-direction: column; gap: 1rem; text-align: center; }
}

/* === SKIP LINK (accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brass);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* === TRUST STRIP === */
.trust-strip {
  background: var(--linen);
  border-top: 1px solid rgba(160,132,92,0.1);
  border-bottom: 1px solid rgba(160,132,92,0.1);
  padding: 1.5rem 5vw;
}
.trust-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.trust-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(160,132,92,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 13px; height: 13px; }
.trust-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--iron);
}
@media (max-width: 768px) {
  .trust-strip-inner { gap: 2rem; }
  .trust-item:nth-child(n+4) { display: none; }
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* === MOBILE STICKY CTA === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--black);
  border-top: 1px solid rgba(160,132,92,0.15);
  padding: 0.9rem 1.5rem;
  gap: 0.75rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}
.mobile-cta-call {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.mobile-cta-enquire {
  color: var(--black);
  background: var(--brass);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
  .wa-float { bottom: 5.5rem; }
}

/* === HERO MOBILE FIXES === */
.hero-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .hero-bottom-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2.5rem;
  }
  .hero-ctas {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.2rem;
  }
  .hero-desc-text {
    max-width: 100% !important;
  }
  .hero-coords-box {
    display: none !important;
  }
  .hero-tag-line {
    font-size: 0.5rem !important;
  }
}

/* === PREFERS-REDUCED-MOTION (accessibility) === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  background: var(--charcoal);
  border-top: 1px solid rgba(160,132,92,0.15);
  padding: 1.2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-text a { color: var(--brass); }
.cookie-btn {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(160,132,92,0.4);
  background: transparent;
  color: var(--brass);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.cookie-btn:hover { background: var(--brass); color: var(--black); }
@media (max-width: 768px) {
  .cookie-banner { padding-bottom: calc(64px + 1.2rem); }
}
