:root {
  --background: #fcf8f4;
  --surface: #ffffff;
  --surface-soft: #f6eeeb;
  --surface-deep: #efe0e4;
  --primary: #873e56;
  --primary-hover: #6d2f43;
  --primary-soft: #f5e5e9;
  --accent: #e6c5ce;
  --sage: #68785c;
  --text: #292425;
  --text-muted: #746b6e;
  --border: #e9dddf;
  --border-strong: #d9c7cc;
  --success: #4f7058;
  --shadow-sm: 0 8px 28px rgba(75, 48, 57, 0.07);
  --shadow: 0 18px 55px rgba(75, 48, 57, 0.11);
  --shadow-strong: 0 28px 80px rgba(57, 35, 43, 0.19);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 88px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

.svg-sprite {
  position: absolute;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--primary) !important;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(135, 62, 86, 0.18);
}

.button-primary:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
  box-shadow: 0 13px 30px rgba(109, 47, 67, 0.23);
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--primary);
  background: var(--surface);
  color: var(--primary);
  transform: translateY(-2px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: #fff;
  color: var(--primary);
}

.button-light:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 750;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(252, 248, 244, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.site-header.is-compact {
  border-color: rgba(233, 221, 223, 0.8);
  background: rgba(252, 248, 244, 0.96);
  box-shadow: 0 7px 25px rgba(61, 37, 45, 0.075);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
  transition: min-height 220ms ease;
}

.site-header.is-compact .header-inner {
  min-height: 72px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.6vw, 26px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #4d4648;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 46px;
  flex: 0 0 auto;
  padding-inline: 19px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-avito {
  display: none;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  min-height: min(900px, 100svh);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 86% 24%, rgba(230, 197, 206, 0.32), transparent 28%),
    radial-gradient(circle at 8% 82%, rgba(104, 120, 92, 0.08), transparent 24%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(460px, 0.86fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 6.4vw, 6.15rem);
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.hero h1 em {
  color: var(--primary);
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-address {
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 31px;
  padding: 17px 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-address > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}

.hero-address > span {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 8px;
  line-height: 1.4;
}

.hero-address strong,
.hero-address .js-address-line {
  font-size: 0.93rem;
}

.hero-address small {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.81rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 44% 44% 28px 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-strong);
}

.hero-image-frame picture,
.about-image picture,
.gallery-image-button picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 76%;
  aspect-ratio: 1;
  top: -6%;
  right: -14%;
  border: 1px solid rgba(135, 62, 86, 0.2);
}

.hero-orbit-two {
  width: 45%;
  aspect-ratio: 1;
  right: -4%;
  bottom: -5%;
  background: rgba(230, 197, 206, 0.5);
  filter: blur(1px);
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: -46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(233, 221, 223, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--text-muted);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-note svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.works {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.section-heading > div > p:last-child {
  max-width: 530px;
  margin: 0;
  justify-self: end;
  color: var(--text-muted);
}

.section-heading-centered {
  display: block;
  max-width: 690px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered > p {
  margin-inline: auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover {
  border-color: var(--border-strong);
  color: var(--primary);
}

.filter-button[aria-pressed="true"] {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(135, 62, 86, 0.17);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  transition: opacity 150ms ease, transform 150ms ease;
}

.gallery-grid.is-filtering {
  opacity: 0;
  transform: translateY(8px);
}

.gallery-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 9px 30px rgba(68, 43, 51, 0.055);
  animation: cardIn 320ms ease both;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-image-button {
  position: relative;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 0 0;
  background: var(--surface-soft);
  cursor: zoom-in;
}

.gallery-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.gallery-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(48, 30, 37, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gallery-zoom svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-card-copy {
  padding: 21px 22px 23px;
}

.gallery-category {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.gallery-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

.image-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, var(--surface-soft), var(--primary-soft));
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.gallery-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  margin-top: 70px;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(218, 193, 199, 0.78);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 255, 255, 0.75), transparent 29%),
    var(--primary-soft);
}

.gallery-cta::after {
  content: "";
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  right: 16%;
  bottom: -150px;
  border: 1px solid rgba(135, 62, 86, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-cta h3 {
  max-width: 650px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.gallery-cta p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.gallery-cta .button {
  position: relative;
  z-index: 2;
}

.about {
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: 18%;
  left: -320px;
  border-radius: 50%;
  background: rgba(104, 120, 92, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(72px, 10vw, 150px);
}

.about-visual {
  position: relative;
  min-height: 660px;
}

.about-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.75);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

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

.about-image-main {
  width: 68%;
  aspect-ratio: 4 / 5;
  top: 0;
  left: 0;
  border-radius: 48% 48% 24px 24px;
}

.about-image-small {
  width: 48%;
  aspect-ratio: 4 / 5;
  right: 0;
  bottom: 0;
  border-radius: 22px;
}

.about-copy {
  max-width: 620px;
}

.about-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-detail {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  border-left: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.5);
}

.about-detail > svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.about-detail p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.about-detail strong {
  color: var(--text);
}

.benefits {
  background: var(--surface-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 245px;
  padding: 27px;
  border: 1px solid rgba(233, 221, 223, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.48rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.reviews {
  overflow: hidden;
  background: var(--background);
}

.reviews::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(135, 62, 86, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(135, 62, 86, 0.025);
}

.reviews .container {
  position: relative;
  z-index: 1;
}

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

.review-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.review-card::after {
  content: "“";
  position: absolute;
  right: 21px;
  bottom: -32px;
  color: var(--primary-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.review-card blockquote p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.25;
}

.steps {
  background: var(--surface);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 245px;
  padding: 35px 28px 30px;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.step-card + .step-card {
  border-left: 1px solid var(--border-strong);
}

.step-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.steps-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.faq {
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.faq-intro {
  max-width: 440px;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--text-muted);
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}

.faq-item summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 22px;
  padding: 20px 2px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.62rem);
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle {
  border-color: var(--primary);
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
  background: #fff;
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 58px 27px 2px;
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.location {
  padding-top: 30px;
  background: var(--surface);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 0.64fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--background);
  box-shadow: var(--shadow);
}

.location-content {
  padding: clamp(42px, 7vw, 82px);
}

.location-address {
  display: flex;
  flex-direction: column;
  margin: 24px 0 35px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.location-address strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.7em;
  line-height: 1.25;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.location-map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--primary-soft);
  isolation: isolate;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  border: 0;
  background: var(--surface-soft);
}

.location-map-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.location-map-badge > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.6;
}

.location-map-badge > span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.location-map-badge strong {
  font-size: 0.85rem;
}

.location-map-badge small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.contacts {
  background: var(--surface);
}

.contacts-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(35px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--background);
}

.contacts-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.contacts-heading p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.contacts-details {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contact-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-item small {
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong {
  font-size: 0.91rem;
  line-height: 1.5;
}

.contacts-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding: 78px 0 30px;
  background: #673044;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 0.55fr 0.65fr;
  gap: 80px;
  padding-bottom: 65px;
}

.brand-light {
  color: #fff;
}

.brand-light .brand-mark {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand > p {
  max-width: 400px;
  margin: 23px 0;
  color: rgba(255, 255, 255, 0.69);
}

.footer-column h2 {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column address {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 21px;
}

.footer-column a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column address {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 760px);
  justify-content: space-between;
  gap: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.modal {
  width: auto;
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--text);
}

.modal::backdrop {
  background: rgba(36, 27, 30, 0.75);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  animation: backdropIn 180ms ease both;
}

.modal[open] {
  animation: modalIn 220ms cubic-bezier(.2,.75,.25,1) both;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  width: min(1160px, calc(100vw - 48px));
  height: min(760px, calc(100svh - 48px));
}

.lightbox-shell {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.modal-close {
  position: absolute;
  z-index: 7;
  top: 16px;
  right: 16px;
}

.lightbox-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #eee5e3;
  touch-action: pan-y;
}

.lightbox-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-prev svg {
  transform: rotate(180deg);
}

.lightbox-next {
  right: 16px;
}

.lightbox-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 82px 35px 35px;
}

.lightbox-count {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-info h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.lightbox-info p {
  margin: 0;
  color: var(--text-muted);
}

.info-modal {
  width: min(520px, calc(100vw - 32px));
}

.info-modal-card {
  position: relative;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.info-modal-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.info-modal-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.info-modal h2 {
  margin-bottom: 14px;
  font-size: 2.25rem;
}

.info-modal p {
  margin-bottom: 25px;
  color: var(--text-muted);
}

.info-modal .button {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 3000;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--success);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 750;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.inner-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.inner-page .inner-header {
  position: fixed;
}

.inner-back-link {
  margin-left: auto;
}

.legal-page {
  flex: 1;
  padding: calc(var(--header-height) + 80px) 0 100px;
  background:
    radial-gradient(circle at 92% 12%, rgba(230, 197, 206, 0.28), transparent 25%),
    var(--background);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 9vw, 135px);
}

.legal-hero {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.legal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 5.7vw, 5.25rem);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-hero > p:last-child {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  letter-spacing: -0.025em;
}

.legal-content p {
  color: var(--text-muted);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.simple-footer {
  padding: 25px 0;
  background: #673044;
  color: rgba(255, 255, 255, 0.74);
}

.simple-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 0.8rem;
}

.simple-footer p {
  margin: 0;
}

.simple-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.error-page-body {
  background: var(--background);
}

.error-page {
  min-height: calc(100svh - 92px);
  display: flex;
  flex: 1;
  align-items: center;
  padding: calc(var(--header-height) + 68px) 0 78px;
  background:
    radial-gradient(circle at 82% 48%, rgba(230, 197, 206, 0.45), transparent 28%),
    radial-gradient(circle at 10% 82%, rgba(104, 120, 92, 0.08), transparent 23%);
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.error-copy {
  position: relative;
  z-index: 1;
}

.error-code {
  position: absolute;
  z-index: -1;
  top: -150px;
  left: -20px;
  margin: 0;
  color: rgba(135, 62, 86, 0.07);
  font-family: var(--font-display);
  font-size: clamp(12rem, 27vw, 24rem);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.error-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  letter-spacing: -0.055em;
}

.error-copy > p:not(.error-code):last-of-type {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.error-address {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(218, 193, 199, 0.88);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.error-address::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: -100px;
  border: 1px solid rgba(135, 62, 86, 0.14);
  border-radius: 50%;
}

.error-address-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.error-address-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.error-address > p {
  margin-bottom: 13px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-address address {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.65;
}

.error-address address strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal-ready .reveal[data-reveal-delay="1"] { transition-delay: 80ms; }
.reveal-ready .reveal[data-reveal-delay="2"] { transition-delay: 160ms; }
.reveal-ready .reveal[data-reveal-delay="3"] { transition-delay: 240ms; }

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }

  .gallery-card:hover .gallery-image-button img {
    transform: scale(1.028);
  }

  .benefit-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
