/* =====================================================
   SynReh — style.css  (Linen & Clay theme)
   ===================================================== */

/* ── Self-hosted fonts (OFL 1.1 licence) ── */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/eb-garamond-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/eb-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/eb-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/eb-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #EBE4D8;
  color: #2C241E;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --clay:    #9B5A3C;
  --linen:   #EBE4D8;
  --dark:    #2C241E;
  --off:     #F2EDE4;
  --mid:     #E0D7C8;
  --accent:  #C17A58;
  --max-w:   1120px;
}

/* ── HEADER ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(235, 228, 216, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(44, 36, 30, .1);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  margin-left: .6rem;
  line-height: 1;
}
.logo-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .02em;
  line-height: 1;
}
.logo-name span {
  color: var(--clay);
}

#main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
#main-nav a {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(44, 36, 30, .45);
  padding: .4rem .9rem;
  border-radius: 6px;
  transition: color .2s;
  letter-spacing: .02em;
}
#main-nav a:hover,
#main-nav a.active { color: var(--clay); }

.btn-nav {
  background: var(--clay);
  color: var(--off);
  font-size: .78rem;
  font-weight: 600;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: #864e34; transform: translateY(-1px); }

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-shrink: 0;
}
#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
#hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SHARED BUTTONS ──────────────────────────────────── */
.btn-clay {
  display: inline-block;
  background: var(--clay);
  color: var(--off);
  font-size: .88rem;
  font-weight: 600;
  padding: .9rem 2rem;
  border-radius: 50px;
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.btn-clay:hover {
  background: #864e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 90, 60, .25);
}
.btn-clay-out {
  display: inline-block;
  border: 1.5px solid rgba(155, 90, 60, .3);
  color: var(--clay);
  font-size: .88rem;
  font-weight: 500;
  padding: .9rem 2rem;
  border-radius: 50px;
  transition: border-color .2s, background .2s;
}
.btn-clay-out:hover { border-color: var(--clay); background: rgba(155, 90, 60, .04); }

/* ── HERO ────────────────────────────────────────────── */
.hero-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-super {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.hero-wrap h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-wrap h1 em { font-style: italic; color: var(--clay); }
.hero-p {
  font-size: .98rem;
  font-weight: 300;
  color: rgba(44, 36, 30, .55);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.5rem;
  border-left: 2px solid rgba(155, 90, 60, .25);
  padding-left: 1rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Price card */
.craft-card {
  background: var(--off);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(44, 36, 30, .08);
  box-shadow: 8px 8px 0 rgba(155, 90, 60, .08);
}
.cc-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(44, 36, 30, .06);
}
.cc-row:last-of-type { border-bottom: none; }
.cc-name { font-size: .9rem; font-weight: 400; color: rgba(44, 36, 30, .7); }
.cc-price {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
}
.cc-price.featured { color: var(--clay); font-size: 1.2rem; font-weight: 500; }
.cc-cta {
  display: block;
  text-align: center;
  background: var(--clay);
  color: var(--off);
  font-size: .85rem;
  font-weight: 600;
  padding: .9rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  transition: background .2s;
}
.cc-cta:hover { background: #864e34; }

/* Hero card — feature items */
.cc-feat-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44, 36, 30, .06);
}
.cc-feat-item:last-of-type { border-bottom: none; margin-bottom: .5rem; }
.cc-feat-icon { flex-shrink: 0; color: var(--clay); margin-top: .1rem; }
.cc-feat-name { font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: .25rem; }
.cc-feat-desc { font-size: .82rem; font-weight: 300; color: rgba(44, 36, 30, .55); line-height: 1.65; }

/* ── O MNIE ──────────────────────────────────────────── */
.o-mnie-section {
  background: var(--off);
  border-top: 1px solid rgba(44, 36, 30, .07);
  padding: 6rem 2rem;
}
.om-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Photo */
.om-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off);
  box-shadow: 8px 8px 0 rgba(155, 90, 60, .12);
}
.om-credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.om-cred-item {
  flex: 1;
  background: var(--mid);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(44, 36, 30, .07);
}
.om-cred-n {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  color: var(--clay);
  line-height: 1;
  font-style: italic;
}
.om-cred-l {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(44, 36, 30, .45);
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* About text */
.om-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(44, 36, 30, .75);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.om-text {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(44, 36, 30, .55);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}
.om-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.om-tags li {
  background: rgba(155, 90, 60, .08);
  color: var(--clay);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(155, 90, 60, .15);
}

/* ── SHARED SECTION HELPERS ──────────────────────────── */
.sec { padding: 6rem 0; }
.sec-in { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.stag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.sh {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: .5rem;
}
.sh em { font-style: italic; }
.sp {
  font-size: .93rem;
  font-weight: 300;
  color: rgba(44, 36, 30, .5);
  line-height: 1.85;
  max-width: 440px;
}

/* ── WAVE BAND (Fala) ────────────────────────────────── */
.wave-band {
  background: var(--dark);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wave-band::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80px;
  background: var(--off);
  border-radius: 0 0 60% 60%;
}
.wave-band::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80px;
  background: var(--linen);
  border-radius: 60% 60% 0 0;
}
.wb-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.wb-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.wb-card {
  background: rgba(235, 228, 216, .06);
  border: 1px solid rgba(235, 228, 216, .12);
  border-radius: 16px;
  padding: 2rem;
}
.wb-card-icon { color: var(--accent); margin-bottom: 1rem; }
.wb-card-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  color: var(--linen);
  margin-bottom: .5rem;
  font-style: italic;
  font-weight: 400;
}
.wb-card-desc {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(235, 228, 216, .55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.wb-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.wb-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--linen);
  line-height: 1;
  margin-bottom: .75rem;
  font-style: italic;
  font-weight: 400;
}
.btn-linen {
  display: inline-block;
  background: var(--linen);
  color: var(--dark);
  font-size: .88rem;
  font-weight: 600;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}
.btn-linen:hover { background: var(--off); transform: translateY(-2px); }

/* ── SERVICES GRID ───────────────────────────────────── */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(44, 36, 30, .07);
  margin-top: 3rem;
  border: 1px solid rgba(44, 36, 30, .07);
  border-radius: 4px;
  overflow: hidden;
}
.sl-item {
  background: var(--off);
  padding: 2rem;
  transition: background .2s;
}
.sl-item:hover { background: var(--linen); }
.sl-feat { background: var(--clay); }
.sl-feat:hover { background: #864e34; }
.sl-n {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  color: rgba(44, 36, 30, .08);
  line-height: 1;
  margin-bottom: .5rem;
  font-style: italic;
}
.sl-feat .sl-n { color: rgba(235, 228, 216, .1); }
.sl-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: .15rem;
}
.sl-feat .sl-title { color: var(--linen); }
.sl-sub {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(155, 90, 60, .6);
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.sl-feat .sl-sub { color: rgba(235, 228, 216, .55); }
.sl-desc {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(44, 36, 30, .55);
  line-height: 1.75;
}
.sl-feat .sl-desc { color: rgba(235, 228, 216, .7); }
.sl-price {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  color: var(--clay);
  margin-top: .85rem;
}
.sl-feat .sl-price { color: rgba(235, 228, 216, .85); }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-sec { background: var(--mid); }
.pt { max-width: 700px; margin: 2.5rem auto 0; }
.pt-r {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44, 36, 30, .07);
}
.pt-r.hl {
  background: rgba(155, 90, 60, .07);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin: 0 -1.25rem;
  border: 1px solid rgba(155, 90, 60, .15);
  border-bottom: 1px solid rgba(155, 90, 60, .15);
}
.pt-n { font-size: .9rem; font-weight: 500; color: var(--dark); }
.pt-n.clay { color: var(--clay); }
.pt-note { font-size: .72rem; font-weight: 300; color: rgba(44, 36, 30, .35); margin-top: .1rem; }
.pt-t { font-size: .72rem; color: rgba(44, 36, 30, .35); white-space: nowrap; letter-spacing: .04em; }
.pt-p {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  white-space: nowrap;
  color: var(--dark);
}
.pt-r.hl .pt-p { color: var(--clay); font-size: 1.4rem; }
.pt-big { font-size: 1.4rem !important; color: var(--clay) !important; }
.pt-foot {
  font-size: .75rem;
  font-weight: 300;
  color: rgba(44, 36, 30, .35);
  font-style: italic;
  margin-top: 1.75rem;
}

/* ── CONTACT ─────────────────────────────────────────── */
.ct { padding: 6rem 0; }
.ct-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}
.ct-in {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ct-left .sh { margin-bottom: 1rem; }
.ct-left .sp { margin-bottom: 2rem; }
.cp {
  background: var(--off);
  border-radius: 12px;
  border: 1px solid rgba(44, 36, 30, .07);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.cp-ic { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.cp-l {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(155, 90, 60, .5);
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.cp-v { font-size: .92rem; font-weight: 500; color: var(--dark); }
.cp-v a { color: var(--clay); }
.cp-v a:hover { text-decoration: underline; }
.cta-big {
  display: block;
  text-align: center;
  background: var(--clay);
  color: var(--off);
  font-size: .92rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 1rem;
  margin-top: 1.5rem;
  letter-spacing: .04em;
  transition: background .2s, transform .2s;
}
.cta-big:hover { background: #864e34; transform: translateY(-2px); }

.ct-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(155, 90, 60, .1);
}
.map-consent {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  background: var(--off);
  border: 2px dashed rgba(155, 90, 60, .2);
  box-shadow: 8px 8px 0 rgba(155, 90, 60, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  cursor: pointer;
  color: rgba(44, 36, 30, .4);
  transition: background .2s, border-color .2s;
  text-align: center;
  padding: 2rem;
}
.map-consent:hover { background: var(--mid); border-color: rgba(155, 90, 60, .4); }
.map-consent-title { font-size: 1rem; font-weight: 600; color: var(--dark); margin: .4rem 0 0; }
.map-consent-note { font-size: .75rem; line-height: 1.6; color: rgba(44, 36, 30, .45); }
.map-consent-btn {
  margin-top: .5rem;
  background: var(--clay);
  color: var(--off);
  font-size: .8rem;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-sec { background: var(--off); border-top: 1px solid rgba(44, 36, 30, .07); }
.faq-lead { margin-bottom: 3rem; }
.faq-group { margin-bottom: 2.5rem; max-width: 740px; margin-left: auto; margin-right: auto; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.faq-item {
  border-bottom: 1px solid rgba(44, 36, 30, .08);
}
.faq-item:first-of-type { border-top: 1px solid rgba(44, 36, 30, .08); }
.faq-item summary {
  list-style: none;
  padding: 1.1rem 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B5A3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(44, 36, 30, .6);
  line-height: 1.85;
  padding-bottom: 1.25rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 2.5rem 2rem;
}
.footer-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.fl-nav { display: flex; flex-wrap: wrap; }
.fl-nav a {
  font-size: .78rem;
  color: rgba(235, 228, 216, .35);
  padding: .3rem .75rem;
  transition: color .2s;
}
.fl-nav a:hover { color: var(--accent); }
.fl-copy { font-size: .72rem; color: rgba(235, 228, 216, .2); }

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .wb-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #hamburger { display: flex; }
  .btn-nav { display: none; }

  #main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(242, 237, 228, .98);
    backdrop-filter: blur(18px);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(44, 36, 30, .1);
    gap: .25rem;
    z-index: 100;
  }
  #main-nav.open { display: flex; }
  #main-nav a { padding: .7rem 1rem; font-size: .9rem; border-radius: 8px; }
  #main-nav a:hover { background: rgba(155, 90, 60, .06); }

  header { position: sticky; top: 0; }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem 3rem;
  }
  .craft-card { max-width: 480px; }

  .svc-list-grid { grid-template-columns: 1fr; }

  .ct-in { grid-template-columns: 1fr; }
  .ct-map { margin-top: 0; }
  .ct-map iframe { height: 280px; }

  .footer-in { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .pt-r { gap: 1rem; }
  .pt-r.hl { margin: 0 -.5rem; padding: 1rem .75rem; }

  /* Centre only heading elements on mobile, not card content */
  #uslugi .sec-in > .stag,
  #uslugi .sec-in > .sh,
  #uslugi .sec-in > .sp { text-align: center; margin-left: auto; margin-right: auto; }
  .ct-header { text-align: center; }
  .ct-header .sp { margin: 0 auto; }
}

.pricing-sec .sec-in { text-align: center; }
.pricing-sec .sp { margin: 0 auto; }

/* Centre section headings on all screen sizes */
#uslugi .sec-in > .stag,
#uslugi .sec-in > .sh,
#uslugi .sec-in > .sp { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 480px) {
  .hero-wrap h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .wb-title { font-size: clamp(1.8rem, 8vw, 3rem); }
}
