/* =========================================================
   Huri Beauty — Bağdat Caddesi Güzellik Merkezi
   Premium nail & beauty tasarım sistemi
   ========================================================= */

:root {
  --nude-50:  #FBF6F1;
  --nude-100: #F6EDE4;
  --blush-200:#F0DCD0;
  --blush-300:#E5C4B6;
  --rose-400: #D4A99A;
  --gold-500: #C9A98A;
  --gold-600: #B08B65;
  --gold-700: #8E6A48;
  --ink-900:  #2A1F1A;
  --ink-700:  #4A3B33;
  --ink-500:  #6B5B4E;
  --line:     #EFE3D8;
  --white:    #FFFFFF;

  --shadow-sm: 0 2px 12px rgba(42, 31, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(42, 31, 26, 0.08);
  --shadow-lg: 0 24px 48px rgba(42, 31, 26, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease-out);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-900);
  background: var(--nude-50);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink-900);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { color: var(--ink-500); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }

.section-head p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* =========== Buttons =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink-900);
  color: var(--nude-50);
}
.btn-primary:hover {
  background: var(--gold-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(176, 139, 101, 0.35);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-900);
}
.btn-outline:hover {
  background: var(--ink-900);
  color: var(--nude-50);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1EBE5D;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

/* =========== Navbar =========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 246, 241, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(251, 246, 241, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-400));
  display: inline-block;
  position: relative;
}
.brand-mark::after {
  content: 'h';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 0.3rem 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-600);
  transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { display: flex; gap: 0.6rem; align-items: center; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-900);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========== Hero =========== */
.hero {
  padding: 160px 0 clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy .eyebrow { padding-left: 2.5rem; }
.hero-copy h1 { margin-bottom: 1.5rem; }
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 400;
}
.hero-copy p {
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--ink-900);
  display: block;
  line-height: 1;
}
.hero-meta-item .label {
  font-size: 0.82rem;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-200), var(--nude-100));
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(251, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
}
.hero-badge-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-400));
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.2rem;
}
.hero-badge-text .t { font-weight: 500; font-size: 0.92rem; }
.hero-badge-text .s { font-size: 0.78rem; color: var(--ink-500); }

/* =========== Services grid =========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .service-card-media img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-card-desc {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
  flex-grow: 1;
}
.service-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.service-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-700);
}
.service-card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card-link:hover { color: var(--gold-600); }

/* =========== Feature strip (öne çıkanlar) =========== */
.feature-strip {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nude-100);
  display: grid; place-items: center;
  color: var(--gold-600);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature h4 { font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.9rem; }

/* =========== About =========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { margin-bottom: 1.5rem; }
.about p { margin-bottom: 1.2rem; font-size: 1.02rem; }

.about-points {
  list-style: none;
  margin: 2rem 0 2.5rem;
  display: grid;
  gap: 0.9rem;
}
.about-points li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink-700);
}
.about-points li::before {
  content: '✦';
  color: var(--gold-600);
  font-size: 1rem;
  margin-top: 2px;
}

/* =========== Gallery =========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 31, 26, 0.5));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* =========== Testimonials =========== */
.testimonials {
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--nude-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold-500);
  opacity: 0.4;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold-500);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-400), var(--gold-500));
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}
.testimonial-name { font-weight: 500; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--ink-500); }

/* =========== Contact / CTA banner =========== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink-900), #3D2E24);
  color: var(--nude-50);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 169, 138, 0.25), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--nude-50); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(251, 246, 241, 0.75); margin-bottom: 2rem; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: inline-flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; position: relative; }

/* =========== Contact grid =========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--nude-100);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-600);
  font-size: 1.15rem;
}
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-500); margin-bottom: 0.3rem; }
.contact-item p { color: var(--ink-900); font-size: 1rem; font-weight: 500; }
.contact-item p.small { font-weight: 400; font-size: 0.9rem; color: var(--ink-500); margin-top: 0.2rem; }

.contact-map {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* =========== Footer =========== */
.footer {
  background: var(--ink-900);
  color: rgba(251, 246, 241, 0.75);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer .brand { color: var(--nude-50); margin-bottom: 1rem; }
.footer p { color: rgba(251, 246, 241, 0.6); font-size: 0.92rem; line-height: 1.7; }
.footer h5 {
  color: var(--nude-50);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: grid; gap: 0.6rem; }
.footer-links a {
  color: rgba(251, 246, 241, 0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-500); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(251, 246, 241, 0.08);
  display: grid; place-items: center;
  color: var(--nude-50);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold-600);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 246, 241, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(251, 246, 241, 0.5);
}

/* =========== Floating WhatsApp =========== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform var(--transition);
  font-size: 1.6rem;
}
.float-wa:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--white);
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =========== Services detail page =========== */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--nude-100), var(--nude-50));
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold-600); }

.service-section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.service-section:nth-child(even) {
  background: var(--nude-100);
}

.service-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-section:nth-child(even) .service-detail {
  grid-template-columns: 1fr 1.2fr;
}
.service-section:nth-child(even) .service-detail-media { order: -1; }

.service-detail-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }

.service-detail h2 { margin-bottom: 1rem; }

.price-table {
  margin: 1.5rem 0 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 0.98rem; color: var(--ink-700); }
.price-value { font-family: 'Playfair Display', serif; color: var(--gold-700); font-size: 1.05rem; }

.price-note {
  margin-top: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: var(--nude-100);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.55;
}
.price-note a {
  color: var(--gold-700);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========== Trend & Include lists (sub pages) =========== */
.include-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1.6rem;
}
.include-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink-700);
  padding: 0.7rem 1rem;
  background: var(--nude-100);
  border-radius: var(--radius-sm);
}
.include-list li::before {
  content: '✓';
  color: var(--gold-600);
  font-weight: 600;
  flex-shrink: 0;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.trend-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trend-card-media {
  aspect-ratio: 1;
  overflow: hidden;
}
.trend-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.trend-card:hover .trend-card-media img { transform: scale(1.06); }
.trend-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.trend-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.trend-card-desc {
  font-size: 0.85rem;
  color: var(--ink-500);
}

/* FAQ */
.faq { display: grid; gap: 0.8rem; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold-600);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--ink-500);
  line-height: 1.7;
}

/* Sticky sidebar for detail pages */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.detail-side {
  position: sticky;
  top: 100px;
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.detail-side h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.detail-side .price-highlight {
  font-family: 'Playfair Display', serif;
  color: var(--gold-700);
  font-size: 1.9rem;
  display: block;
  margin: 0.4rem 0 1rem;
}
.detail-side .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.detail-side .small {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Related services */
.related {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--nude-100);
}

/* =========== Responsive =========== */
@media (max-width: 960px) {
  .hero-inner,
  .about,
  .contact-grid,
  .service-detail,
  .service-section:nth-child(even) .service-detail,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-side { position: static; }
  .service-section:nth-child(even) .service-detail-media { order: 0; }
  .about-media, .service-detail-media { max-width: 520px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip { margin-top: 0; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-menu {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--nude-50);
    flex-direction: column;
    padding: 2rem var(--gutter) 3rem;
    gap: 1.6rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.btn-whatsapp) { display: none; }
  .hero { padding-top: 130px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-strip { grid-template-columns: 1fr; margin-top: 0; padding: 2rem; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* =========== Utilities =========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
