/* Fajne ruce — shared stylesheet
   Design tokens + reusable components used across all pages. */

:root {
  --paper: #F7F4ED;
  --paper-alt: #EFEADC;
  --white: #FFFFFF;
  --ink: #121A16;
  --ink-soft: #3C4B44;
  --ink-muted: #5F6F68;
  --forest-950: #0B1611;
  --forest-900: #0E1C16;
  --forest-800: #14372B;
  --forest-700: #1E5340;
  --forest-750: #123227;
  --cream-text: #F2F5F0;
  --gold: #E8B45C;
  --gold-dark: #B8791C;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max-width: 1280px;
  --pad-inline: clamp(16px, 4vw, 52px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a { color: #16382C; text-decoration: none; }
a:hover { color: var(--gold-dark); }
input, textarea, select, button { font: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--pad-inline);
}

/* ---------- reveal-on-scroll animations ---------- */
@keyframes fr-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fr-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fr-zoom { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: none; } }
@keyframes fr-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fr-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fr-seal { from { opacity: 0; transform: rotate(-14deg) scale(0.86); } to { opacity: 1; transform: rotate(-6deg) scale(1); } }

.reveal {
  animation: fr-rise linear both;
  animation-timeline: view();
  animation-range: entry 0% cover var(--reveal-range, 30%);
}
.reveal-fade {
  animation: fr-fade linear both;
  animation-timeline: view();
  animation-range: entry 0% cover var(--reveal-range, 30%);
}
.reveal-zoom {
  animation: fr-zoom linear both;
  animation-timeline: view();
  animation-range: entry 0% cover var(--reveal-range, 34%);
}
.reveal-in { animation: fr-rise 1.1s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0s) both; }
.fade-in { animation: fr-fade 1s ease var(--reveal-delay, 0s) both; }
.zoom-in { animation: fr-zoom 1.2s cubic-bezier(.16,1,.3,1) var(--reveal-delay, .15s) both; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--forest-900);
  color: rgba(247,244,237,0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar .container {
  padding-block: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* ---------- header ---------- */
.site-header {
  background: rgba(247,244,237,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,26,22,0.1);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  padding-block: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--forest-700), var(--forest-800));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.035em;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}
.nav__link {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .25s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link--active {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.nav__cta {
  font-size: 15.5px;
  font-weight: 600;
  background: var(--forest-800);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: 999px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
  box-shadow: 0 10px 22px -14px rgba(18,26,22,0.9);
}
.nav__cta:hover {
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(18,26,22,0.9);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16.5px;
  min-height: 56px;
  border: 0;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, background .3s ease, border-color .3s ease;
}
.btn--lg { padding: 18px 30px; font-size: 17.5px; min-height: 58px; }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 36px -18px rgba(232,180,92,0.7);
}
.btn--gold:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 26px 46px -18px rgba(232,180,92,0.8); }
.btn--dark {
  background: var(--forest-800);
  color: var(--paper);
  box-shadow: 0 18px 36px -20px rgba(18,26,22,0.9);
}
.btn--dark:hover { color: var(--paper); transform: translateY(-2px); box-shadow: 0 26px 46px -20px rgba(18,26,22,0.9); }
.btn--outline-light {
  color: var(--cream-text);
  border: 1px solid rgba(242,245,240,0.35);
  background: transparent;
}
.btn--outline-light:hover { color: var(--cream-text); background: rgba(242,245,240,0.08); border-color: rgba(242,245,240,0.6); }
.btn--outline-dark {
  color: var(--ink);
  border: 1px solid rgba(18,26,22,0.25);
  background: transparent;
}
.btn--outline-dark:hover { color: var(--ink); background: var(--white); }
.btn--block { width: 100%; }

.text-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--forest-800);
  color: var(--cream-text);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(232,180,92,0.16), transparent 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  padding-block: clamp(34px, 6vw, 92px) clamp(40px, 6vw, 96px);
}
.hero--simple .hero__inner { padding-block: clamp(34px, 5vw, 68px) clamp(38px, 5vw, 72px); }
.hero--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow__line {
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  transform-origin: left;
  animation: fr-line 1.1s cubic-bezier(.16,1,.3,1) .1s both;
}
.eyebrow__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.hero--home h1 { font-size: clamp(40px, 7.6vw, 82px); line-height: 0.96; text-transform: uppercase; }
.hero--simple h1 { font-size: clamp(34px, 5.6vw, 60px); max-width: 20ch; }
.hero p { font-size: clamp(16.5px, 2vw, 19px); line-height: 1.55; color: rgba(242,245,240,0.8); margin: 0; text-wrap: pretty; }
.hero--home p { font-size: clamp(17px, 2.1vw, 20px); margin-bottom: 32px; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-photo { position: relative; }
.hero-photo__frame {
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest-700), #0F2C22);
  box-shadow: 0 50px 90px -50px rgba(9,18,14,0.95);
  display: flex;
  align-items: flex-start;
  padding: 20px;
}
.photo-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242,245,240,0.75);
  background: rgba(9,18,14,0.5);
  border: 1px solid rgba(242,245,240,0.16);
  padding: 7px 11px;
  border-radius: 8px;
}
.hero-photo__note {
  position: absolute;
  bottom: 22px;
  left: -18px;
  right: 22px;
  background: rgba(247,244,237,0.96);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 30px 60px -30px rgba(9,18,14,0.8);
}
.hero-photo__note strong { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.04em; color: var(--forest-800); }
.hero-photo__note span { font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); }
.hero-photo__note span b { font-weight: 600; color: var(--ink); }
.seal {
  position: absolute;
  top: 18px;
  right: -12px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 22px 44px -22px rgba(9,18,14,0.9);
  animation: fr-seal 1.2s cubic-bezier(.16,1,.3,1) .75s both;
}
.seal--sm { width: 84px; height: 84px; transform: rotate(-6deg); animation: none; box-shadow: 0 18px 36px -18px rgba(9,18,14,0.8); }
.seal span:first-child { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.seal span:nth-child(2) { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; line-height: 1; }
.seal--sm span:first-child { font-size: 8px; }
.seal--sm span:nth-child(2) { font-size: 16px; }
.seal span:last-child { font-size: 13px; }

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 14px;
  background-color: var(--gold);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: fr-marquee 42s linear infinite;
}
.marquee__group {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee__group span.dot { color: var(--forest-800); }

/* ---------- sections ---------- */
.section { padding-block: clamp(46px, 6vw, 96px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--band { padding-block: clamp(40px, 5vw, 68px); }
.section--dark { background: var(--forest-900); color: var(--cream-text); }
.section--forest { background: var(--forest-800); color: var(--cream-text); position: relative; overflow: hidden; }
.section--cream { background: var(--paper-alt); }
.section-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(232,180,92,0.12), transparent 62%);
  pointer-events: none;
}
.section-glow--br { bottom: -30%; left: -10%; }
.section-glow--tr { top: -10%; left: 30%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(232,180,92,0.14), transparent 60%); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-head__title, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: -0.042em;
  margin: 0;
}
.section-head__desc { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 36ch; }

/* ---------- cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 50px -34px rgba(18,26,22,0.5);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -34px rgba(18,26,22,0.55); }
.card__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.card__index { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--gold-dark); letter-spacing: 0.02em; }
.card__rule { flex: 1; height: 1px; background: rgba(18,26,22,0.12); }
.card__title { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.035em; margin-bottom: 12px; }
.card__text { margin: 0 0 18px; font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); }
.card__note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); line-height: 1.6; }

/* ---------- steps (dark, numbered) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(242,245,240,0.14);
}
.step { background: var(--forest-900); padding: 28px; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px, 7vw, 88px); line-height: 0.85; letter-spacing: -0.05em; color: var(--gold); margin-bottom: 14px; }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; margin-bottom: 10px; }
.step__text { margin: 0; font-size: 16.5px; line-height: 1.6; color: rgba(242,245,240,0.72); max-width: 34ch; }

/* ---------- services teaser (home) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.service-tile {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  display: block;
  color: var(--ink);
  box-shadow: 0 20px 44px -32px rgba(18,26,22,0.5);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.service-tile:hover { color: var(--ink); transform: translateY(-6px); box-shadow: 0 36px 60px -32px rgba(18,26,22,0.55); }
.service-tile__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.035em; margin-bottom: 10px; }
.service-tile__desc { margin: 0 0 20px; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.service-tile__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(18,26,22,0.1); padding-top: 14px; }
.service-tile__price { font-family: var(--font-mono); font-size: 13px; font-weight: 700; }
.service-tile__arrow { color: var(--gold-dark); font-size: 15px; }

/* ---------- services page detail cards ---------- */
.service-detail {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 24px 50px -34px rgba(18,26,22,0.5);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.service-detail__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.6vw, 27px); letter-spacing: -0.035em; margin: 0 0 12px; }
.service-detail__desc { margin: 0 0 16px; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--paper); border-radius: 999px; padding: 8px 14px; font-size: 14.5px; }
.tag--alt { background: var(--white); }
.service-detail__aside { display: grid; gap: 14px; align-content: start; }
.price-pill { background: var(--paper); border-radius: 14px; padding: 16px 18px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.price-pill__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.price-pill__value { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.03em; color: var(--forest-800); }
.service-detail__hint { font-size: 15px; line-height: 1.55; color: var(--ink-muted); }
.service-detail__hint strong { color: var(--ink); font-weight: 600; }

/* ---------- pricing ---------- */
.price-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; align-items: start; }
.price-panel { background: var(--white); border-radius: 22px; padding: 8px 30px 26px; box-shadow: 0 30px 60px -40px rgba(18,26,22,0.5); }
.price-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 14px;
  border-bottom: 1px solid rgba(18,26,22,0.12);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18,26,22,0.07);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row__spacer { flex: 1; }
.price-row__label { font-size: 16.5px; }
.price-row__label small { color: var(--ink-muted); font-size: 14.5px; }
.price-row__value { font-family: var(--font-mono); font-weight: 700; font-size: 16px; white-space: nowrap; }

.price-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--forest-700), var(--forest-750));
  color: var(--cream-text);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 34px 70px -40px rgba(9,18,14,0.75);
}
.price-hero__glow { position: absolute; top: -40%; right: -20%; width: 70%; height: 140%; background: radial-gradient(circle, rgba(232,180,92,0.2), transparent 60%); }
.price-hero__inner { position: relative; }
.price-hero__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,245,240,0.7); margin-bottom: 14px; }
.price-hero__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(46px, 7vw, 68px); line-height: 0.9; letter-spacing: -0.05em; color: var(--gold); }
.price-hero__note { font-size: 16px; line-height: 1.55; color: rgba(242,245,240,0.78); margin-top: 14px; max-width: 34ch; }

.price-simple {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 44px -34px rgba(18,26,22,0.5);
}
.price-simple__value { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.04em; color: var(--forest-800); white-space: nowrap; }

.price-note { border: 1px solid rgba(18,26,22,0.12); border-radius: 18px; padding: 24px 28px; display: grid; gap: 12px; }
.price-note__title { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.03em; }
.price-note__text { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

.price-table-block { margin-top: 0; }
.price-table {
  background: var(--white);
  border-radius: 20px;
  padding: 6px 26px;
  box-shadow: 0 24px 50px -34px rgba(18,26,22,0.5);
}
.price-table__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(18,26,22,0.07);
}
.price-table__row:last-child { border-bottom: 0; }
.price-table__label { font-size: 16.5px; }
.price-table__label small { color: var(--ink-muted); font-size: 14.5px; }
.price-table__value { font-family: var(--font-mono); font-weight: 700; font-size: 16px; white-space: nowrap; }
.price-group-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(21px, 2.6vw, 26px); letter-spacing: -0.03em; margin: 0 0 14px; }
.price-groups { display: grid; gap: 26px; }

.price-hero--light { background: var(--white); color: var(--ink); box-shadow: 0 24px 50px -34px rgba(18,26,22,0.5); padding: 28px; }
.price-hero--light .price-hero__label { color: var(--ink-muted); }
.price-hero--light .price-hero__value { color: var(--forest-800); font-size: clamp(38px, 5.6vw, 50px); }
.price-hero--light .price-hero__note { color: var(--ink-muted); margin-top: 10px; }

.info-tile { background: var(--white); border-radius: 18px; padding: 24px; box-shadow: 0 20px 44px -34px rgba(18,26,22,0.5); }
.info-tile__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.03em; margin-bottom: 8px; }
.info-tile__text { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.info-tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

.price-callout {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,245,240,0.55);
  border: 1px dashed rgba(242,245,240,0.3);
  padding: 8px 12px;
  border-radius: 8px;
}

/* ---------- team ---------- */
.team-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; }
.team-photo {
  aspect-ratio: 3/4;
  border-radius: 18px;
  background: linear-gradient(160deg, #E6DFCF, #D8CFB9);
  box-shadow: 0 26px 50px -34px rgba(18,26,22,0.55);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.team-photo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4E4838;
  background: rgba(247,244,237,0.9);
  padding: 6px 9px;
  border-radius: 7px;
}
.team-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.03em; margin-top: 16px; }
.team-role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.team-card { background: var(--white); border-radius: 20px; padding: clamp(20px, 3vw, 26px); box-shadow: 0 24px 50px -34px rgba(18,26,22,0.5); }
.team-card__photo { aspect-ratio: 4/5; border-radius: 16px; background: linear-gradient(160deg, #E6DFCF, #D8CFB9); display: flex; align-items: flex-end; padding: 14px; margin-bottom: 18px; }
.team-card__name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.035em; margin-bottom: 4px; }
.team-card__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }
.team-card__text { margin: 0 0 16px; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.team-card__meta { border-top: 1px solid rgba(18,26,22,0.08); padding-top: 14px; display: grid; gap: 6px; font-size: 14.5px; color: var(--ink-muted); }
.team-card--note { background: var(--paper-alt); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.team-card--note__title { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.035em; }
.team-card--note p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }

/* ---------- excludes list ---------- */
.excludes-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 4vw, 56px); }
.excludes-layout__lead { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.excludes-layout h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1; margin: 0 0 16px; }
.excludes-layout__text { margin: 0; font-size: 16.5px; line-height: 1.6; color: rgba(242,245,240,0.76); max-width: 42ch; }
.excludes-list { display: grid; align-content: start; }
.excludes-row {
  border-top: 1px solid rgba(242,245,240,0.18);
  padding: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.excludes-list .excludes-row:last-child { border-bottom: 1px solid rgba(242,245,240,0.18); }
.excludes-row__label { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.03em; color: var(--gold); }
.excludes-row__desc { font-size: 15px; color: rgba(242,245,240,0.6); }

/* ---------- gallery / before-after ---------- */
.gallery-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(160deg, #E6DFCF, #D3C9B2);
  box-shadow: 0 24px 48px -34px rgba(18,26,22,0.5);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.photo-tile--dark { background: linear-gradient(160deg, var(--forest-700), var(--forest-750)); box-shadow: 0 24px 48px -30px rgba(9,18,14,0.7); }
.photo-tile .photo-tag { color: #4E4838; background: rgba(247,244,237,0.9); }
.photo-tile--dark .photo-tag { color: rgba(242,245,240,0.8); background: rgba(9,18,14,0.5); }

.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.showcase-card { background: var(--white); border-radius: 18px; padding: 14px; box-shadow: 0 20px 44px -34px rgba(18,26,22,0.5); }
.showcase-card__photo { aspect-ratio: 1; border-radius: 12px; background: linear-gradient(160deg, #E6DFCF, #D3C9B2); display: flex; align-items: flex-end; padding: 12px; margin-bottom: 12px; }
.showcase-card__photo .photo-tag { font-size: 10.5px; padding: 5px 8px; }
.showcase-card__title { font-weight: 600; font-size: 16px; }
.showcase-card__meta { font-size: 14.5px; color: var(--ink-muted); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.review-card {
  background: rgba(255,255,255,0.55);
  border: 1px dashed #C9BFA6;
  border-radius: 18px;
  padding: 26px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.review-card--solid { background: var(--white); border: 1px dashed #D5CAB4; min-height: 168px; }
.review-stars { color: #C9BFA6; font-size: 15px; letter-spacing: 0.24em; }
.review-stars--solid { color: #D9CFBA; }
.review-text { font-size: 16px; color: #8B8069; line-height: 1.55; }
.review-text--solid { color: #9A8E78; }
.review-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #9C9179; }
.review-meta--solid { color: #A99C84; }
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-800);
  color: var(--cream-text);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-badge span { color: var(--gold); }
.dashed-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A7B63;
  border: 1px dashed #C4B69C;
  padding: 7px 11px;
  border-radius: 8px;
}

/* ---------- areas / chips ---------- */
.areas-title-row { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: baseline; margin-top: 34px; }
.areas-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.areas-note { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { background: rgba(255,255,255,0.7); border-radius: 999px; padding: 9px 15px; font-size: 15px; }
.chip--solid { background: var(--white); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.faq-item { display: flex; gap: 18px; }
.faq-item__num { font-family: var(--font-mono); font-size: 12px; color: var(--gold-dark); padding-top: 5px; }
.faq-item__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.03em; margin-bottom: 8px; }
.faq-item__text { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- credentials strip ---------- */
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.credential-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; margin-bottom: 6px; }
.credential-text { font-size: 15px; color: var(--ink-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.cta-band__title { margin: 0 0 10px; font-size: clamp(24px, 3.2vw, 34px); }
.cta-band__text { margin: 0; font-size: 16.5px; max-width: 46ch; }
.cta-band--dark .cta-band__text { color: rgba(242,245,240,0.78); }
.cta-band--light .cta-band__text { color: var(--ink-soft); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- forms ---------- */
.field { display: grid; gap: 7px; font-size: 15px; font-weight: 500; min-width: 0; }
.field input[type="text"],
.field input[type="tel"],
.field textarea {
  border: 1px solid rgba(18,26,22,0.18);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 16px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
  min-width: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--forest-800);
  box-shadow: 0 0 0 4px rgba(20,55,43,0.1);
  outline: none;
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.dropzone {
  border: 1px dashed rgba(18,26,22,0.28);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-muted);
  background: var(--white);
  transition: border-color .25s ease, background .25s ease;
}
.dropzone:hover { border-color: var(--forest-800); background: #FBFAF6; }
.dropzone small { display: block; font-size: 13px; color: #8A8B84; margin-top: 4px; }
.form-note { font-size: 13.5px; color: var(--ink-muted); line-height: 1.5; }

.cta-card {
  background: rgba(247,244,237,0.97);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--ink);
  display: grid;
  gap: 16px;
  box-shadow: 0 40px 80px -44px rgba(6,14,10,0.9);
}
.contact-block { margin-top: 30px; display: grid; gap: 8px; font-size: 16px; color: rgba(242,245,240,0.78); }
.contact-block a { color: var(--cream-text); border-bottom: 1px solid rgba(242,245,240,0.35); }

/* ---------- contact page ---------- */
.contact-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(22px, 3vw, 40px); align-items: start; }
.contact-form-card { background: var(--white); border-radius: 22px; padding: clamp(22px, 3vw, 32px); box-shadow: 0 30px 60px -40px rgba(18,26,22,0.5); }
.contact-form { display: grid; gap: 16px; }
.contact-form[hidden] { display: none; }
.contact-success { display: grid; gap: 14px; padding: 20px 0; text-align: center; justify-items: center; }
.contact-success[hidden] { display: none; }
.contact-success__check {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
}
.contact-success__title { font-family: var(--font-display); font-weight: 800; font-size: 25px; letter-spacing: -0.03em; }
.contact-success__text { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); max-width: 40ch; }

.contact-side { display: grid; gap: 16px; align-content: start; }
.contact-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--forest-700), var(--forest-750));
  color: var(--cream-text);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 30px 60px -40px rgba(9,18,14,0.75);
}
.contact-highlight__glow { position: absolute; top: -40%; right: -20%; width: 70%; height: 140%; background: radial-gradient(circle, rgba(232,180,92,0.2), transparent 60%); }
.contact-highlight__inner { position: relative; }
.contact-highlight__title { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.03em; margin-bottom: 8px; }
.contact-highlight__text { margin: 0 0 18px; font-size: 15.5px; line-height: 1.55; color: rgba(242,245,240,0.78); }

.info-card { background: var(--white); border-radius: 20px; padding: 26px; box-shadow: 0 24px 50px -34px rgba(18,26,22,0.5); display: grid; gap: 14px; }
.info-block + .info-block { border-top: 1px solid rgba(18,26,22,0.08); padding-top: 14px; }
.info-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.info-value { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.03em; }
.info-value--sm { font-size: 17px; font-weight: 600; font-family: var(--font-body); }
.hours-row { display: flex; justify-content: space-between; gap: 12px; font-size: 16px; }
.hours-row strong { font-weight: 600; }
.hours-row--muted { color: var(--ink-muted); }

.areas-card { background: var(--paper-alt); border-radius: 20px; padding: 26px; }
.areas-card__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.03em; margin-bottom: 12px; }
.areas-card__text { margin: 0 0 14px; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); }

.billing-card { border: 1px solid rgba(18,26,22,0.12); border-radius: 20px; padding: 22px; display: grid; gap: 8px; font-size: 15px; color: var(--ink-muted); }
.billing-card__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-950); color: rgba(242,245,240,0.65); }
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 60px) var(--pad-inline) 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 30px;
}
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.035em; color: var(--cream-text); margin-bottom: 12px; }
.footer-tagline { font-size: 15px; line-height: 1.65; }
.footer-col { display: grid; gap: 10px; font-size: 15px; align-content: start; }
.footer-col a { color: rgba(242,245,240,0.65); }
.footer-heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px var(--pad-inline) 104px;
  border-top: 1px solid rgba(242,245,240,0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,245,240,0.45);
}

/* ---------- whatsapp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  min-height: 56px;
  box-shadow: 0 22px 44px -18px rgba(18,26,22,0.7);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.whatsapp-fab:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 30px 54px -18px rgba(18,26,22,0.75); }
