/* ===================== LA KAZUKA Beauty Clinic =====================
   Child theme CSS for WordPress + Blocksy + Elementor.
   All colour tokens, typography and components in one file.
   Loaded by functions.php after the parent Blocksy stylesheet.
   ===================================================================*/

/* ----------------------------------------------------------------
   Elementor canvas reset — remove default section padding that
   Elementor Free adds so our .section class controls all spacing.
----------------------------------------------------------------- */
.elementor-section.elementor-section-boxed > .elementor-container { max-width: 100%; }
.elementor-section { padding-top: 0 !important; padding-bottom: 0 !important; }
.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-column-wrap { padding: 0; }
.elementor-widget-html { width: 100%; }

/* ----------------------------------------------------------------
   Override Blocksy's base typography with our brand stack
----------------------------------------------------------------- */

:root {
  /* Palette */
  --cream-50: #F6EFE6;
  --cream-100: #ECE0D1;
  --cream-200: #E2D2BF;
  --cream-300: #D6C2AB;

  --wine-900: #3D1B22;
  --wine-800: #4F232B;
  --wine-700: #5A2C32;
  --wine-600: #6D3942;
  --wine-500: #804854;
  --wine-200: #B98890;

  --rose-300: #D9B2B8;   /* soft dusty pink — from promocja */
  --rose-200: #E6C6CB;
  --rose-100: #F0DADE;

  --ink:      #2A171B;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", "Tenor Sans", Georgia, serif;
  --font-body:    "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spacing */
  --max: 1320px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(90px, 11vw, 160px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body,
.elementor-page {
  font-family: var(--font-body) !important;
  background: var(--cream-50) !important;
  color: var(--wine-900) !important;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
/* Blocksy sets h1-h6 with its own font — override */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
}

::selection { background: var(--wine-700); color: var(--cream-50); }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-700);
  font-weight: 500;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; color: var(--wine-900); margin: 0; letter-spacing: 0.005em; }
h1 { font-size: clamp(56px, 9.5vw, 140px); line-height: 0.96; letter-spacing: -0.01em; }
h2 { font-size: clamp(40px, 5.8vw, 88px); line-height: 1.02; letter-spacing: -0.005em; }
h3 { font-size: clamp(28px, 3.2vw, 48px); line-height: 1.05; }
h4 { font-size: clamp(20px, 2vw, 28px); line-height: 1.2; }
p  { margin: 0; }
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--wine-800);
  max-width: 56ch;
}

.italic { font-style: italic; }

/* ===================== LAYOUT ===================== */

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; position: relative; }
.section--cream-100 { background: var(--cream-100); }
.section--wine { background: var(--wine-700); color: var(--cream-50); }
.section--wine h2, .section--wine h3, .section--wine .eyebrow { color: var(--cream-100); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
@media (max-width: 800px){ .section-head { grid-template-columns: 1fr; gap: 24px; } }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 44, 50, 0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nav__logo svg { width: 32px; height: 32px; margin-bottom: 4px; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--wine-700);
}
.nav__logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine-600);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--wine-800);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--wine-900); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--wine-700);
  transition: right 0.3s ease;
}
.nav__links a:hover::after { right: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--wine-700);
  color: var(--cream-50);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--wine-900); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--wine-800);
  border: 1px solid var(--wine-700);
}
.btn--ghost:hover { background: var(--wine-700); color: var(--cream-50); }
.btn--light {
  background: var(--cream-50);
  color: var(--wine-700);
}
.btn--light:hover { background: var(--cream-100); }
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

@media (max-width: 960px) {
  .nav__links { display: none; }
}

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

.hero {
  padding: 64px 0 100px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: end;
}
.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__heading h1 {
  font-style: normal;
}
.hero__heading h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine-700);
}
.hero__sub {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}
.hero__sub .lead { max-width: 38ch; }
.hero__ctas { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-200);
  border-radius: 4px;
  overflow: hidden;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,27,34,0.35), transparent 60%);
  pointer-events: none;
}
.hero__media-meta {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  color: var(--cream-50);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__marquee {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid rgba(90, 44, 50, 0.18);
  border-bottom: 1px solid rgba(90, 44, 50, 0.18);
  background: var(--cream-100);
  padding: 14px 0;
}
.hero__marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--wine-700);
  white-space: nowrap;
}
.hero__marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.hero__marquee-track .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--wine-700); display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { aspect-ratio: 3/4; }
}

/* ===================== PROBLEMY (zabiegi na dany problem) ===================== */

.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .problems { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problems { grid-template-columns: 1fr; } }

.problem-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-200);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.problem-card:hover { transform: translateY(-4px); }
.problem-card image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  --slot-bg: var(--cream-200);
}
.problem-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,27,34,0.0) 30%, rgba(61,27,34,0.7) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}
.problem-card:hover .problem-card__overlay {
  background: linear-gradient(180deg, rgba(61,27,34,0.15) 0%, rgba(61,27,34,0.85) 100%);
}
.problem-card__num {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream-100);
  z-index: 2;
  mix-blend-mode: difference;
}
.problem-card__title {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  color: var(--cream-50);
}
.problem-card__title h3 {
  color: var(--cream-50);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  margin: 0;
}
.problem-card__arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(246, 239, 230, 0.9);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.problem-card:hover .problem-card__arrow { transform: rotate(-45deg); background: var(--cream-50); }
.problem-card__arrow svg { width: 14px; height: 14px; }

/* ===================== MODAL ===================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(61,27,34,0.55);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.modal__card {
  position: relative;
  background: var(--cream-50);
  border-radius: 6px;
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  animation: rise 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (max-width: 760px) {
  .modal__card { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }

.modal__media {
  background: var(--cream-200);
  position: relative;
  min-height: 320px;
}
.modal__media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal__media-label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--cream-50);
  background: rgba(61,27,34,0.65);
  padding: 6px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.modal__body {
  padding: 44px 44px 36px;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(246, 239, 230, 0.9);
  display: grid; place-items: center;
  z-index: 3;
}
.modal__close:hover { background: var(--cream-50); }
.modal__body h3 { margin-bottom: 28px; }
.modal__group { margin-bottom: 28px; }
.modal__group-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-600);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.modal__group-head::after {
  content: ''; flex: 1; height: 1px; background: var(--cream-200);
}
.modal__list { list-style: none; padding: 0; margin: 0; }
.modal__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-100);
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 16px;
}
.modal__list li:last-child { border-bottom: 0; }
.modal__list .price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--wine-700);
  white-space: nowrap;
}
.modal__list--bullets li { color: var(--wine-800); }
.modal__list--bullets li::before {
  content: '—';
  margin-right: 10px;
  color: var(--wine-500);
}

/* ===================== CENNIK ===================== */

.cennik {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .cennik { grid-template-columns: 1fr; gap: 32px; }
}
.cennik__nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 8px;
}
.cennik__nav-btn {
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-700);
  border-radius: 4px;
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
}
.cennik__nav-btn:hover {
  background: var(--cream-100);
  padding-left: 20px;
}
.cennik__nav-btn.active {
  background: var(--wine-700);
  color: var(--cream-50);
  border-left-color: var(--rose-300);
}

@media (max-width: 900px) {
  .cennik__nav {
    position: relative;
    top: 0;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    padding-bottom: 6px;
  }
  .cennik__nav-btn { white-space: nowrap; }
}

.cennik__panel { display: none; }
.cennik__panel.active { display: block; animation: fadeIn 0.4s ease; }
.cennik__category-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--wine-900);
}
.cennik__category-title em { font-style: italic; color: var(--wine-700); }
.cennik__category-sub {
  color: var(--wine-700);
  margin-bottom: 32px;
  max-width: 56ch;
}
.cennik__rows { display: flex; flex-direction: column; }
.cennik__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-200);
  align-items: baseline;
  transition: padding-left 0.2s ease;
}
.cennik__row:hover { padding-left: 8px; background: linear-gradient(90deg, var(--cream-100), transparent 30%); }
.cennik__row-name {
  font-size: 16px;
  color: var(--wine-900);
  line-height: 1.4;
}
.cennik__row-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wine-700);
  white-space: nowrap;
  font-feature-settings: "lnum";
}
.cennik__row-price.variable {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cennik__group-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-500);
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--wine-200);
  margin-bottom: 4px;
}
.cennik__row-name.free { color: var(--wine-500); font-style: italic; }
.cennik__row-price.free { color: var(--rose-300); }

/* ===================== ZESPÓŁ ===================== */

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 880px) { .team { grid-template-columns: 1fr; gap: 60px; } }
.team-card { display: flex; flex-direction: column; gap: 22px; }
.team-card__photo {
  aspect-ratio: 4/5;
  background: var(--cream-200);
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.team-card__photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.team-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-600);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1;
  margin: 0;
}
.team-card__name em { font-style: italic; color: var(--wine-700); }
.team-card__bio {
  color: var(--wine-800);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 38ch;
}
.team-card__sign {
  font-family: "Dancing Script", "Brush Script MT", cursive;
  font-size: 32px;
  color: var(--wine-600);
  letter-spacing: 0.02em;
  margin-top: 6px;
}

/* ===================== KARTA PODARUNKOWA ===================== */

.gift {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .gift { grid-template-columns: 1fr; gap: 50px; } }
.gift__visual {
  position: relative;
  aspect-ratio: 1/0.7;
  background: var(--cream-100);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(61,27,34,0.4);
}
.gift__card {
  position: absolute;
  inset: 18% 12%;
  background: var(--wine-700);
  color: var(--cream-50);
  padding: 36px 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px -20px rgba(61,27,34,0.5);
  transform: rotate(-3deg);
}
.gift__card-edge {
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(217, 178, 184, 0.3);
  border-radius: 4px;
  transform: rotate(2.2deg);
  pointer-events: none;
}
.gift__card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--rose-300);
  text-transform: uppercase;
}
.gift__card-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-style: italic;
  line-height: 1;
  color: var(--cream-50);
}
.gift__card-amount span {
  font-size: 0.4em;
  font-style: normal;
  color: var(--rose-300);
  margin-left: 4px;
  letter-spacing: 0.12em;
}
.gift__card-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--rose-300);
}
.gift__card-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--cream-50);
}
.gift__amounts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 30px;
}
.gift__chip {
  padding: 10px 18px;
  border: 1px solid var(--wine-700);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--wine-700);
  transition: background 0.2s ease, color 0.2s ease;
}
.gift__chip:hover, .gift__chip.active {
  background: var(--wine-700);
  color: var(--cream-50);
}

/* ===================== SZKOLENIA ===================== */

.training {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--wine-700);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 880px) { .training { grid-template-columns: 1fr; } }
.training__col {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 380px;
}
.training__col--active {
  background: var(--wine-700);
  color: var(--cream-50);
}
.training__col--active h3 { color: var(--cream-50); }
.training__col--soon {
  background: transparent;
  border-left: 1px solid var(--wine-700);
}
.training__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.training__tag .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--rose-300);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.training__details {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.training__details span {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.training__details span b {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-300);
}
.training__col--soon .training__details span b { color: var(--wine-600); }

/* ===================== KONTAKT ===================== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; gap: 48px; } }
.contact__info { display: flex; flex-direction: column; gap: 32px; }
.contact__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-200);
}
.contact__row b {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-600);
  font-weight: 500;
}
.contact__row a, .contact__row span {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  color: var(--wine-900);
}
.contact__row a:hover { color: var(--wine-700); text-decoration: underline; }
.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact__social {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--wine-700);
  display: grid; place-items: center;
  color: var(--wine-700);
  transition: background 0.2s ease, color 0.2s ease;
}
.contact__social:hover { background: var(--wine-700); color: var(--cream-50); }
.contact__social svg { width: 18px; height: 18px; }

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form__field {
  display: flex; flex-direction: column; gap: 6px;
}
.form__field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-600);
}
.form__field input, .form__field textarea, .form__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--wine-700);
  color: var(--wine-900);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.form__field textarea { resize: vertical; min-height: 90px; }
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  border-color: var(--wine-900);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__submit { align-self: flex-start; margin-top: 10px; }

.map {
  margin-top: 60px;
  aspect-ratio: 21/8;
  background: var(--cream-100);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cream-200);
}
.map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(90,44,50,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,44,50,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map__roads {
  position: absolute; inset: 0;
}
.map__pin {
  position: absolute;
  top: 46%;
  left: 38%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.map__pin-dot {
  width: 18px; height: 18px;
  background: var(--wine-700);
  border-radius: 999px;
  border: 3px solid var(--cream-50);
  box-shadow: 0 0 0 8px rgba(90,44,50,0.15);
  animation: pulse-pin 2s ease infinite;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 8px rgba(90,44,50,0.15); }
  50% { box-shadow: 0 0 0 16px rgba(90,44,50,0.05); }
}
.map__pin-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--cream-50);
  padding: 6px 10px;
  border-radius: 2px;
  color: var(--wine-700);
  white-space: nowrap;
  border: 1px solid var(--cream-200);
}
.map__corner {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine-600);
}

/* ===================== CTA (Booksy) ===================== */

.cta-booksy {
  text-align: center;
  padding: clamp(80px, 11vw, 140px) 0;
  background:
    radial-gradient(ellipse at top, rgba(217, 178, 184, 0.25), transparent 60%),
    var(--cream-100);
  position: relative;
}
.cta-booksy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cta-booksy h2 em { font-style: italic; color: var(--wine-700); }
.cta-booksy .btn {
  padding: 22px 44px;
  font-size: 14px;
}

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

.footer {
  background: var(--wine-900);
  color: var(--cream-100);
  padding: 80px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 239, 230, 0.15);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
.footer__brand h3 {
  color: var(--cream-50);
  font-size: 36px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.footer__brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: 18px;
}
.footer__brand p { font-size: 14px; color: rgba(246, 239, 230, 0.7); max-width: 30ch; }
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin: 0 0 18px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--cream-100);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--rose-300); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 239, 230, 0.5);
}
@media (max-width: 600px) { .footer__bottom { flex-direction: column; gap: 12px; } }

/* ===================== UTILITY ===================== */

.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0;
  color: var(--wine-700);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.divider svg { width: 24px; height: 24px; opacity: 0.85; }

/* hidden helper */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
