:root {
  --bg: #f5efe9;
  --bg-strong: #efe2d7;
  --surface: #fffaf6;
  --surface-strong: #f8f1ec;
  --panel: #f2e7df;
  --text: #2e221f;
  --muted: #5d4a45;
  --line: #e7d5c9;
  --accent: #b78369;
  --accent-strong: #6f4d43;
  --accent-soft: #f5e7de;
  --gold: #c8a57f;
  --sage: #c2cdbb;
  --rose: #e6c5b9;
  --deep: #2c201d;
  --shadow: 0 30px 60px rgba(85, 62, 55, 0.12);
  --shadow-soft: 0 18px 32px rgba(77, 57, 52, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

.about-photo-frame {
  width: min(440px, 100%);
  margin: 0;
  padding: 0.65rem;
  border: 1px solid rgba(111, 77, 67, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.review-stars {
  margin: 0 0 0.8rem;
  color: #d98a27;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.testimonial-grid article small {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.about-copy h1 {
  margin-top: 0;
}

.section-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(184, 131, 105, 0.1);
  border: 1px solid rgba(111, 77, 67, 0.08);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificates-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.certificate-item {
  margin: 0;
  padding: 0.7rem 0.7rem 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(111, 77, 67, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(247,240,236,0.96) 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: zoom-in;
}

.certificate-item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(111, 77, 67, 0.18);
  box-shadow: 0 24px 40px rgba(96, 69, 62, 0.1);
}

.certificate-item img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #fff 0%, #f7f0ec 100%);
  border-radius: 18px;
  padding: 0.4rem;
}

.certificate-item figcaption {
  display: block;
  padding: 0.8rem 0.4rem 0.9rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.certificates-more {
  margin-top: 1.15rem;
  border: 1px solid rgba(111, 77, 67, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.8rem 1rem 1rem;
}

.certificates-more summary {
  cursor: pointer;
  list-style: none;
  color: var(--accent-strong);
  font-weight: 800;
  padding: 0.35rem 0.1rem;
}

.certificates-more summary::-webkit-details-marker {
  display: none;
}

.certificates-gallery--more {
  margin-top: 1rem;
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(29, 21, 20, 0.78);
  backdrop-filter: blur(10px);
}

.certificate-lightbox.is-open {
  display: flex;
}

.certificate-lightbox-inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  width: auto;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.certificate-lightbox-inner img {
  display: block;
  width: auto;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  background: #fff;
}

.certificate-lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(42, 31, 29, 0.82);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .certificates-gallery {
    grid-template-columns: 1fr;
  }

  .about-photo-frame {
    width: min(440px, 100%);
  }

  .certificate-item img {
    height: 300px;
  }
}
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at top right, rgba(184, 131, 105, 0.12) 0%, rgba(184, 131, 105, 0) 58%),
    radial-gradient(760px 520px at bottom left, rgba(200, 165, 127, 0.12) 0%, rgba(200, 165, 127, 0) 60%),
    linear-gradient(180deg, #faf5f1 0%, var(--bg) 100%);
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.82);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-image {
  display: block;
  width: 180px;
  height: 84px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 180px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(111, 77, 67, 0.18);
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--text);
}

.logo small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-menu {
  display: flex;
  gap: 0.45rem;
  margin-left: auto;
}

.site-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-menu a:hover,
.site-menu a.active {
  background: linear-gradient(135deg, rgba(184, 131, 105, 0.12), rgba(200, 165, 127, 0.15));
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.site-menu a.active {
  box-shadow: inset 0 0 0 1px rgba(115, 76, 75, 0.09);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.menu-icons {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.35rem;
  padding-left: 0.55rem;
  border-left: 1px solid var(--line);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--accent-strong);
  transition: transform 0.2s ease, background 0.2s ease;
}

.icon-link:hover {
  background: linear-gradient(135deg, rgba(184, 131, 105, 0.12), rgba(200, 165, 127, 0.15));
  transform: translateY(-1px);
}

.insta-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(246,236,229,0.94) 100%);
  border: 1px solid rgba(111, 77, 67, 0.08);
  border-radius: 26px;
  padding: 2.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.insta-cta p {
  max-width: 52ch;
  margin: 0 auto 1.4rem;
  color: var(--muted);
}

main {
  padding: 2.2rem 0 3.5rem;
}

.hero {
  position: relative;
  border: 1px solid rgba(96, 72, 66, 0.08);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,243,238,0.96) 32%, rgba(244,233,225,0.98) 100%);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 3vw, 2.6rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -120px;
  background: radial-gradient(circle, rgba(215, 179, 141, 0.16), rgba(215, 179, 141, 0));
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(211, 140, 125, 0.12), rgba(211, 140, 125, 0));
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.38fr 0.78fr;
  gap: 1.2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.73rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.12;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  max-width: 11ch;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-points {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
  color: #432f2b;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 4px rgba(191, 125, 124, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-trustbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 77, 67, 0.08);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(96, 69, 62, 0.05);
}

.btn,
.btn-inline,
.copy-address-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: #fffdfb;
  padding: 0.96rem 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 30px rgba(111, 77, 67, 0.16);
}

.btn:hover,
.btn-inline:hover,
.copy-address-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

@keyframes booksyPulse {
  0%,
  100% {
    box-shadow: 0 18px 30px rgba(111, 77, 67, 0.16);
  }
  50% {
    box-shadow: 0 18px 32px rgba(111, 77, 67, 0.22), 0 0 0 8px rgba(184, 131, 105, 0.08);
  }
}

.booksy-cta {
  animation: booksyPulse 3.2s ease-in-out infinite;
}

.booksy-cta:hover {
  animation-play-state: paused;
}

.btn-light {
  background: rgba(255,255,255,0.7);
  color: var(--accent-strong);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-inline {
  padding: 0.8rem 1.15rem;
  color: var(--accent-strong);
  font-weight: 800;
  border: 1px solid rgba(111, 77, 67, 0.12);
  background: rgba(255,255,255,0.48);
}

.reply-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(111, 77, 67, 0.08);
  border-radius: 26px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.visual-badges {
  position: absolute;
  inset: 1rem 1rem auto 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.premium-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(94, 66, 62, 0.08);
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.premium-pill.secondary {
  color: var(--text);
  background: rgba(255, 245, 240, 0.82);
}

.card-photo {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(94, 66, 62, 0.12);
  background: var(--panel);
}

.mini-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(245,231,223,0.9));
  border: 1px solid rgba(111, 77, 67, 0.08);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  margin-top: 0.9rem;
  color: var(--accent-strong);
  box-shadow: 0 14px 26px rgba(111, 77, 67, 0.08);
}

.mini-card strong {
  font-size: 1.06rem;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.metrics-strip article,
.simple-cards article,
.price-cards article,
.flow-grid article,
.testimonial-grid article,
.contact-card,
.map-card,
.info-card,
.compare-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(111, 77, 67, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 28px rgba(96, 69, 62, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.metrics-strip article:hover,
.simple-cards article:hover,
.price-cards article:hover,
.flow-grid article:hover,
.testimonial-grid article:hover,
.contact-card:hover,
.map-card:hover,
.info-card:hover,
.compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 77, 67, 0.16);
  box-shadow: 0 24px 40px rgba(96, 69, 62, 0.1);
}

.metrics-strip article {
  padding: 1.2rem 1rem;
  text-align: center;
}

.metric-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.simple-section {
  margin-top: 4rem;
}

.simple-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
}

.simple-cards,
.why-us-grid,
.price-cards,
.flow-grid,
.testimonial-grid,
.service-list {
  display: grid;
  gap: 1rem;
}

.simple-cards,
.price-cards,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-cards article,
.price-cards article,
.testimonial-grid article,
.info-card {
  padding: 1.35rem;
}

.simple-cards article h3,
.price-cards h3,
.why-us-grid h3,
.flow-grid h3,
.info-card h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.38rem;
}

.simple-cards article p,
.price-cards small,
.why-us-grid p,
.flow-grid p,
.testimonial-grid p,
.info-card li,
.story-section p,
.contact-card p,
.contact-card li,
.map-card p {
  color: var(--muted);
}

.why-us-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-us-grid article {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(112, 88, 84, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(217,183,150,0.16));
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.section-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
}

.price-cards article {
  text-align: center;
}

.price {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  color: var(--accent-strong);
  font-weight: 700;
}

.story-section h2 {
  margin-bottom: 0.7rem;
}

.story-section p {
  max-width: 70ch;
  margin-bottom: 0.8rem;
}

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid article {
  padding: 1.4rem 1.15rem;
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), rgba(217,183,150,0.22));
  color: var(--accent-strong);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.quick-contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.quick-contact-strip article {
  background: linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(246,236,229,0.94) 100%);
  border: 1px solid rgba(111, 77, 67, 0.08);
  border-radius: 26px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.quick-contact-strip h3 {
  margin-top: 0;
}

.testimonial-grid {
  margin-top: 1rem;
}

.testimonial-grid article {
  padding: 1.2rem 1.1rem;
}

.testimonial-grid strong {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--accent-strong);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.site-footer p {
  margin: 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(112, 88, 84, 0.12);
  padding-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 77, 67, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.footer-links a:hover {
  color: var(--accent-strong);
  text-decoration: none;
}

.footer-links a:visited,
.contact-links a:visited {
  color: inherit !important;
}

.floating-booksy {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: #fffdfb;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(111, 77, 67, 0.22);
}

.floating-booksy::before {
  content: "✦";
  font-size: 0.95rem;
}

.floating-booksy:hover {
  transform: translateY(-2px);
}

.floating-booksy.booksy-cta {
  animation-duration: 2.8s;
}

.live-effect-grid {
  margin-top: 1rem;
}

.contact-hero-section,
.contact-grid,
.contact-card,
.map-card,
.info-card {
  position: relative;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-hero-section h1 {
  margin-bottom: 0.85rem;
}

.contact-hero-section p {
  max-width: 69ch;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--text);
  font-weight: 800;
}

.status-pill.is-open {
  background: #dff4e7;
  color: #184c2e;
}

.status-pill.is-closed {
  background: #f6e0d6;
  color: #7a4328;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card,
.map-card,
.info-card {
  padding: 1.5rem;
}

.contact-card h2,
.map-card h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.contact-links a,
.copy-address-btn {
  font-weight: 700;
  color: var(--accent-strong);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none !important;
}

.copy-feedback {
  min-height: 1.3em;
  margin: 0.8rem 0 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-wow-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(245, 223, 225, 0.35));
}

.wow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.wow-chips span {
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-flow-list {
  margin: 1rem 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.faq-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.74), rgba(245, 232, 222, 0.45));
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-list details {
  border: 1px solid rgba(111, 77, 67, 0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.64);
  padding: 0.8rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--accent-strong);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.map-frame {
  margin-top: 0.8rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(245, 223, 225, 0.4);
  color: var(--accent-strong);
}

tr:last-child td {
  border-bottom: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

.is-tilting {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }

  .booksy-cta,
  .floating-booksy {
    animation: none !important;
  }
}

@media (max-width: 860px) {
  .site-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .menu-icons {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-layout,
  .metrics-strip,
  .simple-cards,
  .why-us-grid,
  .price-cards,
  .flow-grid,
  .testimonial-grid,
  .quick-contact-strip,
  .contact-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    display: grid;
  }

  .section-headline,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .brand-image {
    width: 155px;
    height: 76px;
    flex-basis: 155px;
  }

  .hero {
    padding: 1rem;
  }

  .card-photo {
    height: 300px;
  }

  .hero-actions,
  .contact-cta-row,
  .contact-trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-booksy {
    display: none;
  }
}
