/* ==========================================================================
   NailGlow — design system (pastel light theme)
   Warm cream, white cards, dusty-rose accent. Elegant & editorial.
   ========================================================================== */

/* ---------- Fonts (bundled, Cyrillic + Latin) ---------------------------- */
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/manrope-400.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/manrope-500.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/manrope-600.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/manrope-700.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/manrope-800.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/raleway-300.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/raleway-500.woff2") format("woff2"); }
@font-face { font-family: "Raleway"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/raleway-600.woff2") format("woff2"); }
/* Logotype face (Latin, wordmark only) — thin geometric */
@font-face { font-family: "Jost"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/jost-300.woff2") format("woff2"); }

/* ---------- Tokens ------------------------------------------------------- */
:root {
	--ng-bg: #f7f0ea;
	--ng-bg-2: #f1e7df;
	--ng-surface: #ffffff;
	--ng-surface-2: #fbf3ee;
	--ng-surface-3: #f2e5dc;

	--ng-accent: #cf938e;
	--ng-accent-light: #ecc9c4;
	--ng-accent-soft: #f4ded9;
	--ng-accent-deep: #9c5f5a;

	--ng-heading: #3a302b;
	--ng-text: #4c4139;
	--ng-muted: #8c7d72;
	--ng-on-accent: #ffffff;

	--ng-line: rgba(74, 55, 45, 0.12);
	--ng-line-2: rgba(74, 55, 45, 0.20);

	/* Backwards-compatible aliases (used by inline SVG icons etc.) */
	--ng-ink: var(--ng-bg);
	--ng-cream: var(--ng-heading);

	--ng-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	/* Display face — kept under the --ng-serif name for compatibility, but it is
	   now the thin, minimalist Raleway (no serifs). */
	--ng-serif: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--ng-accent-grad: linear-gradient(120deg, #d7a29b 0%, #c4837c 52%, #a5645f 100%);

	--ng-radius: 18px;
	--ng-radius-sm: 12px;
	--ng-radius-lg: 28px;

	--ng-shadow: 0 34px 70px -36px rgba(120, 80, 72, 0.34);
	--ng-shadow-sm: 0 18px 40px -26px rgba(120, 80, 72, 0.26);
	--ng-shadow-card: 0 14px 34px -24px rgba(120, 80, 72, 0.28);
	--ng-glow: 0 0 0 1px rgba(207, 147, 142, 0.30), 0 30px 70px -30px rgba(207, 147, 142, 0.55);

	--ng-container: 1200px;
	--ng-gutter: clamp(1.15rem, 4vw, 2.5rem);
	--ng-section-y: clamp(4rem, 8vw, 7.5rem);
	--ng-header-h: 78px;

	--ng-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--ng-t: 0.35s var(--ng-ease);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--ng-sans);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ng-text);
	background-color: var(--ng-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.ng-noscroll { overflow: hidden; }

h1, h2, h3, h4, h5 { font-family: var(--ng-serif); font-weight: 500; line-height: 1.16; color: var(--ng-heading); margin: 0 0 0.5em; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--ng-accent-deep); text-decoration: none; transition: color var(--ng-t); }
a:hover { color: var(--ng-heading); }

img { max-width: 100%; height: auto; display: block; }
picture { display: contents; } /* wrapper is layout-transparent: `.frame img` rules still apply */

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--ng-accent); color: #fff; }

:focus-visible { outline: 2px solid var(--ng-accent); outline-offset: 3px; }

/* ---------- Layout helpers ---------------------------------------------- */
.ng-container { width: 100%; max-width: var(--ng-container); margin-inline: auto; padding-inline: var(--ng-gutter); }

.ng-section { padding-block: var(--ng-section-y); position: relative; }

.ng-main { display: block; }

/* Section header */
.ng-sec-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.ng-sec-head.is-center { margin-inline: auto; text-align: center; }

.ng-eyebrow {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-family: var(--ng-sans); font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.24em; text-transform: uppercase; color: var(--ng-accent-deep);
}
.ng-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ng-accent); display: inline-block; }
.is-center .ng-eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--ng-accent); display: inline-block; }

.ng-sec-title { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0.7rem 0 0; letter-spacing: -0.01em; }
.ng-sec-title em { font-style: normal; color: var(--ng-accent-deep); }

/* ---------- Buttons ------------------------------------------------------ */
.ng-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
	font-family: var(--ng-sans); font-size: 0.82rem; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--ng-on-accent); background: var(--ng-accent-grad);
	border: 0; border-radius: 999px; padding: 0.95rem 1.8rem;
	transition: transform var(--ng-t), box-shadow var(--ng-t), filter var(--ng-t);
	box-shadow: 0 16px 32px -18px rgba(165, 100, 95, 0.65);
	white-space: nowrap;
}
.ng-btn:hover { color: var(--ng-on-accent); transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 22px 42px -18px rgba(165, 100, 95, 0.75); }
.ng-btn .ng-icon { transition: transform var(--ng-t); }
.ng-btn:hover .ng-icon { transform: translateX(3px); }

.ng-btn--ghost { background: transparent; color: var(--ng-heading); border: 1px solid var(--ng-line-2); box-shadow: none; }
.ng-btn--ghost:hover { color: var(--ng-accent-deep); border-color: var(--ng-accent); background: rgba(207, 147, 142, 0.10); box-shadow: none; }

.ng-btn--sm { padding: 0.7rem 1.3rem; font-size: 0.75rem; }
.ng-btn--block { width: 100%; }

/* ---------- Icons / stars / socials ------------------------------------- */
.ng-icon { flex: none; }
.ng-stars { display: inline-flex; gap: 3px; color: var(--ng-accent); }
.ng-star { color: rgba(74, 55, 45, 0.18); line-height: 0; }
.ng-star.is-on { color: var(--ng-accent); }

.ng-socials { display: flex; gap: 0.6rem; }
.ng-social {
	width: 42px; height: 42px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--ng-accent-deep); background: var(--ng-surface-2);
	border: 1px solid var(--ng-line); transition: var(--ng-t);
}
.ng-social:hover { color: var(--ng-on-accent); background: var(--ng-accent-grad); border-color: transparent; transform: translateY(-2px); }
.ng-socials--lg .ng-social { width: 48px; height: 48px; }

/* ---------- Reveal on scroll -------------------------------------------- */
.ng-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ng-ease), transform 0.7s var(--ng-ease); }
.ng-reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.ng-header {
	position: sticky; top: 0; z-index: 60;
	transition: background var(--ng-t), box-shadow var(--ng-t), backdrop-filter var(--ng-t);
}
.ng-header__inner {
	display: flex; align-items: center; gap: 1.5rem;
	min-height: var(--ng-header-h);
}
.ng-header.is-scrolled {
	background: rgba(247, 240, 234, 0.82);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--ng-line), 0 18px 40px -30px rgba(120, 80, 72, 0.35);
}

.ng-brand__link { display: inline-flex; align-items: center; line-height: 1; }
.ng-brand__wordmark { font-family: "Jost", "Century Gothic", "Futura", sans-serif; font-weight: 300; font-size: 1.65rem; letter-spacing: 0.02em; color: var(--ng-heading); line-height: 1; }
.ng-brand__glow { color: var(--ng-accent-deep); transition: color var(--ng-t); }
.ng-brand__link:hover .ng-brand__glow { color: var(--ng-heading); }
.ng-brand .custom-logo { max-height: 46px; width: auto; }

.ng-nav { margin-right: auto; margin-left: clamp(1.5rem, 3vw, 3rem); }
.ng-menu { display: flex; align-items: center; gap: 1.15rem; list-style: none; margin: 0; padding: 0; }
.ng-menu a {
	position: relative; font-size: 0.86rem; font-weight: 600; color: var(--ng-text);
	letter-spacing: 0.02em; padding: 0.4rem 0; white-space: nowrap;
}
.ng-menu a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
	background: var(--ng-accent); transition: width var(--ng-t);
}
.ng-menu a:hover, .ng-menu a.is-active { color: var(--ng-heading); }
.ng-menu a:hover::after, .ng-menu a.is-active::after { width: 100%; }

.ng-header__actions { display: flex; align-items: center; gap: 0.85rem; }
.ng-header__phone { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ng-heading); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.ng-header__phone:hover { color: var(--ng-accent-deep); }
.ng-header__phone .ng-icon { color: var(--ng-accent-deep); }

.ng-burger { display: none; flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--ng-surface-2); border: 1px solid var(--ng-line); color: var(--ng-heading); align-items: center; justify-content: center; }

/* Mobile drawer */
.ng-mobile { position: fixed; inset: 0; z-index: 80; background: rgba(58, 44, 40, 0.35); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s var(--ng-ease); }
.ng-mobile.is-open { opacity: 1; }
.ng-mobile__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 360px);
	background: var(--ng-surface); border-left: 1px solid var(--ng-line);
	padding: 1.5rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.2rem;
	transform: translateX(100%); transition: transform 0.32s var(--ng-ease);
	overflow-y: auto; box-shadow: -30px 0 60px -40px rgba(120, 80, 72, 0.4);
}
.ng-mobile.is-open .ng-mobile__panel { transform: none; }
.ng-mobile__close { align-self: flex-end; flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--ng-surface-2); border: 1px solid var(--ng-line); color: var(--ng-heading); display: inline-flex; align-items: center; justify-content: center; }
.ng-mobile__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ng-mobile__menu li { border-bottom: 1px solid var(--ng-line); }
.ng-mobile__menu a { display: block; padding: 0.95rem 0.2rem; font-family: var(--ng-serif); font-size: 1.35rem; color: var(--ng-heading); }
.ng-mobile__menu a:hover { color: var(--ng-accent-deep); }
.ng-mobile__phone { text-align: center; font-weight: 700; color: var(--ng-heading); font-size: 1.05rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.ng-hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.ng-hero__glow {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(58% 58% at 82% 10%, rgba(207, 147, 142, 0.28), transparent 60%),
		radial-gradient(52% 52% at 6% 92%, rgba(236, 201, 196, 0.40), transparent 62%);
}
.ng-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; min-height: 60vh; }

.ng-hero__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	background: rgba(207, 147, 142, 0.14); border: 1px solid rgba(156, 95, 90, 0.28);
	color: var(--ng-accent-deep); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
	padding: 0.5rem 1rem; border-radius: 999px; margin-bottom: 1.6rem;
}
.ng-hero__title { font-size: clamp(2.3rem, 5.6vw, 4.3rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 1.2rem; color: var(--ng-heading); }
.ng-hero__title em { font-weight: 400; }
.ng-hero__title em { font-style: normal; color: var(--ng-accent-deep); }
.ng-hero__sub { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--ng-muted); max-width: 30rem; margin-bottom: 2rem; }
.ng-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.ng-hero__meta { display: flex; gap: clamp(1.2rem, 3vw, 2.5rem); flex-wrap: wrap; }
.ng-hero__stat { display: flex; flex-direction: column; }
.ng-hero__stat strong { font-family: var(--ng-serif); font-weight: 500; font-size: 1.9rem; color: var(--ng-heading); line-height: 1; }
.ng-hero__stat span { font-size: 0.78rem; color: var(--ng-muted); letter-spacing: 0.04em; margin-top: 0.3rem; }
.ng-hero__stat + .ng-hero__stat { padding-left: clamp(1.2rem, 3vw, 2.5rem); border-left: 1px solid var(--ng-line); }

.ng-hero__media { position: relative; }
.ng-hero__frame {
	position: relative; border-radius: var(--ng-radius-lg); overflow: hidden;
	box-shadow: var(--ng-shadow); border: 1px solid var(--ng-line-2);
	aspect-ratio: 4 / 5;
}
.ng-hero__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(70, 50, 46, 0.20)); }
.ng-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.ng-hero__media::before {
	content: ""; position: absolute; inset: auto -14px -14px auto; width: 62%; height: 62%;
	border: 1px solid var(--ng-accent); border-radius: var(--ng-radius-lg); z-index: -1;
}
.ng-hero__float {
	position: absolute; left: -18px; bottom: 30px;
	background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
	border: 1px solid var(--ng-line-2); border-radius: var(--ng-radius);
	padding: 0.85rem 1.1rem; box-shadow: var(--ng-shadow-sm); display: flex; flex-direction: column; gap: 0.25rem;
}
.ng-hero__float-text { font-size: 0.82rem; color: var(--ng-heading); font-weight: 600; }

.ng-hero__scroll { position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); z-index: 2; color: var(--ng-accent-deep); animation: ng-bob 2.2s var(--ng-ease) infinite; }
@keyframes ng-bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ==========================================================================
   About
   ========================================================================== */
.ng-about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ng-about__media { position: relative; }
.ng-about__frame { border-radius: var(--ng-radius-lg); overflow: hidden; border: 1px solid var(--ng-line-2); box-shadow: var(--ng-shadow); aspect-ratio: 4 / 5; }
.ng-about__frame img { width: 100%; height: 100%; object-fit: cover; }
.ng-about__badge {
	position: absolute; right: -14px; bottom: 26px;
	background: var(--ng-accent-grad); color: var(--ng-on-accent); border-radius: var(--ng-radius);
	padding: 0.9rem 1.15rem; text-align: center; box-shadow: var(--ng-shadow-sm);
}
.ng-about__badge strong { display: block; font-family: var(--ng-serif); font-weight: 600; font-size: 1.9rem; line-height: 1; }
.ng-about__badge span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

.ng-about__lead { color: var(--ng-muted); font-size: 1.05rem; margin-bottom: 2rem; }

.ng-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.2rem; }
.ng-feature { background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius); padding: 1.4rem 1.2rem; box-shadow: var(--ng-shadow-card); transition: var(--ng-t); }
.ng-feature:hover { border-color: var(--ng-accent); transform: translateY(-4px); box-shadow: var(--ng-shadow-sm); }
.ng-feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--ng-accent-soft); color: var(--ng-accent-deep); margin-bottom: 0.9rem; }
.ng-feature__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
.ng-feature__text { font-size: 0.88rem; color: var(--ng-muted); margin: 0; line-height: 1.6; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.ng-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.ng-gallery__item { position: relative; overflow: hidden; border-radius: var(--ng-radius); border: 1px solid var(--ng-line); box-shadow: var(--ng-shadow-card); }
.ng-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ng-ease); }
.ng-gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(60, 42, 38, 0.42)); opacity: 0; transition: opacity var(--ng-t); }
.ng-gallery__item:hover img { transform: scale(1.07); }
.ng-gallery__item:hover::after { opacity: 1; }
.ng-gallery__zoom { position: absolute; right: 0.8rem; bottom: 0.8rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.88); color: var(--ng-accent-deep); display: inline-flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: var(--ng-t); z-index: 1; }
.ng-gallery__item:hover .ng-gallery__zoom { opacity: 1; transform: none; }
/* Feature a couple of tiles for rhythm */
.ng-gallery__item:nth-child(1) { grid-row: span 2; }
.ng-gallery__item:nth-child(6) { grid-column: span 2; }
.ng-gallery__cta { text-align: center; margin-top: 2.2rem; }

/* Lightbox */
.ng-lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; gap: 1rem; padding: clamp(1rem, 4vw, 3rem); background: rgba(44, 32, 28, 0.9); backdrop-filter: blur(6px); }
.ng-lightbox.is-open { display: flex; }
.ng-lightbox__figure { margin: 0; max-width: min(900px, 92vw); max-height: 86vh; }
.ng-lightbox__figure img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: var(--ng-radius-sm); box-shadow: var(--ng-shadow); }
.ng-lightbox__close { position: absolute; top: 1.2rem; right: 1.5rem; width: 48px; height: 48px; border-radius: 50%; background: var(--ng-surface); border: 1px solid var(--ng-line); color: var(--ng-heading); font-size: 1.6rem; line-height: 1; }
.ng-lightbox__nav { width: 52px; height: 52px; border-radius: 50%; background: var(--ng-surface); border: 1px solid var(--ng-line); color: var(--ng-heading); font-size: 1.7rem; line-height: 1; flex: none; }
.ng-lightbox__nav:hover, .ng-lightbox__close:hover { background: var(--ng-accent-grad); color: var(--ng-on-accent); border-color: transparent; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.ng-reviews { background: var(--ng-bg-2); }
.ng-reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ng-review { position: relative; background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius); padding: 1.6rem 1.4rem; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; box-shadow: var(--ng-shadow-card); transition: var(--ng-t); }
.ng-review:hover { border-color: var(--ng-accent); transform: translateY(-4px); box-shadow: var(--ng-shadow-sm); }
.ng-review__quote { position: absolute; top: 1.1rem; right: 1.1rem; color: rgba(207, 147, 142, 0.36); }
.ng-review__text { margin: 0; font-size: 0.94rem; color: var(--ng-text); line-height: 1.65; }
.ng-review__author { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.ng-review__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--ng-line-2); }
.ng-review__name { font-family: var(--ng-serif); font-weight: 500; font-size: 1.05rem; color: var(--ng-heading); }

/* ==========================================================================
   Loyalty
   ========================================================================== */
.ng-loyalty { position: relative; overflow: hidden; }
.ng-loyalty::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 80% at 50% -10%, rgba(236, 201, 196, 0.45), transparent 60%); }
.ng-loyalty > .ng-container { position: relative; z-index: 1; }
.ng-loyalty__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.ng-loyalty__card { background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-lg); padding: 2.2rem 1.8rem; text-align: center; box-shadow: var(--ng-shadow-card); transition: var(--ng-t); }
.ng-loyalty__card:hover { transform: translateY(-6px); border-color: var(--ng-accent); box-shadow: var(--ng-shadow-sm); }
.ng-loyalty__card.is-featured { background: var(--ng-accent-grad); border-color: transparent; box-shadow: var(--ng-glow); transform: scale(1.02); }
.ng-loyalty__value { font-family: var(--ng-serif); font-size: 2.6rem; font-weight: 600; color: var(--ng-accent-deep); line-height: 1; display: block; margin-bottom: 0.8rem; }
.ng-loyalty__card.is-featured .ng-loyalty__value { color: var(--ng-on-accent); }
.ng-loyalty__title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ng-loyalty__card.is-featured .ng-loyalty__title { color: var(--ng-on-accent); }
.ng-loyalty__text { font-size: 0.9rem; color: var(--ng-muted); margin: 0; }
.ng-loyalty__card.is-featured .ng-loyalty__text { color: rgba(255, 255, 255, 0.88); }
.ng-loyalty__cta { text-align: center; margin-top: 2.4rem; }

/* ==========================================================================
   Price
   ========================================================================== */
.ng-price { background: var(--ng-bg-2); }
.ng-price__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ng-price__list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.ng-price__row { display: flex; align-items: baseline; gap: 0.8rem; padding: 1rem 0; border-bottom: 1px solid var(--ng-line); }
.ng-price__name { font-size: 1.02rem; color: var(--ng-text); font-weight: 500; }
.ng-price__dots { flex: 1; border-bottom: 1px dotted rgba(74, 55, 45, 0.30); transform: translateY(-4px); }
.ng-price__value { font-family: var(--ng-serif); font-size: 1.2rem; color: var(--ng-accent-deep); font-weight: 600; white-space: nowrap; }
.ng-price__note { font-size: 0.85rem; color: var(--ng-muted); margin-bottom: 1.6rem; }

.ng-price__media { position: relative; }
.ng-price__media img { border-radius: var(--ng-radius-lg); border: 1px solid var(--ng-line-2); box-shadow: var(--ng-shadow); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.ng-price__tag {
	position: absolute; left: -16px; top: 26px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px);
	border: 1px solid var(--ng-line-2); border-radius: var(--ng-radius); padding: 0.8rem 1.1rem; text-align: center; box-shadow: var(--ng-shadow-sm);
}
.ng-price__tag-label { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ng-muted); }
.ng-price__tag-value { display: block; font-family: var(--ng-serif); font-size: 1.5rem; color: var(--ng-accent-deep); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.ng-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ng-faq__intro p { color: var(--ng-muted); margin: 1rem 0 1.6rem; }
.ng-faq__list { display: flex; flex-direction: column; gap: 0.8rem; }
.ng-faq__item { background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius); overflow: hidden; box-shadow: var(--ng-shadow-card); transition: border-color var(--ng-t); }
.ng-faq__item:has(.ng-faq__q[aria-expanded="true"]) { border-color: var(--ng-accent); }
.ng-faq__heading { margin: 0; }
.ng-faq__q {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	background: transparent; border: 0; text-align: left; padding: 1.15rem 1.4rem;
	font-family: var(--ng-sans); font-size: 1rem; font-weight: 600; color: var(--ng-heading);
}
.ng-faq__q-icon { flex: none; color: var(--ng-accent-deep); transition: transform var(--ng-t); }
.ng-faq__q[aria-expanded="true"] .ng-faq__q-icon { transform: rotate(180deg); }
.ng-faq__a { height: 0; overflow: hidden; transition: height 0.32s var(--ng-ease); }
.ng-faq__a-inner { padding: 0 1.4rem 1.3rem; }
.ng-faq__a-inner p { margin: 0; color: var(--ng-muted); font-size: 0.94rem; }

/* ==========================================================================
   Contacts
   ========================================================================== */
.ng-contacts { position: relative; overflow: hidden; }
.ng-contacts::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(247, 240, 234, 0.90), rgba(247, 240, 234, 0.96)), url("../images/hero-2.jpg"); background-size: cover; background-position: center; z-index: 0; }
.ng-contacts > .ng-container { position: relative; z-index: 1; }
.ng-contacts__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.ng-contacts__info { background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 1.4rem; box-shadow: var(--ng-shadow-sm); }
.ng-contacts__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.15rem; }
.ng-contacts__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.ng-contacts__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--ng-accent-soft); color: var(--ng-accent-deep); display: inline-flex; align-items: center; justify-content: center; }
.ng-contacts__label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ng-muted); margin-bottom: 0.15rem; }
.ng-contacts__list a { color: var(--ng-heading); font-weight: 600; }
.ng-contacts__list a:hover { color: var(--ng-accent-deep); }
.ng-contacts__map { border-radius: var(--ng-radius-lg); overflow: hidden; border: 1px solid var(--ng-line-2); min-height: 360px; box-shadow: var(--ng-shadow); }
.ng-contacts__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(0.15) contrast(1.02); }
.ng-contacts__map-placeholder { width: 100%; height: 100%; min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; color: var(--ng-muted); background: var(--ng-surface-2); }

/* ==========================================================================
   Footer
   ========================================================================== */
.ng-footer { background: var(--ng-bg-2); border-top: 1px solid var(--ng-line); padding-top: clamp(3rem, 6vw, 5rem); }
.ng-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.ng-footer__name { font-family: "Jost", "Century Gothic", "Futura", sans-serif; font-weight: 300; font-size: 1.75rem; letter-spacing: 0.02em; color: var(--ng-heading); display: inline-block; line-height: 1; margin-bottom: 0.7rem; }
.ng-footer__tagline { color: var(--ng-muted); font-size: 0.9rem; max-width: 22rem; margin-bottom: 1.2rem; }
.ng-footer__title { font-family: var(--ng-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ng-accent-deep); margin-bottom: 1rem; }
.ng-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.ng-footer__list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ng-muted); font-size: 0.9rem; }
.ng-footer__list .ng-icon { color: var(--ng-accent-deep); flex: none; margin-top: 2px; }
.ng-footer__list a { color: var(--ng-muted); }
.ng-footer__list a:hover { color: var(--ng-accent-deep); }
.ng-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.ng-footer__menu a { color: var(--ng-muted); font-size: 0.9rem; }
.ng-footer__menu a:hover { color: var(--ng-accent-deep); }
.ng-footer__cta p { color: var(--ng-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.ng-footer__widgets { padding: 1.5rem 0; border-top: 1px solid var(--ng-line); color: var(--ng-muted); }
.ng-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0 2.5rem; border-top: 1px solid var(--ng-line); font-size: 0.82rem; color: var(--ng-muted); }
.ng-footer__bottom p { margin: 0; }

.ng-totop { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 55; width: 48px; height: 48px; border-radius: 50%; background: var(--ng-accent-grad); color: var(--ng-on-accent); border: 0; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--ng-shadow-sm); opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--ng-t); }
.ng-totop .ng-icon { transform: rotate(-90deg); }
.ng-totop.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ==========================================================================
   Inner pages (blog / posts / pages / search / 404)
   ========================================================================== */
.ng-page { padding-block: clamp(3rem, 6vw, 6rem); min-height: 60vh; }
.ng-page__inner--narrow { max-width: 820px; }
.ng-page__head { margin-bottom: 2.5rem; }
.ng-page__title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.6rem 0 0; }
.ng-page__title span { color: var(--ng-accent-deep); }
.ng-page__desc { color: var(--ng-muted); margin-top: 1rem; }

.ng-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.ng-entry { background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--ng-shadow-card); }
.ng-page__inner--narrow .ng-entry { background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.ng-entry__thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ng-entry__thumb--single img { aspect-ratio: 16 / 8; border-radius: var(--ng-radius-lg); margin-bottom: 1.5rem; }
.ng-entry__body { padding: 1.6rem; }
.ng-page__inner--narrow .ng-entry__body { padding: 0; }
.ng-entry__title { font-size: 1.4rem; margin-bottom: 0.6rem; }
.ng-page__inner--narrow .ng-entry__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.ng-entry__title a { color: var(--ng-heading); }
.ng-entry__title a:hover { color: var(--ng-accent-deep); }
.ng-entry__meta { font-size: 0.82rem; color: var(--ng-muted); display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.ng-entry__meta a { color: var(--ng-muted); }
.ng-entry__content { color: var(--ng-text); }
.ng-entry__content a { text-decoration: underline; text-underline-offset: 3px; }
.ng-entry__content h2, .ng-entry__content h3 { margin-top: 2rem; }
.ng-entry__content img { border-radius: var(--ng-radius); margin: 1.5rem 0; }
.ng-entry__content blockquote { border-left: 3px solid var(--ng-accent); padding-left: 1.2rem; margin: 1.5rem 0; font-family: var(--ng-serif); font-style: italic; font-size: 1.2rem; color: var(--ng-heading); }
.ng-entry__more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-weight: 600; text-decoration: none; }
.ng-entry__footer { margin-top: 1.5rem; }
.ng-tags a { display: inline-block; font-size: 0.78rem; padding: 0.3rem 0.8rem; border: 1px solid var(--ng-line); border-radius: 999px; margin: 0 0.3rem 0.3rem 0; color: var(--ng-muted); }

.ng-empty { color: var(--ng-muted); }

.pagination, .navigation.pagination { margin-top: 2.5rem; }
.pagination .nav-links, .navigation .nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.pagination a, .pagination span, .navigation .nav-links a, .navigation .nav-links span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 0.8rem; border-radius: 12px; border: 1px solid var(--ng-line); color: var(--ng-text); font-weight: 600; }
.pagination a:hover, .navigation .nav-links a:hover { border-color: var(--ng-accent); color: var(--ng-accent-deep); }
.pagination .current, .navigation .nav-links .current { background: var(--ng-accent-grad); color: var(--ng-on-accent); border-color: transparent; }

.ng-postnav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--ng-line); display: flex; justify-content: space-between; gap: 1rem; }
.ng-postnav a { color: var(--ng-heading); font-family: var(--ng-serif); font-size: 1.1rem; }
.ng-postnav__label { display: block; font-family: var(--ng-sans); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ng-accent-deep); margin-bottom: 0.3rem; }

/* 404 */
.ng-404__inner { text-align: center; max-width: 560px; margin-inline: auto; }
.ng-404__code { font-family: var(--ng-serif); font-size: clamp(5rem, 16vw, 10rem); font-weight: 600; line-height: 0.9; color: transparent; background: var(--ng-accent-grad); -webkit-background-clip: text; background-clip: text; display: block; }
.ng-404__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin: 1.6rem 0 2rem; }

/* Search form */
.ng-search { display: flex; gap: 0.6rem; max-width: 460px; }
.ng-page__head .ng-search { margin-top: 1.4rem; }
.ng-404 .ng-search { margin-inline: auto; }
.ng-search__field { flex: 1; background: var(--ng-surface); border: 1px solid var(--ng-line-2); border-radius: 999px; padding: 0.8rem 1.2rem; color: var(--ng-heading); font-family: inherit; }
.ng-search__field::placeholder { color: var(--ng-muted); }
.ng-search__field:focus { outline: none; border-color: var(--ng-accent); }
.ng-search__submit { background: var(--ng-accent-grad); color: var(--ng-on-accent); border: 0; border-radius: 999px; padding: 0.8rem 1.4rem; font-weight: 700; }

/* Comments */
.ng-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--ng-line); }
.ng-comments__title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.ng-comments__list { list-style: none; margin: 0 0 2rem; padding: 0; }
.ng-comments__list ol { list-style: none; }
.ng-comments .comment-body { padding: 1.2rem 0; border-bottom: 1px solid var(--ng-line); }
.ng-comments .comment-author { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.ng-comments .comment-author .fn { font-family: var(--ng-serif); color: var(--ng-heading); font-style: normal; }
.ng-comments .avatar { border-radius: 50%; }
.ng-comment-form input[type="text"], .ng-comment-form input[type="email"], .ng-comment-form input[type="url"], .ng-comment-form textarea, .comment-form input:not([type="submit"]):not([type="checkbox"]), .comment-form textarea { width: 100%; background: var(--ng-surface); border: 1px solid var(--ng-line-2); border-radius: var(--ng-radius-sm); padding: 0.8rem 1rem; color: var(--ng-heading); font-family: inherit; margin-top: 0.4rem; }
.comment-form label { color: var(--ng-muted); font-size: 0.85rem; }
.comment-form .form-submit input, .comment-form input[type="submit"] { background: var(--ng-accent-grad); color: var(--ng-on-accent); border: 0; border-radius: 999px; padding: 0.85rem 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
	.ng-header__phone { display: none; } /* Keep the header uncrowded with the switcher; phone stays in the drawer. */
}

@media (max-width: 1024px) {
	.ng-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.ng-hero__media { max-width: 460px; }
	.ng-about__grid { grid-template-columns: 1fr; }
	.ng-about__media { max-width: 440px; }
	.ng-faq__grid { grid-template-columns: 1fr; }
	.ng-price__grid { grid-template-columns: 1fr; }
	.ng-price__media { max-width: 460px; }
	.ng-contacts__grid { grid-template-columns: 1fr; }
	.ng-reviews__grid { grid-template-columns: repeat(2, 1fr); }
	.ng-footer__top { grid-template-columns: 1fr 1fr; }
	.ng-gallery__grid { grid-template-columns: repeat(3, 1fr); }
	.ng-gallery__item:nth-child(6) { grid-column: auto; }
}

@media (max-width: 860px) {
	.ng-menu, .ng-header__phone { display: none; }
	.ng-burger { display: inline-flex; }
	.ng-nav { margin-left: 0; }
	.ng-features { grid-template-columns: 1fr; }
	.ng-loyalty__grid { grid-template-columns: 1fr; }
	.ng-loyalty__card.is-featured { transform: none; }
	.ng-posts { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	:root { --ng-header-h: 66px; }
	.ng-hero__meta { gap: 1rem; }
	.ng-hero__stat + .ng-hero__stat { padding-left: 1rem; }
	.ng-hero__float { left: 0; }
	.ng-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
	.ng-gallery__item:nth-child(1) { grid-row: auto; }
	.ng-reviews__grid { grid-template-columns: 1fr; }
	.ng-footer__top { grid-template-columns: 1fr; }
	.ng-about__badge, .ng-price__tag, .ng-hero__float { position: relative; inset: auto; margin-top: 1rem; display: inline-flex; }
	.ng-hero__media::before { display: none; }
	.ng-btn { width: 100%; }
	.ng-hero__actions .ng-btn, .ng-404__actions .ng-btn { width: auto; }
}

/* ==========================================================================
   Language switcher
   ========================================================================== */
.ng-lang { display: inline-flex; align-items: center; gap: 2px; }
.ng-lang__item {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 34px; padding: 0.32rem 0.5rem; border-radius: 8px;
	font-family: var(--ng-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
	color: var(--ng-muted); text-transform: uppercase; line-height: 1;
	transition: var(--ng-t);
}
.ng-lang__item:hover { color: var(--ng-accent-deep); background: var(--ng-accent-soft); }
.ng-lang__item.is-current { color: var(--ng-on-accent); background: var(--ng-accent-grad); }

/* In the sticky header, sit between nav and phone. */
.ng-lang--header { margin-right: 0.25rem; padding: 3px; border: 1px solid var(--ng-line); border-radius: 12px; }

/* Full-width row inside the mobile drawer. */
.ng-lang--mobile { display: flex; justify-content: center; gap: 6px; margin-top: 0.5rem; }
.ng-lang--mobile .ng-lang__item { min-width: 48px; padding: 0.55rem 0.6rem; border: 1px solid var(--ng-line); font-size: 0.8rem; }

/* Footer — same treatment as the header (bordered pill; active item white on rose). */
.ng-lang--footer { padding: 3px; border: 1px solid var(--ng-line); border-radius: 12px; }

@media (max-width: 860px) {
	.ng-lang--header { display: none; } /* Below the burger breakpoint it lives in the drawer. */
}

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