/* ========================================
   KARIN'S KLEDINGREPARATIE
   ======================================== */

:root {
  --burgundy: #5c1a2b;
  --burgundy-dark: #3e0f1c;
  --burgundy-light: #8b3a4c;
  --gold: #c9a76b;
  --gold-light: #e3c992;
  --gold-dark: #a8884d;
  --cream: #faf6f0;
  --cream-dark: #f1ead9;
  --ink: #1f1a1d;
  --ink-muted: #6b6168;
  --line: #e8dfd0;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(31, 26, 29, 0.06);
  --shadow-md: 0 4px 16px rgba(31, 26, 29, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 26, 29, 0.12);
  --shadow-xl: 0 28px 60px rgba(31, 26, 29, 0.18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==================== TYPOGRAPHY ==================== */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 em, h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.eyebrow-dark { color: var(--burgundy); }
.eyebrow-gold { color: var(--gold); }

/* ==================== ANNOUNCEMENT BAR ==================== */

.announce {
  background: var(--burgundy-dark);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 9px 0;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(201, 167, 107, 0.2);
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.announce strong { color: var(--gold); font-weight: 600; }

.announce-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(201, 167, 107, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 167, 107, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(201, 167, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 167, 107, 0); }
}

/* ==================== NAV ==================== */

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: opacity var(--transition);
}

.brand:hover { opacity: 0.75; }

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--cream);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  border: 2px solid var(--gold);
  transition: all var(--transition);
}

.nav.scrolled .brand-mark {
  background: var(--burgundy);
  color: var(--cream);
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav.scrolled .brand-text { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav.scrolled .nav-links a { color: var(--ink); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  transition: var(--transition);
}

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

/* ==================== HERO ==================== */

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding: 180px 0 100px;
  margin-top: -88px;
  margin-left: calc(50% - 50vw);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.85) contrast(0.95);
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(201, 167, 107, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(139, 58, 76, 0.55) 0%, transparent 55%),
    linear-gradient(135deg, rgba(62, 15, 28, 0.88) 0%, rgba(92, 26, 43, 0.82) 60%, rgba(139, 58, 76, 0.75) 100%);
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
}

.hero-ornament {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--cream);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.85);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 11px 24px; font-size: 0.85rem; }

.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 167, 107, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.4);
}
.btn-ghost:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.5);
}
.btn-outline-light:hover { background: rgba(250, 246, 240, 0.1); }

.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(250, 246, 240, 0.18);
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(250, 246, 240, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--cream);
  margin-top: 8px;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ==================== SECTIONS ==================== */

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ==================== SERVICES ==================== */

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 38px 32px 34px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  color: var(--burgundy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
  border: 1px solid var(--line);
}

.service-icon svg { width: 30px; height: 30px; }

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--gold);
  border-color: var(--burgundy);
  transform: scale(1.05);
}

.service-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 167, 107, 0.12);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==================== PROCESS ==================== */

.process {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 110px 0;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 70px;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 22px rgba(92, 26, 43, 0.25);
}

.process-icon svg { width: 32px; height: 32px; }

.process-step h3 {
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.55;
  padding: 0 12px;
  min-width: 70px;
}

.process-arrow svg { width: 100%; max-width: 80px; }

/* ==================== TRUST STRIP ==================== */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--burgundy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.trust-item > div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ==================== ATELIER (showcase) ==================== */

.atelier {
  background: var(--white);
  padding: 110px 0;
  position: relative;
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.atelier-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 22px;
}

.atelier-copy > p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.atelier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atelier-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 12px 18px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.atelier-list .mark {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.atelier-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo:hover img { transform: scale(1.04); }

.photo-large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 11;
}

.photo-small {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

/* ==================== CRAFTSMAN (Veli) ==================== */

.craftsman {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.craftsman::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.craftsman-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

.craftsman-photo {
  margin: 0;
  position: relative;
  padding: 0 0 24px 24px;
}

.craftsman-photo::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}

.craftsman-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
}

.craftsman-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.craftsman-photo:hover .craftsman-frame img {
  transform: scale(1.04);
}

.craftsman-badge {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 18px 36px rgba(92, 26, 43, 0.35);
  border: 3px solid var(--cream);
}

.badge-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.02em;
}

.badge-text {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.85);
  margin-top: 4px;
  line-height: 1.25;
}

.craftsman-copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--burgundy);
  margin-bottom: 26px;
  line-height: 1.05;
}

.craftsman-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 32px;
}

.craftsman-lead strong {
  color: var(--burgundy);
  font-weight: 600;
}

.craftsman-quote {
  position: relative;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  padding: 36px 38px 32px 50px;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.craftsman-quote::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 167, 107, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.quote-mark {
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  opacity: 0.6;
}

.quote-attribution {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  position: relative;
}

.craftsman-traits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trait {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform var(--transition), border-color var(--transition);
}

.trait:hover {
  transform: translateX(4px);
  border-color: var(--gold);
}

.trait-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--burgundy-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trait-icon svg { width: 22px; height: 22px; }

.trait > div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.trait strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
}

.trait span {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ==================== STADSPAS ==================== */

.stadspas {
  background: var(--cream);
  padding: 90px 0;
  position: relative;
}

.stadspas-card {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201, 167, 107, 0.2);
}

.stadspas-card::before,
.stadspas-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.stadspas-card::before {
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 167, 107, 0.18) 0%, transparent 65%);
}

.stadspas-card::after {
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 167, 107, 0.12) 0%, transparent 65%);
}

.stadspas-card > * { position: relative; z-index: 1; }

.stadspas-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  perspective: 1000px;
}

.passcard {
  width: 320px;
  height: 200px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #1a7d4f 0%, #0f5836 50%, #1a7d4f 100%);
  color: #fff;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.5),
    0 18px 36px -18px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transform: rotate(-5deg) translateX(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.passcard::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.passcard::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.passcard:hover {
  transform: rotate(-2deg) translateY(-6px);
}

.passcard-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: skewX(-20deg);
  animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -50%; }
  50% { left: 130%; }
}

.passcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.passcard-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.passcard-chip {
  width: 36px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.passcard-chip svg { width: 100%; height: 100%; }

.passcard-brand {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.passcard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.passcard-num {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
}

.passcard-name {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.stadspas-card h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 22px;
}

.stadspas-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.9);
  max-width: 620px;
  margin: 0 auto 50px;
  font-weight: 300;
}

.stadspas-lead strong {
  color: var(--gold);
  font-weight: 600;
}

.stadspas-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stadspas-feature {
  flex: 1;
  min-width: 180px;
  padding: 0 30px;
}

.feature-num {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.feature-num span {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(201, 167, 107, 0.7);
}

.stadspas-feature p {
  font-size: 0.92rem;
  color: rgba(250, 246, 240, 0.75);
  letter-spacing: 0.02em;
}

.divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(201, 167, 107, 0.4), transparent);
}

.stadspas-note {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.7);
  padding-top: 30px;
  border-top: 1px solid rgba(201, 167, 107, 0.18);
}

/* ==================== PRICING ==================== */

.pricing {
  background: var(--white);
  position: relative;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-card h3 {
  font-size: 1.55rem;
  color: var(--burgundy);
}

.card-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 167, 107, 0.14);
  padding: 5px 11px;
  border-radius: 999px;
}

.price-card ul { list-style: none; }

.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  line-height: 1.45;
}

.price-card li:last-child { border-bottom: none; }

.price-card li span { color: var(--ink); flex: 1; }

.price-card li b {
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-card-cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-card-cta::before { display: none; }
.price-card-cta h3 { color: var(--cream); margin-bottom: 14px; }
.price-card-cta p {
  color: rgba(250, 246, 240, 0.8);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.note {
  margin-top: 50px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.note strong { color: var(--burgundy); font-weight: 600; font-style: normal; }

/* ==================== OPENINGSTIJDEN ==================== */

.hours {
  background: var(--cream);
  padding: 110px 0;
}

.hours-card {
  background: var(--white);
  border-radius: 20px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hours-list {
  padding: 28px 32px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-row span {
  color: var(--ink);
  font-weight: 500;
}

.hours-row b {
  color: var(--burgundy);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.hours-row.closed b {
  color: var(--ink-muted);
  font-style: italic;
  font-weight: 500;
}

.hours-aside {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.hours-aside::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 167, 107, 0.18) 0%, transparent 70%);
}

.hours-clock {
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
}

.hours-clock svg { width: 56px; height: 56px; }

.hours-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  position: relative;
}

.hours-sub {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.hours-subline {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  letter-spacing: 0.02em;
  position: relative;
  margin-top: 4px;
}

.hours-closed {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 167, 107, 0.25);
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  font-style: italic;
  position: relative;
  width: 100%;
}

/* ==================== LOCATIE ==================== */

.location {
  background: var(--white);
  padding: 110px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--cream-dark);
}

.location-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(201, 167, 107, 0.18);
  pointer-events: none;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-photo:hover img { transform: scale(1.04); }

.location-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 22px;
}

.location-copy > p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}

.meta-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.meta-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--burgundy);
}

.meta-sub {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.meta-link {
  text-decoration: none;
  transition: color var(--transition);
}

.meta-link:hover { color: var(--gold-dark); }

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-ghost-dark:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* ==================== PHONE CTA ==================== */

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 32px 18px 22px;
  background: rgba(250, 246, 240, 0.08);
  border: 1px solid rgba(201, 167, 107, 0.3);
  border-radius: 999px;
  text-decoration: none;
  color: var(--cream);
  margin-bottom: 30px;
  transition: all var(--transition);
}

.phone-cta:hover {
  background: rgba(201, 167, 107, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.phone-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--burgundy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-icon svg { width: 22px; height: 22px; }

.phone-cta > span:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.phone-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.phone-number {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* Footer contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-phone {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
  font-variant-numeric: tabular-nums;
}

.footer-phone:hover { opacity: 0.8; }

.footer-address {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.6);
}

/* ==================== CONTACT ==================== */

.contact {
  background: var(--white);
  padding: 70px 0 110px;
}

.contact-card {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  border-radius: 22px;
  padding: 80px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-ornament {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 160px;
  height: 160px;
  color: var(--gold);
  opacity: 0.5;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 167, 107, 0.15) 0%, transparent 70%);
}

.contact-card > * { position: relative; z-index: 1; }

.contact-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.contact-text {
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */

footer {
  background: linear-gradient(180deg, var(--burgundy-dark) 0%, #2a0911 100%);
  color: rgba(250, 246, 240, 0.7);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 167, 107, 0.4), transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 167, 107, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo .brand-mark {
  width: 46px;
  height: 46px;
  background: var(--cream);
  color: var(--burgundy);
  font-size: 1.4rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250, 246, 240, 0.55);
  margin-top: 4px;
}

.footer-pitch {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.65);
  max-width: 330px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 167, 107, 0.18);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(250, 246, 240, 0.7);
}

.footer-links svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.footer-link-icon,
.footer-links-plain a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 246, 240, 0.75);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.footer-link-icon:hover,
.footer-links-plain a:hover {
  color: var(--gold);
}

.footer-link-icon span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.footer-link-icon:hover span { color: var(--gold); }

.footer-info {
  cursor: default;
}

.footer-links-plain li {
  position: relative;
  padding-left: 16px;
}

.footer-links-plain li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 167, 107, 0.15);
  position: relative;
  z-index: 1;
}

.copy {
  font-size: 0.83rem;
  color: rgba(250, 246, 240, 0.5);
  letter-spacing: 0.02em;
}

.footer-built {
  font-size: 0.83rem;
  font-style: italic;
  color: rgba(250, 246, 240, 0.4);
  text-align: right;
  max-width: 460px;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
  }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  footer { padding: 60px 0 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-built { text-align: center; }
}

/* Button with icon support */

.btn-with-icon {
  gap: 10px;
}

.btn-with-icon svg {
  width: 18px;
  height: 18px;
}

/* ==================== REVEAL ANIMATIONS ==================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal]:nth-child(6) { transition-delay: 0.4s; }

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 28px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open a { color: var(--ink); }

  .announce { font-size: 0.78rem; padding: 8px 0; }
  .announce-inner { flex-wrap: wrap; }

  .hero {
    padding: 130px 0 80px;
    min-height: 100vh;
  }
  .hero-ornament { width: 360px; height: 360px; right: -180px; opacity: 0.22; top: 65%; }
  .hero-stats {
    gap: 22px 30px;
    padding-top: 28px;
  }
  .hero-stats strong { font-size: 1.7rem; }
  .hero-stats span { font-size: 0.7rem; }
  .hero h1 { margin-bottom: 18px; }
  .lead { margin-bottom: 32px; font-size: 1rem; }
  .hero-cta { margin-bottom: 50px; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 50px; }
  .service-card, .price-card { padding: 28px 24px; }

  .stadspas { padding: 70px 0; }
  .stadspas-card { padding: 60px 28px; }
  .stadspas-features { flex-direction: column; gap: 30px; }
  .divider { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 167, 107, 0.4), transparent); }

  .hours-card { grid-template-columns: 1fr; }
  .hours-list { padding: 22px 24px; }
  .hours-aside { padding: 40px 24px; }

  .services-grid { grid-template-columns: 1fr; gap: 18px; }

  .process { padding: 70px 0; }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 50px;
  }
  .process-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    min-width: auto;
  }
  .process-arrow svg { max-width: 50px; }
  .process-step { padding: 32px 24px; }

  .trust-strip { grid-template-columns: 1fr 1fr; padding: 6px; }
  .trust-item { padding: 18px 16px; border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .trust-item strong { font-size: 1rem; }

  .atelier { padding: 70px 0; }
  .atelier-grid { grid-template-columns: 1fr; gap: 40px; }
  .photo-large { aspect-ratio: 4 / 3; }

  .craftsman { padding: 70px 0; }
  .craftsman-grid { grid-template-columns: 1fr; gap: 50px; }
  .craftsman-photo { padding: 0 24px 24px 0; max-width: 400px; margin: 0 auto; }
  .craftsman-photo::before { left: 24px; bottom: 0; width: calc(100% - 24px); height: calc(100% - 24px); }
  .craftsman-badge { width: 100px; height: 100px; bottom: 14px; right: 0; }
  .badge-num { font-size: 2rem; }
  .badge-text { font-size: 0.58rem; }
  .craftsman-quote { font-size: 1.05rem; padding: 30px 28px 28px 42px; }
  .quote-mark { font-size: 4rem; top: 8px; left: 18px; }

  .location { padding: 70px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-photo { aspect-ratio: 4 / 3; }

  .contact-card { padding: 60px 28px; }
  .contact-ornament { width: 100px; height: 100px; opacity: 0.3; }

  .service-checklist { padding: 30px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .brand-text { font-size: 1rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .price-card header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .feature-num { font-size: 2.8rem; }
}
