:root {
  --bg: #f7f1eb;
  --bg-soft: #f1e8e1;
  --panel: rgba(255, 250, 245, 0.8);
  --panel-strong: #fffaf6;
  --text: #2f211d;
  --title: #2a1d1a;
  --muted: #6f5c56;
  --gold: #c8a15c;
  --gold-soft: #ecd8af;
  --pink: #d97a9f;
  --pink-strong: #c85a85;
  --line: rgba(92, 63, 53, 0.14);
  --shadow: 0 18px 50px rgba(76, 49, 40, 0.1);

  --planity: #111111;
  --planity-dark: #000000;
  --instagram: #e1306c;

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --container: 1160px;

  --fs-h1: clamp(3.1rem, 4.7vw, 4.75rem);
  --fs-h2: clamp(2.3rem, 3.8vw, 3.4rem);
  --fs-h3: 1.35rem;
  --fs-body: 1rem;
  --fs-small: 0.82rem;
  --fs-nav: 0.96rem;

  --transition: 0.25s ease;
}

/* BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: var(--fs-body);
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 122, 159, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(200, 161, 92, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #fbf7f2 0%, #f6eee7 50%, #f2e7df 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.no-break {
  white-space: nowrap;
}

/* GLOBAL LAYOUT */
.site-shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 16px auto;
  border: 1px solid rgba(200, 161, 92, 0.22);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.header,
.hero,
.section,
.footer {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 42px rgba(83, 54, 45, 0.06);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0 10px;
  background: rgba(251, 245, 239, 0.86);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-logo-img {
  display: block;
  width: 146px;
  height: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid rgba(200, 161, 92, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(91, 67, 58, 0.06);
}

.nav a {
  color: var(--muted);
  font-size: var(--fs-nav);
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--pink-strong);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--text);
}

.header-cta {
  flex-shrink: 0;
}

.mobile-language-switcher {
  display: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.btn--planity {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(200, 161, 92, 0.28);
  box-shadow: 0 10px 24px rgba(91, 67, 58, 0.06);
}

.btn--planity:hover,
.btn--planity:focus-visible {
  border-color: rgba(200, 161, 92, 0.44);
  box-shadow: 0 12px 28px rgba(91, 67, 58, 0.1);
}

.btn--instagram {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(92, 63, 53, 0.14);
}

.btn--instagram:hover,
.btn--instagram:focus-visible {
  border-color: rgba(225, 48, 108, 0.25);
  color: var(--instagram);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn__icon--planity {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--planity), var(--planity-dark));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn__icon--instagram {
  color: var(--instagram);
}

/* TYPOGRAPHY */
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about__content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--title);
}

.hero h1 {
  max-width: 12.4ch;
  font-size: var(--fs-h1);
  line-height: 0.93;
  letter-spacing: -0.03em;
}

.section-heading h2,
.about__content h2 {
  font-size: var(--fs-h2);
  line-height: 1;
}

.hero__text,
.section-heading p,
.about__lead,
.about__feature p,
.service-card p,
.review-card__text,
.reviews-showcase__summary p,
.footer p,
.contact__card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: var(--fs-body);
}

/* HERO */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(36px, 4.6vw, 62px);
  align-items: center;
  padding: clamp(42px, 5vw, 62px) 0 clamp(64px, 6vw, 84px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px -46px 32px -46px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(217, 122, 159, 0.15),
      transparent 25%
    ),
    radial-gradient(
      circle at 86% 16%,
      rgba(200, 161, 92, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 241, 0.3));
  pointer-events: none;
}

.hero__content {
  display: grid;
  gap: 16px;
  align-content: center;
}

.hero__content .eyebrow {
  margin-bottom: 2px;
}

.hero__text {
  max-width: 41ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.hero__info-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 10px;
  margin-top: 2px;
}

.hero__info-card {
  display: grid;
  gap: 7px;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid rgba(92, 63, 53, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 24px rgba(76, 49, 40, 0.045);
}

.hero__info-card--wide {
  grid-column: 1 / -1;
}

.hero__info-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__info-card strong {
  align-self: end;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.42;
  font-weight: 620;
}

.hero__info-card strong a:hover {
  color: var(--pink-strong);
}

.hero__visual {
  display: grid;
  gap: 14px;
  align-self: end;
  min-width: 0;
}

.hero__photo {
  margin: 0;
  width: 100%;
  height: clamp(430px, 40vw, 520px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(92, 63, 53, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 62px rgba(83, 54, 45, 0.12);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__google-badge {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 16px 24px;
  border: 1px solid rgba(92, 63, 53, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 250, 246, 0.76)
    ),
    rgba(255, 255, 255, 0.8);
  box-shadow:
    0 13px 30px rgba(76, 49, 40, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero__google-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.hero__google-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(92, 63, 53, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(76, 49, 40, 0.05);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

.hero__google-copy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__google-copy span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero__google-right {
  justify-self: end;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  min-width: 132px;
  padding: 12px 16px 10px;
  border-radius: 18px;
  background: rgba(200, 161, 92, 0.1);
  text-align: center;
  white-space: nowrap;
}

.hero__google-right::before {
  content: none;
}

.hero__google-right strong {
  color: var(--title);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.025em;
}

.hero__google-right span {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

/* SECTIONS */
.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin: 14px 0 0;
}

/* SALON */
.about {
  padding-top: 72px;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.about__media {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.about__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about__photo {
  overflow: hidden;
  margin: 0;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about__photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(83, 54, 45, 0.08);
}

.about__photo:hover img {
  transform: scale(1.03);
}

.about__photo--large {
  height: clamp(390px, 36vw, 500px);
}

.about__photo--small {
  height: 220px;
}

.about__content {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(34px, 4vw, 52px);
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(200, 161, 92, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.78),
      rgba(249, 241, 232, 0.86)
    );
}

.about__content::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(200, 161, 92, 0.18));
}

.about__content .eyebrow {
  margin: 0;
}

.about__lead {
  max-width: 46ch;
  margin: 0;
  font-size: 1.05rem;
}

.about__features {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.about__feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  padding: 16px 0;
  border-top: 1px solid rgba(92, 63, 53, 0.11);
}

.about__feature:first-child {
  border-top: 0;
  padding-top: 0;
}

.about__feature span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(200, 161, 92, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
}

.about__feature strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
}

.about__feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.about__actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

/* PRESTATIONS */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 32px rgba(83, 54, 45, 0.05);
}

.service-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3,
.contact__card h3 {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* AVIS */
.reviews-showcase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 26px;
}

.reviews-showcase__summary {
  display: grid;
  gap: 12px;
  align-content: start;
}

.reviews-showcase__label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-showcase__summary strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--title);
}

.reviews-showcase__count {
  color: var(--text);
  font-weight: 700;
}

.reviews-showcase__summary p {
  margin: 0;
}

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

.review-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
}

.review-card__stars {
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-card__text {
  margin: 0 0 16px;
}

.review-card__author {
  display: grid;
  gap: 4px;
}

.review-card__author strong {
  color: var(--text);
}

.review-card__author span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* GALERIE */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 32px rgba(83, 54, 45, 0.05);
}

.gallery__item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* CONTACT */
.contact .section-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(430px, 1.25fr) minmax(260px, 0.84fr) minmax(
      280px,
      0.92fr
    );
  gap: 22px;
  align-items: stretch;
}

.contact__card {
  display: flex;
  flex-direction: column;
  min-height: 348px;
  padding: 32px;
}

.contact__card--main {
  background: rgba(255, 255, 255, 0.62);
}

.contact__card--hours,
.contact__card--booking {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(249, 241, 232, 0.86)
    ),
    rgba(255, 255, 255, 0.7);
}

.contact__header {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.contact__header h3 {
  min-height: 2.45em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.contact__card--main .contact__header h3 {
  max-width: 20ch;
}

.contact__card--hours,
.contact__card--booking {
  text-align: center;
}

.contact__overline {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(200, 161, 92, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact__list {
  display: grid;
  gap: 0;
  margin-top: 2px;
}

.contact__item {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(92, 63, 53, 0.11);
}

.contact__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact__item:last-child {
  padding-bottom: 0;
}

.contact__item-label {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact__item strong,
.contact__instagram-name {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 650;
}

.contact__item strong a:hover,
.contact__instagram-name:hover {
  color: var(--pink-strong);
}

.contact__instagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.contact__instagram-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact__instagram-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(225, 48, 108, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
  transition:
    transform var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.contact__instagram-link:hover,
.contact__instagram-link:focus-visible {
  transform: translateY(-1px);
  color: var(--instagram);
  border-color: rgba(225, 48, 108, 0.32);
  box-shadow: 0 10px 24px rgba(91, 67, 58, 0.06);
}

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

.contact__hours li {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(92, 63, 53, 0.11);
}

.contact__hours li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact__hours span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact__hours strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact__card--booking {
  align-items: center;
}

.contact__card--booking p {
  margin: 0;
  max-width: 28ch;
  text-align: center;
}

.contact__card--booking .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* FOOTER */
.footer {
  padding: 24px 0 34px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.94rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 12px;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.86rem;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--pink-strong);
}

/* LANGUAGE SWITCHER */
.language-switcher,
.mobile-language-switcher {
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(200, 161, 92, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 18px rgba(91, 67, 58, 0.05);
}

.language-switcher {
  display: inline-flex;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--pink-strong);
  transform: translateY(-1px);
}

.language-link.is-active {
  color: var(--text);
  background: rgba(200, 161, 92, 0.14);
}

.language-link__flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(47, 33, 29, 0.14);
}

.language-link__flag--fr {
  background: linear-gradient(
    90deg,
    #0055a4 0 33.33%,
    #ffffff 33.33% 66.66%,
    #ef4135 66.66% 100%
  );
}

.language-link__flag--gb {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0h60v30H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath stroke='%23fff' stroke-width='6' d='m0 0 60 30m0-30L0 30'/%3E%3Cpath stroke='%23C8102E' stroke-width='4' d='m0 0 60 30m0-30L0 30'/%3E%3Cpath stroke='%23fff' stroke-width='10' d='M30 0v30M0 15h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='6' d='M30 0v30M0 15h60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* RESPONSIVE — TABLET */
@media (max-width: 1100px) {
  .header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .about__layout,
  .reviews-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 44px;
  }

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

  .contact__card--main {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__visual,
  .about__media,
  .about__content {
    max-width: 780px;
  }

  .services__grid,
  .reviews-showcase__list,
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 16px), 1320px);
    margin: 8px auto;
    border-radius: 24px;
  }

  .header,
  .hero,
  .section,
  .footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 12px 0 10px;
  }

  .site-logo {
    grid-column: 1;
  }

  .site-logo-img {
    width: 86px;
  }

  .mobile-language-switcher {
    grid-column: 2;
    justify-self: end;
    display: inline-flex;
  }

  .mobile-language-switcher .language-link {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .mobile-language-switcher .language-link__flag {
    width: 17px;
    height: 12px;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    display: block;
    margin-left: 0;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav .language-switcher {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 0 48px;
  }

  .hero::before {
    inset: 0 -12px 16px -12px;
    border-radius: 24px;
  }

  .hero__content {
    order: 1;
    gap: 14px;
    max-width: none;
  }

  .hero__visual {
    order: 2;
    gap: 0;
    margin-top: 4px;
  }

  .hero__content .eyebrow {
    max-width: 30ch;
    margin-bottom: 0;
    font-size: 0.74rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    max-width: 9.6ch;
    font-size: clamp(2.25rem, 9.6vw, 3rem);
    line-height: 1.02;
  }

  .hero__text {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__actions .btn,
  .about__actions .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    font-size: 0.96rem;
  }

  .hero__info-grid,
  .services__grid,
  .reviews-showcase__list,
  .gallery__grid,
  .about__thumbs,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .hero__info-grid {
    gap: 10px;
    margin-top: 0;
  }

  .hero__info-card,
  .hero__info-card--wide {
    min-height: auto;
    padding: 17px 18px;
  }

  .hero__photo {
    height: 210px;
    border-radius: 22px;
  }

  .hero__google-badge {
    display: none;
  }

  .contact__card--main {
    grid-column: auto;
  }

  .about__content,
  .contact__card {
    padding: 28px;
    min-height: auto;
  }

  .about__photo--large {
    height: 360px;
  }

  .about__photo--small {
    height: 300px;
  }

  .contact__header h3 {
    min-height: 0;
  }

  .contact__item {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .contact__instagram {
    flex-direction: column;
    align-items: center;
  }

  .contact__instagram-link,
  .contact__card--booking .btn {
    width: 100%;
  }

  .contact__hours strong {
    white-space: normal;
  }
}

/* RESPONSIVE — SMALL MOBILE */
@media (max-width: 430px) {
  .site-shell {
    width: calc(100% - 12px);
    margin: 6px auto;
    border-radius: 20px;
  }

  .header,
  .hero,
  .section,
  .footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-logo-img {
    width: 82px;
  }

  .mobile-language-switcher .language-link {
    min-height: 27px;
    padding: 0 7px;
    font-size: 0.71rem;
  }

  .mobile-language-switcher .language-link__flag {
    width: 16px;
    height: 11px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero h1 {
    max-width: 9.4ch;
    font-size: clamp(2.1rem, 9.2vw, 2.75rem);
  }

  .hero__photo {
    height: 185px;
  }

  .hero__info-card,
  .about__content,
  .contact__card,
  .review-card,
  .service-card {
    padding: 20px;
  }

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

  .about__feature span {
    grid-row: auto;
  }

  .section {
    padding: 58px 0;
  }
}
