/* ═══════════════════════════════════════════════════
   NOVA DENT — Soft Elegance Theme
   Dental Clinic Premium Website
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #fdf8f4;
  --surface: #f5ede5;
  --accent: #c48b6c;
  --accent-hover: #d4a080;
  --accent-light: rgba(196, 139, 108, 0.08);
  --text: #3a2e28;
  --text-muted: #8a7d76;
  --border: rgba(196, 139, 108, 0.2);
  --border-strong: rgba(196, 139, 108, 0.35);
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(58, 46, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(58, 46, 40, 0.08);
  --shadow-lg: 0 16px 48px rgba(58, 46, 40, 0.12);
  --shadow-accent: 0 8px 24px rgba(196, 139, 108, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-hover); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ── Section Spacing ── */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 64px; }
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

.section-header--center .section-label {
  justify-content: center;
}

.section-header--center .section-label::before {
  display: none;
}

/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .header__inner {
    height: 80px;
    padding: 0 40px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.header__logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-top: 1px;
}

/* Desktop nav */
.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav { display: flex; }
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--accent-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .burger { display: none; }
}

.burger:hover {
  background: var(--surface);
}

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger__line + .burger__line {
  margin-top: 5px;
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__link {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--accent);
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  margin-top: 32px;
  min-height: 52px;
  transition: var(--transition);
}

.mobile-menu__cta:hover {
  background: var(--accent-hover);
  color: var(--white) !important;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196, 139, 108, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196, 139, 108, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(245, 237, 229, 0.5) 0%, transparent 70%),
    var(--bg);
}

.hero__bg-ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-ornament::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.4;
}

.hero__bg-ornament::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid var(--border);
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0 80px;
}

@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 80px 0;
  }
}

.hero__text {
  order: 2;
}

@media (min-width: 768px) {
  .hero__text { order: 1; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    gap: 16px;
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero__stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Hero visual */
.hero__visual {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .hero__visual { order: 2; }
}

.hero__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

@media (min-width: 768px) {
  .hero__photo-grid { gap: 16px; }
}

.hero__photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.hero__photo-item:nth-child(1) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.hero__photo-item:nth-child(2),
.hero__photo-item:nth-child(3) {
  aspect-ratio: 1;
}

.hero__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero__photo-item:hover img {
  transform: scale(1.05);
}

.hero__photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  min-height: 48px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 139, 108, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn--white {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.82rem;
  min-height: 40px;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 0.95rem;
  min-height: 56px;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SERVICE CARDS (photo-overlay style)
   ═══════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  group: true;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(58, 46, 40, 0.85) 0%,
    rgba(58, 46, 40, 0.3) 40%,
    rgba(58, 46, 40, 0.05) 70%,
    transparent 100%
  );
  transition: var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(58, 46, 40, 0.9) 0%,
    rgba(58, 46, 40, 0.4) 50%,
    rgba(58, 46, 40, 0.1) 80%,
    transparent 100%
  );
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(8px);
  transition: transform var(--transition);
}

.service-card:hover .service-card__content {
  transform: translateY(0);
}

.service-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  margin-bottom: 16px;
}

.service-card:hover .service-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════
   GALLERY (lightbox-grid)
   ═══════════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 46, 40, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(58, 46, 40, 0.3);
}

.gallery-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--text);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(58, 46, 40, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  color: white;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ═══════════════════════════════════════════════════ */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-card__star {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

.review-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__text::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
  opacity: 0.5;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-card__info {
  padding: 24px;
}

.team-card__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════
   FEATURES / BENEFITS
   ═══════════════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════ */

.cta-banner {
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(196, 139, 108, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 60%, rgba(196, 139, 108, 0.1) 0%, transparent 60%),
    var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .cta-banner { padding: 80px 64px; }
}

.cta-banner__title {
  margin-bottom: 16px;
}

.cta-banner__text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 480px) {
  .cta-banner__actions { flex-direction: row; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   CONTACT INFO
   ═══════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-strong);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card__value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text);
}

.contact-card__value a {
  color: var(--text);
  text-decoration: none;
}

.contact-card__value a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════ */

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

@media (min-width: 768px) {
  .map-wrapper iframe { height: 450px; }
}

/* ═══════════════════════════════════════════════════
   STICKY BOTTOM BAR (CTA)
   ═══════════════════════════════════════════════════ */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-bar__text {
  display: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

@media (min-width: 480px) {
  .sticky-bar__text { display: block; }
}

.sticky-bar .btn {
  flex: 1;
  max-width: 280px;
}

@media (min-width: 480px) {
  .sticky-bar .btn { flex: none; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-bottom: 68px; /* space for sticky bar */
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__brand-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 340px;
}

.footer__title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li + li {
  margin-top: 12px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL (scale-up)
   ═══════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: scale(1) 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (interior pages)
   ═══════════════════════════════════════════════════ */

.page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(196, 139, 108, 0.06) 0%, transparent 60%),
    var(--bg);
  position: relative;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  color: var(--accent);
}

.page-hero__breadcrumb span {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE — Detailed
   ═══════════════════════════════════════════════════ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .service-detail { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.service-detail:nth-child(even) .service-detail__photo {
  order: 1;
}

@media (min-width: 768px) {
  .service-detail:nth-child(even) .service-detail__photo { order: 2; }
  .service-detail:nth-child(even) .service-detail__content { order: 1; }
}

.service-detail__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.service-detail__title {
  margin-bottom: 16px;
}

.service-detail__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════ */

.bg-surface { background-color: var(--surface); }

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Instagram icon special */
.ig-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Selection */
::selection {
  background: rgba(196, 139, 108, 0.2);
  color: var(--text);
}
