:root {
  --black: #020202;
  --gold: #b98934;
  --gold-soft: #d6bd82;
  --cream: #fbf8f4;
  --warm: #eadbc9;
  --ink: #111111;
  --muted: #5f5a54;
  --line: rgba(185, 137, 52, .2);
  --shadow: 0 18px 40px rgba(76, 50, 20, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
}

.nav {
  min-height: 118px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  width: 280px;
}

.logo img {
  width: 100%;
  height: auto;
  max-height: 94px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(28px, 3vw, 56px);
  color: #17120d;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .18s ease, transform .18s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-booking {
  min-height: 50px;
  min-width: 164px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(185, 137, 52, .18);
}

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

.socials a,
.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.socials a:hover,
.footer-socials a:hover {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.socials svg,
.footer-socials svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.social-facebook svg {
  width: 18px;
  height: 18px;
  transform: none;
}

.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(185, 137, 52, .75);
  background: rgba(255, 255, 255, .72);
  padding: 13px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(460px, 1.05fr);
  background: linear-gradient(90deg, #fff 0%, #fbf8f4 44%, #eadbc9 100%);
}

.hero-copy {
  align-self: center;
  padding: clamp(170px, 13vw, 210px) clamp(28px, 6vw, 94px) 66px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 670px;
  font-size: clamp(44px, 4.4vw, 66px);
}

.ornament {
  width: 248px;
  height: 1px;
  display: block;
  margin: 30px 0 26px;
  position: relative;
  background: linear-gradient(90deg, var(--gold), rgba(185, 137, 52, .14));
}

.ornament::after,
.section-title i::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: var(--gold);
  transform: rotate(45deg);
}

.ornament::after {
  position: absolute;
  top: -5px;
  left: 142px;
}

.lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-whatsapp {
  background: rgba(255,255,255,.45);
  color: #28795c;
  border-color: #7fb59b;
}

.btn-consultation {
  background: rgba(255,255,255,.58);
  color: var(--gold);
  border-color: rgba(185, 137, 52, .42);
}

.trust-row {
  max-width: 680px;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 13px;
  align-items: center;
}

.line-icon {
  grid-row: span 2;
  color: var(--gold);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.line-icon svg,
.benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row b {
  font-size: 13px;
  line-height: 1.25;
}

.trust-row small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-image {
  min-height: 620px;
  position: relative;
  background:
    linear-gradient(90deg, #fbf8f4 0, rgba(251, 248, 244, .86) 3%, rgba(251, 248, 244, 0) 14%),
    url("hero-atelier.png"),
    linear-gradient(135deg, #f8f1e8, #ead8c4);
  background-size: auto, cover, auto;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-signature {
  min-height: 70px;
  padding: 18px clamp(28px, 8vw, 160px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: #fbf8f4;
  color: var(--gold);
}

.hero-signature span {
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 137, 52, 0), rgba(185, 137, 52, .55));
}

.hero-signature span:last-child {
  background: linear-gradient(90deg, rgba(185, 137, 52, .55), rgba(185, 137, 52, 0));
}

.hero-signature p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.callback {
  margin-top: 28px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 28px 0 32px;
}

.callback-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.08;
}

.callback-copy p:not(.kicker) {
  max-width: 510px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.callback-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  width: min(100%, 620px);
  margin-left: auto;
  padding: 30px;
  background: rgba(255, 252, 248, .92);
  border: 1px solid rgba(185, 137, 52, .20);
  box-shadow: 0 22px 46px rgba(75, 48, 18, .08);
}

.callback-form label {
  display: grid;
  gap: 7px;
  color: #2b241d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(185, 137, 52, .22);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.spam-field {
  display: none !important;
}

.callback-form textarea {
  min-height: 92px;
  resize: vertical;
}

.full-field,
.contact-method,
.callback-consent,
.callback-form button {
  grid-column: 1 / -1;
}

.contact-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.contact-method legend {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 0;
  color: #2b241d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.contact-method label {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.contact-method input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}

.contact-method span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 8px;
  border: 1px solid rgba(185, 137, 52, .24);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.contact-method input[type="radio"]:checked + span {
  border-color: var(--gold);
  background: rgba(185, 137, 52, .12);
  color: var(--ink);
}

.contact-method input[type="radio"]:focus-visible + span {
  outline: 2px solid rgba(185, 137, 52, .35);
  outline-offset: 2px;
}

.callback-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.callback-form .callback-consent {
  text-transform: none;
  letter-spacing: 0;
}

.callback-consent span {
  text-transform: none;
  letter-spacing: 0;
}

.callback-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  min-height: auto;
  padding: 0;
  margin: 2px 0 0;
  border: 1.5px solid rgba(43, 36, 29, .42);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.callback-consent input[type="checkbox"]:checked {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px #fff;
}

.section {
  padding: 34px 0 20px;
  background: #fff;
}

.section-tight {
  padding-top: 18px;
}

.section-title {
  margin: 0 auto 26px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(26px, 2.2vw, 34px);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.section-title i {
  width: 108px;
  height: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
  background: rgba(185, 137, 52, .25);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  min-height: 296px;
  padding: 30px 20px 24px;
  text-align: center;
  background: #fbf8f4;
  border: 1px solid rgba(185, 137, 52, .14);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(185, 137, 52, .28);
  border-radius: 50%;
  color: var(--gold);
}

.service-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  min-height: 58px;
  font-size: 25px;
}

.service-card p {
  min-height: 70px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.result-card {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(184, 134, 49, .16);
  background: #f6eee6;
  box-shadow: 0 18px 44px rgba(66, 45, 24, .08);
}

.result-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
}

.result-label {
  position: absolute;
  bottom: 10px;
  padding: 6px 13px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .94);
  color: #221b15;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.result-label-before {
  left: 10px;
}

.result-label-after {
  right: 10px;
}

.center {
  margin-top: 22px;
  text-align: center;
}

.outline-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 1px solid rgba(185, 137, 52, .45);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.benefits {
  margin-top: 28px;
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
}

.benefits article {
  min-height: 152px;
  padding: 28px;
  background: #fbf8f4;
  border-right: 1px solid rgba(185, 137, 52, .16);
}

.benefits .benefit-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--gold);
}

.benefits h3 {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.benefits p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cta-panel {
  background: linear-gradient(135deg, #fbf5ee, #ead8c6) !important;
}

.cta-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.cta-panel .btn {
  margin-top: 18px;
  min-height: 44px;
}

.cta-callback {
  margin-top: 12px;
  min-height: 42px;
  width: 100%;
  background: rgba(255,255,255,.38);
}

.contact-location {
  margin-top: 42px;
  padding: 72px 0;
  background:
    linear-gradient(110deg, rgba(251,248,244,.98), rgba(239,222,203,.9)),
    linear-gradient(135deg, #fff, #eadbc9);
  border-top: 1px solid rgba(185, 137, 52, .14);
  border-bottom: 1px solid rgba(185, 137, 52, .14);
}

.contact-location-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, .78fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.contact-location-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 54px);
}

.google-rating {
  width: max-content;
  margin: 20px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(185, 137, 52, .22);
  color: var(--gold);
}

.google-rating strong {
  color: var(--ink);
  font-size: 16px;
}

.google-rating span {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: .08em;
}

.google-rating small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-location-copy > p:not(.kicker) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-card {
  padding: 24px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(185, 137, 52, .2);
  box-shadow: 0 22px 55px rgba(83, 56, 24, .11);
}

.contact-map-card {
  padding: 16px;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 320px;
  display: block;
  border: 0;
  filter: saturate(.82) contrast(.98);
}

.contact-card > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(185, 137, 52, .14);
}

.contact-card .map-caption {
  padding: 18px 8px 4px;
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #2b241d;
  font-size: 16px;
  line-height: 1.55;
}

.contact-card a:hover {
  color: var(--gold);
}

footer {
  background: #f7f1ea;
  border-top: 1px solid rgba(185, 137, 52, .16);
}

.foot {
  padding: 34px 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.15fr auto;
  gap: 32px;
}

.footer-logo img {
  width: min(255px, 100%);
  max-height: 92px;
}

footer h3 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
}

footer p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-line {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.footer-contact-line span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-whatsapp-line a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #26785e;
  font-weight: 700;
}

.footer-whatsapp-line svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: currentColor;
}

.copy {
  margin: 0;
  padding: 0 0 22px;
  text-align: center;
}

.copy a {
  color: var(--gold);
  font-weight: 700;
}

.copy a:hover {
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 50;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .35);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: currentColor;
}

.floating-booksy {
  position: fixed;
  right: 100px;
  bottom: 31px;
  z-index: 50;
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 30px rgba(185, 137, 52, .28);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}

.floating-booksy svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 24px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.94), rgba(251, 248, 244, .88)),
    url("hero-atelier.png");
  background-size: cover;
  background-position: center;
}

.form-result > div {
  width: min(620px, 100%);
  padding: 40px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(185, 137, 52, .2);
  box-shadow: var(--shadow);
}

.form-result h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.form-result p:not(.kicker) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.subpage-main {
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 54%, #fff 100%);
}

.subpage-hero {
  padding: 178px 0 70px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .95), rgba(251, 248, 244, .84)),
    url("hero-atelier.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(185, 137, 52, .14);
}

.subpage-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 78px);
}

.subpage-hero .lead {
  max-width: 760px;
}

.subpage-hero-visual {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .96), rgba(251, 248, 244, .9));
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .72fr);
  gap: 56px;
  align-items: center;
}

.subpage-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(185, 137, 52, .18);
  background: #f6eee6;
  box-shadow: var(--shadow);
}

.subpage-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-section {
  padding: 72px 0;
}

.page-section-soft {
  background: #fbf8f4;
  border-top: 1px solid rgba(185, 137, 52, .12);
  border-bottom: 1px solid rgba(185, 137, 52, .12);
}

.intro-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: start;
}

.rich-text p,
.rich-text li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.rich-text p {
  margin: 0 0 18px;
}

.rich-text ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.legal-text {
  max-width: 920px;
}

.legal-text h2 {
  margin: 34px 0 12px;
  font-size: clamp(26px, 2.5vw, 38px);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-text a {
  color: var(--gold);
  font-weight: 700;
}

.legal-text a:hover {
  text-decoration: underline;
}

.seo-card,
.price-card,
.about-card {
  padding: 30px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(185, 137, 52, .16);
  box-shadow: var(--shadow);
}

.seo-card h2,
.price-card h2,
.about-card h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 44px);
}

.treatment-list {
  display: grid;
  gap: 24px;
}

.treatment-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 230px;
  align-items: start;
  gap: 24px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(185, 137, 52, .14);
  box-shadow: var(--shadow);
}

.treatment-card .service-icon {
  margin: 0;
}

.treatment-card h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.treatment-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.treatment-points {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.treatment-points strong {
  color: var(--ink);
}

.treatment-media {
  margin: 0;
  align-self: stretch;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(185, 137, 52, .14);
  background: var(--cream);
}

.treatment-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.treatment-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(185, 137, 52, .22);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

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

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(185, 137, 52, .14);
  color: var(--muted);
  line-height: 1.5;
}

.price-list strong {
  color: var(--ink);
  font-weight: 800;
}

.price-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.note-box {
  margin-top: 28px;
  padding: 22px 26px;
  background: rgba(185, 137, 52, .08);
  border: 1px solid rgba(185, 137, 52, .18);
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  border: 1px solid rgba(185, 137, 52, .16);
  background: #f6eee6;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.faq-section {
  max-width: 1120px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-grid article {
  padding: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(185, 137, 52, .15);
  box-shadow: var(--shadow);
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.1vw, 30px);
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.cta-strip {
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(100deg, #fbf8f4, #eadbc9);
  border: 1px solid rgba(185, 137, 52, .16);
}

.cta-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 46px);
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.nav-current {
  color: var(--gold);
}

@media (max-width: 1160px) {
  .nav {
    grid-template-columns: 210px minmax(0, 1fr) auto;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 17px;
    font-size: 12px;
  }

  .nav-booking {
    min-width: 145px;
    padding-inline: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 36px, 1240px);
  }

  .nav {
    min-height: 88px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .logo img {
    width: 210px;
    max-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .nav-booking {
    display: none;
  }

  .menu-toggle:checked ~ .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    padding: 16px 24px 22px;
    background: rgba(255, 250, 244, .98);
    border-top: 1px solid rgba(185,137,52,.22);
    box-shadow: 0 18px 35px rgba(81, 55, 25, .12);
  }

  .menu-toggle:checked ~ .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(185,137,52,.14);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 140px;
  }

  .hero-image {
    min-height: 420px;
  }

  .hero-signature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-signature span {
    display: none;
  }

  .trust-row,
  .results-grid,
  .benefits,
  .callback,
  .intro-grid,
  .about-grid,
  .price-grid,
  .gallery-grid,
  .faq-grid,
  .cta-strip,
  .contact-location-inner,
  .foot {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding-top: 130px;
  }

  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .subpage-hero-photo img {
    aspect-ratio: 1.18 / 1;
  }

  .treatment-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .treatment-media {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .treatment-media img {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .callback {
    margin-top: 26px;
    gap: 24px;
  }

  .callback-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .contact-location {
    margin-top: 28px;
    padding: 48px 0;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-card > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-map-card iframe {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 40px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .page-section {
    padding: 48px 0;
  }

  .seo-card,
  .price-card,
  .about-card,
  .treatment-card,
  .cta-strip {
    padding: 24px;
  }

  .treatment-card {
    grid-template-columns: 1fr;
  }

  .treatment-card .service-icon {
    width: 74px;
    height: 74px;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .callback-form {
    padding: 18px;
  }

  .callback-form input,
  .callback-form textarea {
    font-size: 15px;
  }

  .callback-consent {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    font-size: 11px;
    line-height: 1.45;
  }

  .callback-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    margin-top: 1px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }

  .floating-booksy {
    right: 16px;
    bottom: 82px;
    height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

  .floating-booksy svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 164px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(197, 145, 52, 0.24);
  box-shadow: 0 22px 60px rgba(37, 27, 15, 0.15);
  pointer-events: auto;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner__copy a {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 44px;
  border: 1px solid var(--gold);
  padding: 0 18px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__button--ghost {
  background: transparent;
  color: var(--gold-dark);
}

@media (max-width: 620px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner__copy p {
    font-size: 13px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-banner__button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 11px;
  }
}
