/* ==========================================================================
   PASSIONE17 — Design System
   Luxus Second Hand, Saarbrücken
   ========================================================================== */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-500italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand */
  --ink-950: #0b0a0d;
  --ink-900: #121014;
  --ink-800: #1b171c;
  --ink-700: #292429;
  --ink-600: #3c363c;

  --paper: #f7f2e9;
  --paper-dim: #e8e0d0;
  --cream: #fbf8f3;

  --gold-300: #e6cd9a;
  --gold-500: #c4a46c;
  --gold-600: #a9824f;
  --gold-700: #8a6a3c;

  --text-on-dark: #f2ede2;
  --text-on-dark-dim: #b9b2a6;
  --text-on-light: #1b171c;
  --text-on-light-dim: #56504f;

  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, 0.35);

  --radius: 2px;
  --container: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-on-light);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-locked {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: inherit;
}
p {
  margin: 0;
}
button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink-900);
  color: var(--paper);
  padding: 0.8em 1.4em;
  z-index: 200;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-500);
  color: var(--ink-950);
}
.btn-gold:hover {
  background: var(--gold-300);
}
.btn-outline-light {
  border-color: rgba(247, 242, 233, 0.4);
  color: var(--text-on-dark);
}
.btn-outline-light:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}
.btn-outline-dark {
  border-color: rgba(27, 23, 28, 0.3);
  color: var(--text-on-light);
}
.btn-outline-dark:hover {
  border-color: var(--gold-600);
  color: var(--gold-700);
}
.btn-sm {
  padding: 0.7em 1.4em;
  font-size: 0.74rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(11, 10, 13, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  border-bottom-color: rgba(196, 164, 108, 0.18);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 34px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  position: relative;
  padding: 0.3em 0;
  transition: color 0.2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold-500);
  transition: right 0.3s var(--ease);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--text-on-dark);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  color: var(--text-on-dark-dim);
  transition: color 0.2s var(--ease);
}
.header-phone:hover {
  color: var(--gold-300);
}
.header-phone svg {
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text-on-dark);
  padding: 0.4rem;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  background: var(--ink-950);
  color: var(--text-on-dark);
  padding: clamp(8rem, 18vw, 11rem) 0 clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 85% 0%, rgba(196, 164, 108, 0.14), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(196, 164, 108, 0.08), transparent 60%);
  pointer-events: none;
}
.page-banner .container {
  position: relative;
}
.page-banner h1 {
  margin-top: 0.6rem;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
}
.page-banner .lede {
  margin-top: 1.2rem;
  max-width: 46em;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-on-dark-dim);
}
.breadcrumb {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.6em;
  font-size: 0.78rem;
  color: var(--text-on-dark-dim);
}
.breadcrumb a:hover {
  color: var(--gold-300);
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--text-on-dark);
  background: var(--ink-950);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 13, 0.55) 0%, rgba(11, 10, 13, 0.35) 35%, rgba(11, 10, 13, 0.92) 100%);
}
.hero-inner {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 5rem;
  width: 100%;
}
.hero-inner .eyebrow {
  color: var(--gold-300);
}
.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 16em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
}
.hero .lede {
  margin-top: 1.5rem;
  max-width: 38em;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-on-dark-dim);
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-dark-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  writing-mode: horizontal-tb;
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold-500), transparent);
}

/* ---------- Sections ---------- */
section {
  position: relative;
}
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.section-dark {
  background: var(--ink-950);
  color: var(--text-on-dark);
}
.section-tight {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.section-head {
  max-width: 42em;
}
.section-head h2 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-head .lede {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: var(--text-on-light-dim);
}
.section-dark .section-head .lede {
  color: var(--text-on-dark-dim);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head.center .eyebrow::before {
  display: none;
}

/* ---------- Philosophy / intro ---------- */
.philosophy {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.philosophy-copy p {
  margin-top: 1.4rem;
  color: var(--text-on-light-dim);
  font-size: 1.02rem;
}
.philosophy-copy p:first-of-type {
  margin-top: 1.6rem;
}
.philosophy-media {
  position: relative;
}
.philosophy-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.philosophy-media .frame-tag {
  position: absolute;
  left: -1.4rem;
  bottom: -1.4rem;
  background: var(--ink-950);
  color: var(--text-on-dark);
  padding: 1.3rem 1.6rem;
  max-width: 18em;
  box-shadow: var(--shadow-soft);
}
.frame-tag-quote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.35;
}
.frame-tag-author {
  display: block;
  margin-top: 0.7rem;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-700);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.feature {
  background: var(--ink-950);
  padding: clamp(2rem, 3vw, 2.6rem);
}
.feature .num {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold-500);
  font-size: 1.1rem;
}
.feature h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--text-on-dark);
}
.feature p {
  margin-top: 0.8rem;
  color: var(--text-on-dark-dim);
  font-size: 0.95rem;
}
.feature-wide {
  grid-column: 1 / -1;
}
.feature-wide .feature-name {
  margin-top: 0.7rem;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-300);
}
.feature-wide p:last-child {
  max-width: 52em;
}

/* ---------- Editorial photo grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid a:hover img,
.gallery-grid figure:hover img {
  transform: scale(1.04);
}
.gallery-grid .g-1 { grid-column: span 3; grid-row: span 2; aspect-ratio: 4/5; }
.gallery-grid .g-2 { grid-column: span 3; aspect-ratio: 4/3; }
.gallery-grid .g-3 { grid-column: span 3; aspect-ratio: 4/3; }

/* ---------- Brand marquee (home teaser) ---------- */
.brand-strip {
  border-top: 1px solid var(--ink-700);
  border-bottom: 1px solid var(--ink-700);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}
.brand-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  width: max-content;
  animation: marquee 42s linear infinite;
}
.brand-strip:hover .brand-track {
  animation-play-state: paused;
}
.brand-track img {
  height: clamp(22px, 3vw, 30px);
  width: auto;
  opacity: 0.72;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.25s var(--ease);
}
.brand-track img:hover {
  opacity: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* ---------- Marken grid (full page) ---------- */
.brand-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-700);
}
.brand-card {
  background: var(--ink-950);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: background 0.3s var(--ease);
}
.brand-card:hover {
  background: var(--ink-800);
}
.brand-card img {
  max-height: 46px;
  max-width: 100%;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
}
.brand-card:hover img {
  opacity: 1;
  transform: translateY(-2px);
}
.brand-card .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.disclaimer-box {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border: 1px solid var(--ink-700);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 52em;
}
.disclaimer-box h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.disclaimer-box p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-on-dark-dim);
}
.disclaimer-box p + p {
  margin-top: 0.6rem;
}

/* ---------- Pillars (Über uns) ---------- */
.pillars {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
.pillar {
  padding: clamp(1.8rem, 3vw, 2.4rem);
  background: var(--paper);
  border: 1px solid var(--paper-dim);
}
.pillar .mark {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-600);
}
.pillar h3 {
  margin-top: 0.9rem;
  font-size: 1.2rem;
}
.pillar p {
  margin-top: 0.7rem;
  font-size: 0.94rem;
  color: var(--text-on-light-dim);
}

/* ---------- Quote ---------- */
.quote-block {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.quote-block blockquote {
  margin: 0 auto;
  max-width: 34em;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--text-on-light);
  line-height: 1.4;
}
.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.section-dark.quote-block blockquote {
  color: var(--text-on-dark);
}
.section-dark.quote-block cite {
  color: var(--gold-500);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.info-card {
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--paper-dim);
}
.info-card:last-child {
  border-bottom: none;
}
.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
}
.info-icon svg {
  width: 18px;
  height: 18px;
}
.info-card h3 {
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.info-card p, .info-card a {
  margin-top: 0.35rem;
  font-size: 0.96rem;
  color: var(--text-on-light-dim);
  display: block;
}
.info-card a:hover {
  color: var(--gold-700);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.4rem;
}
.hours-table td {
  padding: 0.3rem 0;
  font-size: 0.96rem;
  color: var(--text-on-light-dim);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-on-light);
  font-weight: 500;
}
.map-panel {
  background: var(--ink-950);
  color: var(--text-on-dark);
  padding: clamp(2.2rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 20% 20%, rgba(196, 164, 108, 0.16), transparent 60%);
}
.map-panel > * {
  position: relative;
}
.map-panel address {
  font-style: normal;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.3;
}
.map-panel .social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 233, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.social-icon:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}
.social-icon svg {
  width: 16px;
  height: 16px;
}

/* ---------- Ankauf disturber (circular badge) ---------- */
.ankauf-disturber {
  background: var(--ink-950);
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
  display: flex;
  justify-content: center;
}
.disturber-circle {
  position: relative;
  width: min(80vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--ink-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  transform: rotate(-6deg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}
.disturber-circle:hover {
  transform: rotate(0deg);
}
.disturber-circle .eyebrow {
  color: var(--ink-950);
  font-size: 0.68rem;
}
.disturber-circle .eyebrow::before {
  background: var(--ink-950);
}
.disturber-circle h3 {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.25;
  margin-top: 0.3rem;
}
.disturber-circle p {
  font-size: clamp(0.66rem, 1.5vw, 0.74rem);
  line-height: 1.45;
  color: rgba(11, 10, 13, 0.82);
  max-width: 21em;
}
.disturber-circle a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  color: var(--ink-950);
}
.disturber-circle a:hover {
  color: var(--ink-700);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.cta-band .lede {
  margin: 1rem auto 0;
  max-width: 34em;
  color: var(--text-on-light-dim);
}
.cta-band .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 62em;
  margin-top: 1rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.6rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p, .legal-content li {
  margin-top: 0.9rem;
  color: var(--text-on-light-dim);
  font-size: 0.98rem;
}
.legal-content ul {
  margin-top: 0.9rem;
  padding-left: 1.2rem;
  list-style: disc;
}
.legal-content a {
  color: var(--gold-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-950);
  color: var(--text-on-dark-dim);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--ink-700);
}
.footer-brand .brand-logo {
  height: 30px;
}
.footer-brand p {
  margin-top: 1.2rem;
  max-width: 26em;
  font-size: 0.92rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.footer-col ul {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--gold-300);
}
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: var(--gold-300);
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .philosophy { grid-template-columns: 1fr; }
  .philosophy-media { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .main-nav { position: fixed; inset: 0; top: 0; background: var(--ink-950); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 2rem; }
  .nav-link { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-1 { grid-column: span 2; aspect-ratio: 16/10; }
  .gallery-grid .g-2, .gallery-grid .g-3 { grid-column: span 1; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-inner { padding-top: 9rem; }
  .hero-scroll { display: none; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card { aspect-ratio: 4/3; padding: 1.2rem; }
  .brand-card img { max-height: 34px; }
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink-950);
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  background: var(--ink-800);
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-300);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(196, 164, 108, 0.35);
  animation: whatsapp-pulse 2.6s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab::before { animation: none; display: none; }
}
@media (max-width: 560px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
