:root {
  --bg: #ffffff;
  --bg-soft: #f9f6ef;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: #ffffff;
  --line: rgba(186, 148, 83, 0.16);
  --line-strong: rgba(186, 148, 83, 0.34);
  --text: #221b14;
  --muted: #7a6b59;
  --primary: #b58b47;
  --primary-dark: #8f6b2f;
  --primary-soft: #f3ead9;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(84, 63, 33, 0.08);
  --shadow-soft: 0 10px 30px rgba(84, 63, 33, 0.06);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(181, 139, 71, 0.08), transparent 20%),
    radial-gradient(circle at 100% 10%, rgba(243, 234, 217, 0.8), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 46%, #fbf8f2 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.24), transparent 45%),
    radial-gradient(circle at 18% 0%, rgba(181, 139, 71, 0.04), transparent 22%);
}
img { max-width: 100%; display: block; }
.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 20px 0 52px; }
section { margin-top: 30px; }

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.topbar:hover { transform: translateY(-2px); }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand strong,.brand small { display: block; }
.brand strong { letter-spacing: -0.03em; }
.brand small,.footer-links,.contact-list,.social-meta span { color: var(--muted); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,241,230,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), 0 10px 24px rgba(181, 139, 71, 0.14);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.nav { display: flex; gap: 22px; }
.nav a,.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, rgba(181,139,71,0.15), rgba(181,139,71,0.95), rgba(181,139,71,0.15));
  transition: transform 0.25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav a:hover,.footer-links a:hover,.contact-list a:hover { color: var(--primary-dark); }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 1.1rem;
}

.hero,.split-section,.contact-section { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center; }
.hero { min-height: 80vh; padding: 32px 8px 20px; }
.eyebrow,.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(181, 139, 71, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(181, 139, 71, 0.06);
}
.hero h1,.split-section h2,.section-heading h2,.contact-copy h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.split-section h2,.section-heading h2,.contact-copy h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); }
.hero p,.split-section p,.section-heading p,.contact-copy p,.info-card p,.timeline p,.benefit-list p,.faq-content p,.footer p,.panel-copy p,.social-copy p,.social-points p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fffdf8;
  background: linear-gradient(135deg, #c4a060, #a87b33);
  box-shadow: 0 14px 34px rgba(181, 139, 71, 0.22);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(181, 139, 71, 0.28); }
.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(181, 139, 71, 0.18);
  background: rgba(255, 255, 255, 0.9);
}
.btn-secondary:hover { border-color: rgba(181, 139, 71, 0.38); background: rgba(255, 255, 255, 1); }
.quick-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.quick-points li { position: relative; padding-left: 26px; color: #5a4a36; }
.quick-points li::before { content: '•'; position: absolute; left: 0; top: -2px; color: var(--primary); font-size: 1.4rem; }

.hero-visual { position: relative; min-height: 620px; }
.visual-card,.info-card,.image-panel,.contact-card,.timeline article,.faq-item,.stat-card,.social-card,.topbar {
  border: 1px solid rgba(181, 139, 71, 0.14);
  background: var(--panel);
  border-radius: var(--radius);
}
.glow-card {
  position: absolute;
  inset: 44px 48px 96px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.9), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, #f7efe3 100%);
}
.hero-logo-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(255,255,255,0.7);
}
.hero-logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero-logo-wrap img {
  width: clamp(240px, 46vw, 380px);
  filter: drop-shadow(0 12px 24px rgba(92, 71, 34, 0.12));
}
.hero-visual-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(181, 139, 71, 0.12);
}
.hero-visual-copy span {
  display: block;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--primary-dark);
}
.hover-note {
  position: absolute;
  top: 14px;
  left: 22px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(181, 139, 71, 0.18);
  background: rgba(255,255,255,0.92);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.hero-visual:hover .hover-note { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(84, 63, 33, 0.12); }
.stat-card {
  position: absolute;
  padding: 20px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(84, 63, 33, 0.08);
}
.stat-card strong,.info-card h2,.timeline h3,.social-meta strong,.panel-copy h3 { display: block; margin-bottom: 8px; font-size: 1.2rem; }
.stat-main { right: 18px; top: 22px; }
.stat-side { left: 0; bottom: 24px; }

.cards.three-up,.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.info-card,.contact-card,.timeline article,.faq-item,.image-panel,.social-card { padding: 26px; box-shadow: var(--shadow-soft); }
.info-card { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,248,241,0.96)); }
.info-icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf8, #f3ead9);
  border: 1px solid rgba(181, 139, 71, 0.14);
}
.info-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-dark);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-list { display: grid; gap: 18px; margin-top: 26px; }
.benefit-list > div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(181, 139, 71, 0.12);
}
.image-panel {
  min-height: 540px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #fffefb 0%, #f7efe2 100%);
}
.elegant-panel::before {
  content: '';
  position: absolute;
  inset: 38px;
  border-radius: 34px;
  border: 1px solid rgba(181, 139, 71, 0.14);
  background: radial-gradient(circle at top, rgba(255,255,255,0.78), transparent 36%);
}
.panel-badge {
  position: absolute;
  top: 54px;
  left: 54px;
  z-index: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(181, 139, 71, 0.16);
  color: var(--primary-dark);
  font-weight: 700;
}
.panel-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.9), transparent 14%),
    linear-gradient(145deg, transparent 40%, rgba(181,139,71,0.16) 40.5%, transparent 41.5%),
    linear-gradient(35deg, transparent 56%, rgba(181,139,71,0.1) 56.5%, transparent 57.5%);
}
.panel-copy {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 54px;
  z-index: 1;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(181, 139, 71, 0.12);
}

.social-section { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 28px; align-items: start; }
.social-copy { padding: 28px 6px 0; }
.social-points { display: grid; gap: 16px; margin: 26px 0 28px; }
.social-points > div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(181, 139, 71, 0.12);
  box-shadow: var(--shadow-soft);
}
.social-points strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.social-showcase { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 18px; }
.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.social-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(84, 63, 33, 0.12); border-color: rgba(181, 139, 71, 0.28); }
.social-card-large { grid-row: span 2; min-height: 650px; }
.social-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.social-head-left { display: flex; align-items: center; gap: 12px; }
.social-head-left strong { display: block; color: var(--text); }
.social-head-left span { color: var(--muted); font-size: 0.94rem; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: linear-gradient(180deg, #fffdf9, #f3ead9);
  border: 1px solid rgba(181, 139, 71, 0.14);
}
.small-icon { width: 44px; height: 44px; border-radius: 14px; }
.social-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 1.8;
}
.visible-post {
  margin: 0 0 14px;
  border-radius: 24px;
  overflow: hidden;
  background: #faf7f1;
  border: 1px solid rgba(181,139,71,0.12);
  min-height: 480px;
}
.visible-post img { width: 100%; height: 100%; object-fit: cover; }
.small-post { min-height: 250px; }

.process-section,.faq-section { padding: 32px 0 4px; }
.section-heading { max-width: 720px; margin-bottom: 26px; }
.section-heading.left { margin-bottom: 18px; }
.timeline article { background: rgba(255,255,255,0.94); }
.timeline article span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4e5bf, #b78d45);
  color: #fffdf8;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(181, 139, 71, 0.18);
}
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0; overflow: hidden; background: rgba(255,255,255,0.96); }
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font: inherit;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-item button span:first-child { text-align: left; font-weight: 600; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; }
.faq-item.active .faq-content { max-height: 180px; padding-bottom: 22px; }
.contact-section { align-items: stretch; }
.contact-copy,.location-preview { min-height: 420px; }
.contact-copy { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,247,239,0.98)); }
.contact-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.contact-list a { color: var(--primary-dark); }
.location-preview { overflow: hidden; padding: 0; }
.elegant-location img { width: 100%; height: 100%; object-fit: cover; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 4px 0;
  border-top: 1px solid rgba(181, 139, 71, 0.14);
}
.footer-links { display: flex; gap: 18px; }

@media (max-width: 980px) {
  .topbar { border-radius: 28px; }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(181, 139, 71, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
  }
  .nav.open { display: flex; }
  .menu-btn { display: inline-flex; }
  .hero,.split-section,.contact-section,.social-section,.cards.three-up,.timeline,.footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .hero { min-height: auto; }
  .social-showcase { grid-template-columns: 1fr; }
  .social-card-large { grid-row: span 1; min-height: 430px; }
  .hero-visual { min-height: 480px; }
  .glow-card { inset: 20px 0 92px 0; }
  .stat-main { right: 12px; }
  .stat-side { left: 12px; bottom: 14px; }
}

@media (max-width: 680px) {
  .site-shell { width: min(100% - 20px, 1180px); padding-top: 12px; }
  .topbar { top: 10px; padding: 12px 14px; }
  .brand small { display: none; }
  .hero { padding-top: 18px; }
  .hero h1,.split-section h2,.section-heading h2,.contact-copy h2 { line-height: 1.04; }
  .hero-visual { min-height: 420px; }
  .glow-card { inset: 12px 0 98px; }
  .hero-logo-wrap img { width: 220px; }
  .stat-card { max-width: 210px; padding: 16px; }
  .info-card,.contact-card,.timeline article,.faq-item,.image-panel,.social-card { padding: 20px; }
  .footer { align-items: flex-start; }
  .hover-note {
    left: 12px;
    right: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    font-size: 0.8rem;
  }
  .social-copy { padding-top: 8px; }
  .visible-post { min-height: 300px; }
  .small-post { min-height: 220px; }
}


.studio-gallery-section,
.price-section,
.social-section {
  margin-top: 34px;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.studio-shot,
.price-card,
.instagram-embed-card,
.map-embed-card {
  border: 1px solid rgba(181, 139, 71, 0.14);
  background: rgba(255,255,255,0.96);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.studio-shot img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.studio-shot-large img {
  min-height: 420px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 28px 24px;
}

.price-card h3 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(181, 139, 71, 0.12);
  color: var(--muted);
}

.price-card li strong {
  color: var(--primary-dark);
  white-space: nowrap;
  font-size: 0.96rem;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255,253,248,0.98), rgba(247,239,227,0.98));
  border-color: rgba(181,139,71,0.24);
  transform: translateY(-6px);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(181, 139, 71, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.instagram-embed-card {
  padding: 14px;
}

.instagram-embed-card iframe,
.map-embed-card iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  display: block;
  background: #fff;
}

.map-embed-card {
  min-height: 100%;
  padding: 14px;
}

.contact-card.map-embed-card {
  min-height: 520px;
}

@media (max-width: 1024px) {
  .studio-gallery,
  .price-grid,
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .studio-shot img,
  .studio-shot-large img {
    min-height: 260px;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-card.map-embed-card {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .price-card li {
    flex-direction: column;
    gap: 4px;
  }

  .instagram-embed-card iframe {
    height: 520px;
  }

  .contact-card.map-embed-card {
    min-height: 340px;
  }
}


.price-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
  align-items: stretch;
}

.price-poster-card,
.video-card {
  border: 1px solid rgba(181, 139, 71, 0.14);
  background: rgba(255,255,255,0.96);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-poster-card img,
.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card video {
  min-height: 100%;
  background: #000;
}

.price-grid-real {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.real-price-card {
  padding: 28px 24px;
}

.price-card-head {
  margin-bottom: 12px;
}

.price-card-head h3 {
  margin: 8px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
}

.price-group {
  margin-top: 22px;
}

.price-group h4 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}

.real-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.real-price-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(181, 139, 71, 0.1);
  color: var(--muted);
}

.real-price-card li strong {
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .price-top-grid,
  .price-grid-real {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .real-price-card li {
    flex-direction: column;
    gap: 4px;
  }
}






.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.video-panel .panel-lines,
.video-panel .panel-badge,
.video-panel .panel-copy {
  position: relative;
  z-index: 2;
}

.panel-video {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
  z-index: 1;
  background: #f4efe6;
}

.video-panel::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius) - 10px);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .video-panel {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .video-panel {
    min-height: 320px;
  }
}


.feedback-section {
  margin-top: 38px;
}

.feedback-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 26px;
}

.feedback-highlight {
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(181, 139, 71, 0.14);
  background:
    radial-gradient(circle at top right, rgba(181,139,71,0.08), transparent 35%),
    rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
}

.feedback-highlight span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.feedback-highlight strong {
  font-size: 1.05rem;
  line-height: 1.45;
}

.feedback-wall {
  column-count: 4;
  column-gap: 18px;
}

.feedback-card {
  break-inside: avoid;
  position: relative;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(181, 139, 71, 0.14);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feedback-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.feedback-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(181, 139, 71, 0.16);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(84,63,33,0.08);
}

.feedback-card::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

@media (max-width: 1100px) {
  .feedback-highlight-row {
    grid-template-columns: 1fr;
  }
  .feedback-wall {
    column-count: 3;
  }
}

@media (max-width: 820px) {
  .feedback-wall {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .feedback-wall {
    column-count: 1;
  }
}


.services-compact-section{
  margin-top: 30px;
}

.services-compact-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top: 18px;
}

.service-panel{
  padding: 22px 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(181, 139, 71, 0.14);
  background:
    radial-gradient(circle at top right, rgba(181,139,71,0.08), transparent 34%),
    rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
}

.service-panel-featured{
  background:
    linear-gradient(180deg, rgba(255,253,248,0.98), rgba(247,239,227,0.98));
  border-color: rgba(181,139,71,0.24);
}

.service-panel-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}

.service-panel-head h3{
  margin:0;
  font-family:'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing:-0.03em;
}

.service-panel-head span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(181, 139, 71, 0.10);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-panel p{
  margin:0;
  color: var(--muted);
  line-height:1.75;
}

.service-note-box{
  margin-top:22px;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(181, 139, 71, 0.14);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
}

.service-note-box strong{
  display:block;
  margin-bottom:8px;
  font-size:1.05rem;
  color: var(--primary-dark);
}

.service-note-box p{
  margin:0;
  color: var(--muted);
  line-height:1.75;
}

@media (max-width: 1024px){
  .services-compact-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px){
  .services-compact-grid{
    grid-template-columns: 1fr;
  }
  .service-panel-head{
    flex-direction: column;
    align-items: flex-start;
  }
}


.hero-premium{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:60px;
align-items:center;
margin-top:20px;
}

.hero-left h1{
font-size:64px;
line-height:1.05;
margin:18px 0;
font-family:serif;
}

.hero-left h1 span{
color:#c8a35d;
}

.hero-text{
font-size:18px;
color:#666;
max-width:520px;
margin-bottom:26px;
}

.hero-badge{
display:inline-block;
background:#f3efe7;
padding:10px 16px;
border-radius:30px;
font-size:14px;
color:#8a6a2f;
}

.hero-actions{
display:flex;
gap:14px;
margin-bottom:30px;
}

.btn-primary{
background:#c8a35d;
color:white;
padding:14px 24px;
border-radius:30px;
font-weight:600;
cursor:pointer;
}

.btn-secondary{
border:1px solid #ddd;
padding:14px 24px;
border-radius:30px;
}

.hero-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
}

.feature strong{
display:block;
font-size:15px;
margin-bottom:4px;
}

.feature span{
font-size:13px;
color:#777;
}

.hero-card{
background:white;
padding:40px;
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,0.08);
text-align:center;
}

.hero-logo{
font-size:70px;
color:#c8a35d;
font-weight:700;
margin-bottom:10px;
}

.hero-stats{
display:flex;
justify-content:space-between;
margin-top:30px;
}

.stat strong{
display:block;
font-size:18px;
}

.stat span{
font-size:12px;
color:#777;
}


/* Mobile Feedback Slider */

@media (max-width:768px){

.feedback-wall{
display:flex;
overflow-x:auto;
gap:12px;
padding-bottom:8px;
scroll-snap-type:x mandatory;
}

.feedback-card{
min-width:180px;
max-width:180px;
flex:0 0 auto;
scroll-snap-align:start;
padding:8px;
}

.feedback-card img{
width:100%;
border-radius:14px;
}

.feedback-label{
font-size:10px;
top:12px;
left:12px;
padding:4px 8px;
}

}
/* Mobile friendliness fixes */
html,
body {
  overflow-x: hidden;
}

.brand {
  min-width: 0;
}

.brand span:last-child {
  min-width: 0;
}

@media (max-width: 900px) {
  .hero-premium {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-right {
    order: 2;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand strong {
    font-size: 1.05rem;
    line-height: 1.1;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex: 0 0 46px;
  }

  .menu-btn {
    padding: 9px 12px;
    border-radius: 16px;
    flex: 0 0 auto;
  }

  .hero-premium {
    gap: 22px;
    margin-top: 14px;
  }

  .hero-badge {
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1.45;
    padding: 10px 14px;
  }

  .hero-left h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    line-height: 0.96;
    margin: 14px 0 16px;
    word-break: break-word;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 22px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(181, 139, 71, 0.12);
  }

  .feature strong {
    font-size: 16px;
  }

  .feature span {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .hero-logo {
    font-size: 56px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }

  .stat {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(249, 246, 239, 0.9);
  }

  .section-tag,
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  .section-heading h2,
  .split-section h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: calc(100% - 16px);
  }

  .topbar {
    top: 8px;
    padding: 10px 12px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero-left h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  .hero-badge {
    font-size: 12px;
    padding: 9px 12px;
  }

  .hero-card {
    padding: 22px 18px;
  }
}


/* Floating contact buttons */
.floating-contact{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-contact-label{
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(181, 139, 71, 0.18);
  box-shadow: var(--shadow-soft);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.86rem;
}
.floating-btn{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(84,63,33,0.16);
  border: 1px solid rgba(181,139,71,0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.floating-btn:hover{ transform: translateY(-2px); }
.floating-btn svg{ width: 24px; height: 24px; }
.call-btn{ background: rgba(255,255,255,0.96); color: var(--primary-dark); }
.whatsapp-btn{ background: #25D366; color: white; animation: contactPulse 2.2s infinite; }
@keyframes contactPulse{
  0%,100%{ transform: scale(1); box-shadow: 0 14px 28px rgba(37,211,102,0.22); }
  50%{ transform: scale(1.05); box-shadow: 0 18px 34px rgba(37,211,102,0.32); }
}

/* Creative social intro */
.social-copy-creative h2{ max-width: 520px; }
.social-points-creative{ margin-top: 22px; }
.social-copy-actions{ margin-top: 10px; }

/* Price accordion */
.price-grid-accordion{ gap: 18px; }
.price-accordion-card{ padding: 0; overflow: hidden; }
.price-accordion-card summary{ list-style: none; }
.price-accordion-card summary::-webkit-details-marker{ display:none; }
.price-accordion-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 24px;
  cursor: pointer;
}
.price-accordion-toggle:hover{ background: rgba(181,139,71,0.035); }
.price-accordion-content{ padding: 0 24px 26px; }
.price-accordion-icon{
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(181,139,71,0.18);
  background: rgba(255,255,255,0.9);
  position: relative;
}
.price-accordion-icon::before,
.price-accordion-icon::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary-dark);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.price-accordion-icon::before{ width: 14px; height: 2px; }
.price-accordion-icon::after{ width: 2px; height: 14px; transition: opacity 0.22s ease; }
.price-accordion-card[open] .price-accordion-icon::after{ opacity: 0; }

@media (max-width: 640px){
  .floating-contact{ right: 12px; bottom: 12px; gap: 8px; }
  .floating-contact-label{ font-size: 0.76rem; padding: 8px 12px; }
  .floating-btn{ width: 48px; height: 48px; }
  .floating-btn svg{ width: 21px; height: 21px; }
  .price-accordion-toggle{ padding: 22px 18px; }
  .price-accordion-content{ padding: 0 18px 20px; }
}


/* Full hero slider */
.hero-slider-section{
  margin-top: 18px;
}

.hero-slider-shell{
  position: relative;
  min-height: 78vh;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(181, 139, 71, 0.14);
  box-shadow: var(--shadow);
  background: #eadfce;
  isolation: isolate;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  opacity: 0;
}

.hero-slide::after{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 28, 13, 0.16), rgba(44, 28, 13, 0.42)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 55%);
}

.hero-slide-one{
  background-image: url("images/hero-slide-1.png");
  animation: heroFade 14s ease-in-out infinite;
}

.hero-slide-two{
  background-image: url("images/hero-slide-2.png");
  animation: heroFade 14s ease-in-out infinite 7s;
}

@keyframes heroFade{
  0%{opacity:0; transform:scale(1.08);}
  8%{opacity:1;}
  42%{opacity:1; transform:scale(1.02);}
  50%{opacity:0;}
  100%{opacity:0;}
}

.hero-slider-overlay{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 44px));
  text-align: center;
  padding: 34px 30px;
  border-radius: 30px;
  color: #fffdf9;
  background: rgba(255, 248, 238, 0.18);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(41, 23, 5, 0.16);
}

.hero-slider-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(196, 160, 96, 0.24);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-slider-overlay h1{
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-slider-overlay p{
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 251, 244, 0.96);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-slider-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-slider-actions .btn-secondary{
  color: #fffdf9;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.34);
}

.hero-slider-actions .btn-secondary:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.48);
}

@media (max-width: 980px){
  .hero-slider-shell{
    min-height: 66vh;
  }

  .hero-slider-overlay{
    width: min(680px, calc(100% - 32px));
    padding: 28px 22px;
  }
}

@media (max-width: 720px){
  .hero-slider-section{
    margin-top: 14px;
  }

  .hero-slider-shell{
    min-height: 68vh;
    border-radius: 28px;
  }

  .hero-slide{
    background-position: center center;
  }

  .hero-slider-overlay{
    width: calc(100% - 24px);
    padding: 24px 18px;
    border-radius: 24px;
  }

  .hero-slider-overlay h1{
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .hero-slider-overlay p{
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-slider-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-slider-actions .btn{
    width: 100%;
    min-width: 0;
  }
}
