/* ═══════════════════════════════════════════════════
   BRACESMASTER — Minimalist Zen
   Solo dentist: Дастанбек Рустамбек уулу, Бишкек
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Karla:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #fafaf8;
  --surface: #f0f0ec;
  --accent: #2d5a3d;
  --accent-hover: #3a7250;
  --text: #1a1a18;
  --text-muted: #7a7a72;
  --border: #e0e0da;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Karla', sans-serif;
  --heading-weight: 500;
  --body-weight: 400;
  --base-size: 17px;
  --letter-spacing-heading: 0.02em;

  --radius: 2px;
  --radius-lg: 4px;
  --shadow-subtle: 0 1px 3px rgba(26,26,24,0.04);
  --shadow-card: 0 4px 20px rgba(26,26,24,0.06);
  --shadow-elevated: 0 12px 40px rgba(26,26,24,0.08);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: var(--body-weight);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { max-width: 65ch; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

img { display: block; max-width: 100%; height: auto; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--surface {
  background: var(--surface);
}

/* ─── Thin decorative line ─── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-subtle);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.header__logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.header__brand:hover .header__logo {
  border-color: var(--accent);
}

.header__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.header__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   HERO — Split Half
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--bg) 0%, #f4f4f0 40%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.3;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  gap: 2.5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 50ch;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Subtle frame decoration */
.hero__image-frame::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  min-height: 48px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,90,61,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0.9rem 1rem;
}
.btn--ghost:hover {
  color: var(--accent);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ═══════════════════════════════════════════════════
   INTRO STRIP (homepage)
   ═══════════════════════════════════════════════════ */
.intro {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.intro__item {
  text-align: center;
}

.intro__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.intro__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.intro__item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.intro__item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════ */
.quote-section {
  padding: 4rem 0;
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.quote-section blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--border);
  position: absolute;
  top: -1.2rem;
  left: -0.5rem;
  line-height: 1;
}

.quote-section cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   SERVICES — Photo Overlay Cards
   ═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__bg {
  transform: scale(1.03);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,24,0.85) 0%,
    rgba(26,26,24,0.4) 50%,
    rgba(26,26,24,0.1) 100%
  );
}

.service-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--white);
  width: 100%;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 45ch;
}

.service-card__price {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   GALLERY — Before/After
   ═══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.ba-card:hover {
  box-shadow: var(--shadow-card);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-card__side {
  position: relative;
  overflow: hidden;
}

.ba-card__side img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ba-card:hover .ba-card__side img {
  transform: scale(1.02);
}

.ba-card__label {
  position: absolute;
  bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26,26,24,0.6);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.ba-card__label--before { left: 0.75rem; }
.ba-card__label--after { right: 0.75rem; }

.ba-card__divider {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 3;
}

.ba-card__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ba-card__info {
  padding: 1.5rem 2rem;
}

.ba-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.ba-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   ABOUT / DOCTOR SECTION
   ═══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about__image::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.about__text {
  max-width: 550px;
}

.about__text .section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about__text .section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.about__text h2 {
  margin-bottom: 1.5rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color var(--transition);
}

.credential:hover {
  border-color: var(--accent);
}

.credential svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  max-width: 500px;
}

.contact-info .section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info .section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  min-height: 48px;
}

.contact-method:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-subtle);
  color: var(--text);
}

.contact-method__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.contact-method:hover .contact-method__icon {
  background: var(--accent);
}

.contact-method__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.contact-method:hover .contact-method__icon svg {
  stroke: var(--white);
}

.contact-method__text {
  display: flex;
  flex-direction: column;
}

.contact-method__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-method__value {
  font-size: 1rem;
  color: var(--text);
  margin-top: 0.15rem;
}

/* Contact image */
.contact-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 55ch;
  margin: 1rem auto 0;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   STICKY BOTTOM BAR (CTA)
   ═══════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  font-size: 0.78rem;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 3rem 0;
  padding-bottom: calc(3rem + 64px); /* space for sticky CTA */
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__brand span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════ */
.page-hero {
  padding: calc(72px + 4rem) 0 3rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.page-hero .section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.page-hero .section-tag::before,
.page-hero .section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 50ch;
  margin: 1rem auto 0;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS — fade-up
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet+
   ═══════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .sticky-cta {
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Desktop
   ═══════════════════════════════════════════════════ */
@media (min-width: 960px) {
  .hero__inner {
    flex-direction: row;
    padding: 0 3rem;
    gap: 4rem;
    min-height: calc(100vh - 72px);
  }

  .hero__content {
    flex: 1;
    padding: 4rem 0;
  }

  .hero__image {
    flex: 0 0 42%;
  }

  .nav {
    display: flex;
  }

  .burger {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: 380px;
  }

  .service-card:first-child {
    grid-column: span 2;
    min-height: 420px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .section {
    padding: 6rem 0;
  }

  .container {
    padding: 0 3rem;
  }

  .sticky-cta {
    padding: 0.75rem 3rem;
  }
}

/* Large desktop refinements */
@media (min-width: 1200px) {
  .hero__inner {
    gap: 6rem;
  }

  .hero__image {
    flex: 0 0 38%;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card:first-child {
    grid-column: span 1;
  }
}
