/* Variables */
:root {
  --bg: #f8f4f1;
  --bg-soft: #fffaf7;
  --surface: #fff;
  --ink: #251f1d;
  --muted: #766b67;
  --accent: #a65d68;
  --accent-dark: #773c46;
  --accent-soft: #ead7d9;
  --gold: #b28a58;
  --line: rgba(37, 31, 29, .12);
  --shadow: 0 24px 70px rgba(63, 40, 36, .12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "DM Sans", sans-serif;
  --radius: 28px;
  --container: min(1180px, calc(100% - 48px));
  --header-h: 88px;
}

html[lang="hy"] {
  --serif: "Noto Serif Armenian", Georgia, serif;
  --sans: "Noto Sans Armenian", "Manrope", sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, figure, blockquote, ol { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; cursor: pointer; }

/* Base */
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(92px, 10vw, 148px) 0; scroll-margin-top: var(--header-h); }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 12px 18px; background: var(--ink); color: white; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 600; }
.eyebrow > span:first-child { width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: #e8c8cb; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 6.2vw, 86px); }
h2 { font-size: clamp(40px, 5vw, 64px); }
h1 em, h2 em { color: var(--accent); font-weight: 500; }
h3 { line-height: 1.3; }
.section-heading { max-width: 680px; margin-bottom: 54px; }
.section-heading .eyebrow { margin-bottom: 18px; }
.section-heading h2 + p { max-width: 560px; margin-top: 22px; color: var(--muted); }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.section-heading-row > p { max-width: 390px; color: var(--muted); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 25px; border: 1px solid var(--ink); border-radius: 99px; background: var(--ink); color: white; font-size: 13px; font-weight: 600; letter-spacing: .03em; transition: transform .3s, color .3s, background .3s, box-shadow .3s; }
.button:hover { transform: translateY(-2px); background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: 0 10px 30px rgba(127, 62, 73, .2); }
.button-small { min-height: 44px; padding: 9px 20px; }
.button-ghost { background: transparent; color: var(--ink); }
.button-ghost:hover { color: white; }
.text-link { display: inline-flex; align-items: center; gap: 28px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 600; }
:focus-visible { outline: 3px solid rgba(166, 93, 104, .4); outline-offset: 4px; }
.scroll-progress { position: fixed; z-index: 110; top: 0; left: 0; width: 100%; height: 2px; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-h); transition: height .35s, background .35s, box-shadow .35s; }
.site-header.scrolled { height: 70px; background: rgba(248, 244, 241, .86); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; flex-direction: column; align-items: center; font-family: var(--serif); font-size: 25px; line-height: .9; letter-spacing: .12em; }
.brand span { margin-top: 7px; font-family: var(--sans); font-size: 7px; text-transform: uppercase; letter-spacing: .27em; color: var(--muted); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 34px); }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 500; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -7px; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-actions, .language-switch { display: flex; align-items: center; }
.header-actions { gap: 20px; }
.language-switch { gap: 5px; color: #a09996; font-size: 10px; font-weight: 600; }
.lang-btn { min-width: 25px; min-height: 36px; padding: 0; font-size: 10px; color: #a09996; }
.lang-btn.active { color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .3s; }
.menu-toggle.open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu, .mobile-language-switch { display: none; }

/* Hero */
.hero { position: relative; min-height: 100vh; padding: calc(var(--header-h) + 48px) 0 0; overflow: hidden; background: radial-gradient(circle at 80% 22%, #f2dedf 0, transparent 26%), linear-gradient(135deg, var(--bg) 55%, #f4ebe8 100%); }
.hero-grid { min-height: calc(100vh - var(--header-h) - 105px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.hero-copy { position: relative; z-index: 2; padding: 40px 0 55px; }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 { max-width: 710px; }
.hero-copy h1 em { display: block; }
.hero-text { max-width: 540px; margin-top: 28px; color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: flex; align-items: center; gap: 22px; margin-top: 46px; }
.hero-proof > div:first-child { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--serif); font-size: 25px; line-height: 1; }
.hero-proof div > span { color: var(--muted); font-size: 10px; }
.avatars { display: flex; }
.avatars span { width: 35px; height: 35px; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--bg); border-radius: 50%; background: #d7bbb7; color: white; font-size: 9px; }
.avatars span:first-child { margin-left: 0; background: #967d78; }
.avatars span:last-child { background: var(--accent); }
.rating { padding-left: 20px; border-left: 1px solid var(--line); }
.rating span { display: block; color: var(--gold) !important; letter-spacing: .08em; font-size: 12px !important; }
.rating small { color: var(--muted); }
.hero-visual { position: relative; align-self: end; height: min(700px, calc(100vh - 120px)); min-height: 560px; }
.hero-image-wrap { position: absolute; inset: 0 5% 0 8%; overflow: hidden; border-radius: 220px 220px 18px 18px; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(42, 24, 24, .16)); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.image-mark { position: absolute; z-index: 1; right: 28px; bottom: 10px; color: rgba(255,255,255,.6); font-family: var(--serif); font-size: 90px; line-height: 1; }
.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; background: rgba(255,255,255,.82); box-shadow: 0 18px 40px rgba(51,34,31,.13); backdrop-filter: blur(14px); }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { font-size: 11px; }
.floating-card span { color: var(--muted); font-size: 9px; }
.steril-card { top: 29%; left: -7%; }
.steril-card svg { width: 28px; fill: none; stroke: var(--accent); stroke-width: 1.5; }
.appointment-card { right: -4%; bottom: 13%; }
.appointment-date { display: grid !important; place-items: center; width: 39px; height: 39px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-dark) !important; font-family: var(--serif); font-size: 18px !important; }
.hero-orb { position: absolute; width: 250px; height: 250px; border: 1px solid rgba(178, 138, 88, .25); border-radius: 50%; }
.hero-orb-one { left: -140px; top: 21%; }
.trust-row { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); }
.trust-row > span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.trust-row div { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; }
.trust-row i { width: 6px; height: 6px; border: 1px solid var(--accent); border-radius: 50%; }

/* Advantages */
.advantages { background: var(--bg-soft); }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.advantage-card { position: relative; min-height: 310px; padding: 40px 32px; background: rgba(255,255,255,.3); border-right: 1px solid var(--line); transition: background .3s, transform .3s; }
.advantage-card:last-child { border-right: 0; }
.advantage-card:hover { background: white; }
.advantage-card .card-number { position: absolute; right: 24px; top: 20px; color: #b5aaa5; font-family: var(--serif); font-size: 12px; }
.advantage-card svg { width: 44px; margin: 34px 0 40px; fill: none; stroke: var(--accent); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.advantage-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.advantage-card p { color: var(--muted); font-size: 13px; }

/* Services */
.filter-tabs { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tabs button { min-height: 44px; flex: 0 0 auto; padding: 10px 20px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 12px; transition: color .25s, background .25s, border .25s; }
.filter-tabs button.active { background: var(--ink); border-color: var(--ink); color: white; }
.service-tabs { margin-bottom: 28px; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-card { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 152px; padding: 27px 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.45); opacity: 1; transform: translateY(0); transition: border .3s, background .3s, transform .35s, opacity .35s; }
.service-card.hiding { opacity: 0; transform: translateY(8px); }
.service-card:hover { border-color: rgba(166,93,104,.4); background: var(--surface); transform: translateY(-3px); }
.service-card h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.service-card p { max-width: 330px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.service-meta { display: flex; align-items: center; gap: 22px; padding-left: 20px; }
.service-duration { color: var(--muted); font-size: 10px; white-space: nowrap; }
.service-price { min-width: 65px; font-family: var(--serif); font-size: 20px; white-space: nowrap; }
.service-book { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: background .3s, color .3s; }
.service-card:hover .service-book { background: var(--accent); border-color: var(--accent); color: white; }
.price-note { margin-top: 20px; color: var(--muted); font-size: 10px; }

/* Portfolio */
.portfolio { background: var(--bg-soft); }
.portfolio-tabs { justify-content: center; margin: -15px 0 42px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: zoom-in; opacity: 1; transform: scale(1); transition: opacity .35s, transform .35s; }
.gallery-item.hidden { display: none; }
.gallery-item.filtering { opacity: 0; transform: scale(.97); }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; }
.gallery-item:nth-child(4), .gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-item::after { content: "↗"; position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.85); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.portfolio-action { display: flex; justify-content: center; margin-top: 42px; }
.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; padding: 30px; border: 0; background: rgba(24,19,18,.93); color: white; }
.lightbox[open] { display: grid; grid-template-columns: 60px minmax(0, 1fr) 60px; align-items: center; }
.lightbox::backdrop { background: rgba(24,19,18,.93); }
.lightbox figure { max-width: 900px; max-height: calc(100vh - 80px); margin: auto; }
.lightbox img { max-height: calc(100vh - 120px); margin: auto; border-radius: 12px; object-fit: contain; }
.lightbox figcaption { margin-top: 10px; text-align: center; color: #d9d1ce; font-size: 12px; }
.lightbox button { width: 48px; height: 48px; color: white; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 22px; }
.lightbox-close { position: absolute; right: 24px; top: 24px; }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 10vw, 135px); }
.about-visual { position: relative; max-width: 500px; }
.about-image-frame { padding: 12px; border: 1px solid var(--line); border-radius: 240px 240px 20px 20px; }
.about-image-frame img { width: 100%; aspect-ratio: .82; object-fit: cover; object-position: center 20%; border-radius: 220px 220px 13px 13px; filter: saturate(.78); }
.experience-badge { position: absolute; right: -35px; bottom: 55px; width: 118px; height: 118px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--accent-dark); color: white; box-shadow: var(--shadow); }
.experience-badge strong { font-family: var(--serif); font-size: 30px; line-height: 1; }
.experience-badge span { font-size: 9px; }
.signature { position: absolute; left: -30px; bottom: -15px; color: var(--accent); font-family: var(--serif); font-size: 46px; font-style: italic; transform: rotate(-9deg); }
.about-copy .eyebrow { margin-bottom: 20px; }
.about-lead { margin-top: 30px; color: var(--ink) !important; font-size: 17px; }
.about-copy > p:not(.eyebrow) { max-width: 560px; margin-bottom: 18px; color: var(--muted); }
.about-copy blockquote { margin: 28px 0; padding: 18px 0 18px 26px; border-left: 2px solid var(--accent); font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.5; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.about-stats span { color: var(--muted); font-size: 9px; line-height: 1.4; }

/* Process */
.process { background: var(--ink); color: white; }
.process .eyebrow, .process h2 em { color: #d8aeb3; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; list-style: none; counter-reset: steps; }
.process-list li { position: relative; min-height: 200px; padding: 0 32px 0 0; }
.process-list li:not(:last-child)::after { content: ""; position: absolute; top: 24px; left: 54px; right: 20px; height: 1px; background: rgba(255,255,255,.2); }
.process-list li > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 35px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #d8aeb3; font-family: var(--serif); font-size: 13px; }
.process-list h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.process-list p { max-width: 220px; color: #b9aeaa; font-size: 12px; }

/* Reviews */
.reviews { background: #efe6e2; }
.reviews-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.reviews-intro .eyebrow { margin-bottom: 18px; }
.reviews-intro > p:not(.eyebrow) { max-width: 350px; margin-top: 22px; color: var(--muted); }
.review-summary { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.review-summary > strong { font-family: var(--serif); font-size: 38px; font-weight: 500; }
.review-summary div { padding-left: 18px; border-left: 1px solid var(--line); }
.review-summary span { display: block; color: var(--gold); font-size: 12px; letter-spacing: .1em; }
.review-summary small { color: var(--muted); font-size: 9px; }
.slider-controls { display: flex; gap: 9px; margin-top: 35px; }
.slider-controls button { width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; transition: background .25s, color .25s; }
.slider-controls button:hover { background: var(--ink); color: white; }
.review-slider { min-width: 0; overflow: hidden; }
.review-track { display: flex; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.review-card { min-width: 100%; padding: clamp(32px, 5vw, 58px); border-radius: var(--radius); background: rgba(255,255,255,.72); }
.review-quote-mark { color: var(--accent); font-family: var(--serif); font-size: 60px; line-height: .7; }
.review-stars { margin: 28px 0 17px; color: var(--gold); font-size: 12px; letter-spacing: .14em; }
.review-card blockquote { min-height: 120px; font-family: var(--serif); font-size: clamp(22px, 2.3vw, 30px); line-height: 1.5; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-size: 11px; font-weight: 600; }
.review-author strong, .review-author span { display: block; }
.review-author strong { font-size: 12px; }
.review-author span { color: var(--muted); font-size: 10px; }
.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 22px; }
.slider-dots button { width: 6px; height: 6px; padding: 0; border-radius: 50%; background: #bdafaa; transition: width .3s, border-radius .3s, background .3s; }
.slider-dots button.active { width: 24px; border-radius: 4px; background: var(--accent); }

/* Booking */
.booking { background: var(--bg); }
.booking-shell { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 100px); padding: clamp(44px, 7vw, 84px); overflow: hidden; border-radius: 34px; background: var(--accent-dark); color: white; }
.booking-shell::before { content: ""; position: absolute; width: 380px; height: 380px; left: -150px; bottom: -220px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.booking-copy { position: relative; }
.booking-copy .eyebrow { margin-bottom: 20px; }
.booking-copy h2 { font-size: clamp(38px, 4.4vw, 60px); }
.booking-copy h2 em { color: #e7c4c7; }
.booking-copy > p:not(.eyebrow) { margin-top: 25px; color: #d9c9c7; }
.messenger-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 36px; }
.messenger-links a { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.24); font-size: 11px; }
.booking-form { position: relative; padding: clamp(28px, 4vw, 45px); border-radius: 22px; background: #fffaf8; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label:not(.checkbox) { display: block; margin-bottom: 17px; font-size: 10px; font-weight: 600; }
.booking-form input:not([type="checkbox"]), .booking-form select, .booking-form textarea { width: 100%; min-height: 46px; margin-top: 5px; padding: 10px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; font-size: 13px; }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--accent); }
.booking-form .invalid { border-color: #b42336 !important; }
.field-error { display: block; min-height: 14px; color: #a11c31; font-size: 9px; font-weight: 500; }
.checkbox { position: relative; display: flex; align-items: flex-start; gap: 9px; margin: 4px 0 0; cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; }
.checkbox > span { width: 17px; height: 17px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 4px; background: white; }
.checkbox input:checked + span { background: var(--accent); border-color: var(--accent); box-shadow: inset 0 0 0 4px white; }
.checkbox small { color: var(--muted); font-size: 9px; }
.booking-form .button { width: 100%; margin-top: 18px; }
.button-light { background: var(--ink); }
.form-note { margin-top: 13px; color: var(--muted); text-align: center; font-size: 8px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 10vw, 140px); }
.faq .text-link { margin-top: 28px; font-size: 12px; }
.accordion-item { border-top: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: 1px solid var(--line); }
.accordion-question { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 16px 0; text-align: left; font-family: var(--serif); font-size: 18px; }
.accordion-question span:last-child { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 16px; transition: transform .3s, background .3s; }
.accordion-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); background: var(--accent-soft); }
.accordion-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion-answer > div { overflow: hidden; }
.accordion-answer p { max-width: 620px; padding: 0 45px 25px 0; color: var(--muted); font-size: 13px; }
.accordion-item.open .accordion-answer { grid-template-rows: 1fr; }

/* Contacts */
.contacts { background: var(--bg-soft); }
.contacts-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 30px; padding: 30px 0; }
.contact-item { display: flex; flex-direction: column; }
.contact-item > span { margin-bottom: 7px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.contact-item strong, .contact-item a { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.45; }
.contact-item small { color: var(--muted); font-size: 9px; }
.contact-socials { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 22px; padding-top: 25px; border-top: 1px solid var(--line); }
.contact-socials a { font-size: 11px; font-weight: 600; border-bottom: 1px solid var(--line); }
.map-placeholder { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #e8e0d9; }
.map-lines i { position: absolute; width: 1px; height: 140%; top: -20%; background: rgba(104,88,80,.12); transform: rotate(25deg); }
.map-lines i:nth-child(1) { left: 12%; }.map-lines i:nth-child(2) { left: 32%; }.map-lines i:nth-child(3) { left: 54%; }.map-lines i:nth-child(4) { left: 74%; }.map-lines i:nth-child(5) { left: 92%; }
.map-road { position: absolute; display: block; background: #f8f5f2; box-shadow: 0 0 0 1px rgba(94,75,67,.08); }
.road-one { width: 130%; height: 35px; left: -10%; top: 44%; transform: rotate(-10deg); }
.road-two { width: 40px; height: 130%; left: 58%; top: -15%; transform: rotate(24deg); }
.map-pin { position: absolute; z-index: 2; left: 51%; top: 44%; display: flex; align-items: center; gap: 12px; padding: 10px 15px 10px 9px; border-radius: 14px; background: white; box-shadow: 0 12px 28px rgba(70,50,45,.16); }
.map-pin > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50% 50% 50% 4px; background: var(--accent); color: white; font-family: var(--serif); transform: rotate(-45deg); }
.map-pin > span::first-letter { transform: rotate(45deg); }
.map-pin strong, .map-pin small { display: block; }
.map-pin strong { font-size: 10px; }.map-pin small { color: var(--muted); font-size: 8px; }
.route-link { position: absolute; z-index: 3; right: 22px; bottom: 22px; }

/* Footer */
.footer { padding: 72px 0 22px; background: var(--ink); color: #eee8e5; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand { align-items: flex-start; color: white; }
.footer-grid > div:first-child p { max-width: 270px; margin-top: 22px; color: #a99e9a; font-size: 11px; }
.footer-grid h3 { margin-bottom: 18px; color: #827874; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.footer-grid > div:not(:first-child) > a, .footer-grid > div:not(:first-child) > p { display: block; width: fit-content; margin-bottom: 9px; color: #d3cac6; font-size: 11px; }
.footer-grid .button { margin-top: 12px; border-color: rgba(255,255,255,.4); color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #817672; font-size: 9px; }
.footer-bottom button { color: inherit; font-size: inherit; }

/* Overlays and floating UI */
.floating-book { position: fixed; z-index: 60; right: 26px; bottom: 25px; width: 62px; height: 62px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--accent); color: white; box-shadow: 0 12px 30px rgba(127,62,73,.3); transition: transform .3s; }
.floating-book:hover { transform: translateY(-4px) rotate(3deg); }
.floating-book span { font-size: 18px; line-height: 1; }.floating-book small { font-size: 8px; }
.back-to-top { position: fixed; z-index: 59; right: 34px; bottom: 98px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-notice { position: fixed; z-index: 80; left: 22px; bottom: 22px; max-width: 360px; display: flex; align-items: center; gap: 18px; padding: 15px 16px 15px 19px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(12px); transition: opacity .3s, transform .3s; }
.cookie-notice.hidden { opacity: 0; transform: translateY(15px); pointer-events: none; }
.cookie-notice p { font-size: 9px; line-height: 1.5; }.cookie-notice button { min-height: 36px; padding: 5px 14px; border-radius: 99px; background: var(--ink); color: white; font-size: 9px; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 12px; min-width: 280px; padding: 14px 18px; border-radius: 12px; background: var(--ink); color: white; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: opacity .3s, transform .3s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }.toast span { color: #e8bdc1; }.toast p { font-size: 11px; }
.privacy-modal { width: min(560px, calc(100% - 32px)); padding: 45px; border: 0; border-radius: 22px; background: var(--bg-soft); }
.privacy-modal::backdrop { background: rgba(37,31,29,.7); backdrop-filter: blur(4px); }
.privacy-modal h2 { margin-bottom: 22px; font-size: 34px; }.privacy-modal p { color: var(--muted); }.modal-close { position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; }

/* Animations */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .28s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: translateY(0); } }
.service-card { animation: cardIn .45s both; }

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: var(--header-h) 0 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; background: rgba(248,244,241,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s, transform .3s, visibility .3s; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a:not(.button) { font-family: var(--serif); font-size: 28px; }
  .mobile-language-switch { display: flex; margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .hero-visual { min-height: 510px; }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .advantage-card:nth-child(2) { border-right: 0; }.advantage-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(7) { grid-column: span 1; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 36px, 700px); --header-h: 74px; }
  .header-book { display: none; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero-grid { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { width: 100%; padding-bottom: 0; text-align: center; }
  .hero-copy .eyebrow, .hero-buttons, .hero-proof { justify-content: center; }
  .hero-copy h1, .hero-text { margin-inline: auto; }
  .hero-visual { width: min(100%, 530px); height: 650px; align-self: center; }
  .hero-image-wrap { inset: 0 7%; }
  .trust-row { min-height: 130px; flex-wrap: wrap; justify-content: center; padding: 26px 0; }
  .trust-row > span { width: 100%; text-align: center; }
  .section-heading-row { display: block; }.section-heading-row > p { margin-top: 20px; }
  .service-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(85%, 480px); margin: 0 auto; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 35px; }
  .process-list li:nth-child(2)::after { display: none; }
  .reviews-grid, .booking-shell, .faq-grid, .contacts-grid { grid-template-columns: 1fr; }
  .reviews-intro { text-align: center; }.reviews-intro .eyebrow { justify-content: center; }.reviews-intro > p { margin-inline: auto; }.review-summary, .slider-controls { justify-content: center; }
  .booking-shell { border-radius: 26px; }
  .contact-details { padding-bottom: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .brand { font-size: 21px; }
  .header-actions { gap: 10px; }
  .brand, .lang-btn, .service-book, .text-link, .contact-socials a, .footer-grid a, .footer-bottom button { min-height: 44px; display: flex; align-items: center; }
  .hero { padding-top: calc(var(--header-h) + 28px); }
  .hero-copy h1 { font-size: clamp(43px, 13.2vw, 62px); }
  .hero-text { margin-top: 22px; font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-proof { gap: 13px; }.hero-proof .rating { display: none; }
  .hero-visual { height: 510px; min-height: 510px; }
  .hero-image-wrap { inset: 0 3%; border-radius: 160px 160px 15px 15px; }
  .steril-card { left: -2%; top: 27%; }.appointment-card { right: -1%; bottom: 8%; }
  .trust-row { justify-content: flex-start; gap: 13px 25px; }.trust-row > span { text-align: left; }.trust-row div { width: calc(50% - 13px); line-height: 1.3; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--line); }.advantage-card:last-child { border-bottom: 0; }.advantage-card svg { margin: 20px 0 25px; }
  .service-card { grid-template-columns: 1fr; gap: 22px; }.service-meta { justify-content: space-between; padding-left: 0; }
  .portfolio-tabs { justify-content: flex-start; }
  .gallery-grid { grid-auto-rows: 170px; gap: 8px; }.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; }
  .about-visual { width: 91%; }.experience-badge { right: -18px; width: 102px; height: 102px; }.signature { left: -10px; font-size: 38px; }
  .about-stats { grid-template-columns: 1fr 1fr; }.about-stats div { padding-bottom: 10px; }
  .process-list { grid-template-columns: 1fr; gap: 0; }.process-list li { min-height: 150px; padding: 0 0 35px 75px; }.process-list li > span { position: absolute; left: 0; top: 0; }.process-list li:not(:last-child)::after { top: 52px; bottom: 8px; left: 24px; right: auto; width: 1px; height: auto; }
  .review-card { padding: 35px 25px; }.review-card blockquote { min-height: 155px; font-size: 21px; }
  .booking-shell { width: calc(100% - 20px); padding: 45px 24px; }.messenger-links { grid-template-columns: 1fr; }.form-row { grid-template-columns: 1fr; gap: 0; }.booking-form { padding: 26px 20px; }
  .contact-details { grid-template-columns: 1fr; }.contact-socials { grid-column: auto; }.map-placeholder { min-height: 330px; }.map-pin { left: 25%; }.route-link { right: 15px; bottom: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; }
  .floating-book { right: 16px; bottom: 16px; width: 58px; height: 58px; }.back-to-top { right: 22px; bottom: 86px; }
  .cookie-notice { right: 14px; left: 14px; bottom: 14px; max-width: none; }
  .lightbox { padding: 15px; }.lightbox[open] { grid-template-columns: 45px minmax(0,1fr) 45px; }.lightbox button { width: 40px; height: 40px; }.lightbox-close { right: 12px; top: 12px; }
}

@media (max-width: 360px) {
  .header-actions .language-switch { display: none; }
  .hero-copy h1 { font-size: 41px; }
  .floating-card { padding: 11px; }.steril-card { left: 0; }.appointment-card { right: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
