/* ============================================================
   FUNFRET GUITAR SERVICE — Theme CSS
   ============================================================ */

/* --- Variables --- */
:root {
  --bg:           #F7F2EC;
  --cream:        #EDE5D8;
  --brown-deep:   #2C1A0E;
  --brown-rich:   #4A2C18;
  --brown-mid:    #7B5035;
  --caramel:      #B07848;
  --tan:          #CDA87A;
  --text:         #1F1209;
  --text-muted:   #6B4E35;
  --border:       #D0C4B4;
  --dark-bg:      #180D05;
  --dark-surface: #231208;
  --nav-h:        72px;
  --max-w:        1200px;
  --sec-pad:      110px;
  --radius:       3px;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p + p { margin-top: 1em; }

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

/* --- Typography helpers --- */
.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Notification banner --- */
.notification-bar {
  background-color: var(--caramel);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 200;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, top 0.1s linear;
}

.site-nav.scrolled {
  background-color: rgba(24, 13, 5, 0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--tan); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.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); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--caramel);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--brown-mid);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--tan);
  color: var(--tan);
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--brown-deep);
  transform: scale(1.03);
  transition: transform 8s ease;
}

.section-hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(15, 7, 2, 0.45) 0%,
    rgba(15, 7, 2, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollDown 2.4s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); }
  80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  background-color: var(--cream);
  padding: var(--sec-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: end;
}

.about-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.1em;
}

.about-body p:last-child { margin-bottom: 0; }

.about-logo-wrap img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  background-color: var(--bg);
  padding: var(--sec-pad) 0;
}

.services-header {
  margin-bottom: 56px;
}

/* ── 3 kiemelt kártya ── */
.services-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.service-featured-card {
  background-color: var(--cream);
  padding: 40px 32px 36px;
  border-radius: var(--radius);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-featured-card:hover {
  border-color: var(--caramel);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(44, 26, 14, 0.1);
}

.service-featured-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--caramel);
}

.service-featured-icon svg {
  width: 44px;
  height: 44px;
}

.service-featured-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown-deep);
  margin-bottom: 16px;
}

.service-featured-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.service-featured-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-featured-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--caramel);
}

.service-featured-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── Kompakt 3-oszlopos lista ── */
.services-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.services-compact-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}

.services-compact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.services-compact-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.services-compact-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--caramel);
  transition: color 0.15s;
}

.svc-trigger {
  cursor: pointer;
  transition: color 0.15s;
}

.svc-trigger:hover {
  color: var(--brown-deep);
}

.svc-trigger.active {
  color: var(--brown-deep);
  font-weight: 500;
}

.svc-trigger.active::before {
  content: '→';
  color: var(--caramel);
}

.services-footer-note {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Detail panel ── */
.svc-detail-panel {
  display: none;
}

.svc-detail-panel.open {
  display: block;
  animation: panelIn 0.3s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-detail-inner {
  margin-top: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--caramel);
  padding: 28px 32px 32px;
}

.sdp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.sdp-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown-deep);
}

.sdp-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 2px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.sdp-close:hover { color: var(--brown-deep); }

.sdp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

.sdp-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 10px;
}

.sdp-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sdp-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.sdp-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--caramel);
}

.sdp-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 580px) {
  .sdp-cols { grid-template-columns: 1fr; gap: 20px; }
  .svc-detail-inner { padding: 20px 20px 24px; }
}

@media (max-width: 860px) {
  .services-featured { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .service-detail-cols { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 860px) {
  .services-extra-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-extra-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.section-gallery {
  background-color: var(--cream);
  padding: var(--sec-pad) 0;
}

.gallery-header {
  margin-bottom: 52px;
}

.gallery-grid {
  columns: 3;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24, 13, 5, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(24, 13, 5, 0.18);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Gallery tabs */
.gallery-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.gallery-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-tab.active {
  color: var(--brown);
  border-bottom-color: var(--caramel);
}

.gallery-panel-hidden { display: none; }

/* Slideshow */
.gallery-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark-bg);
}

.gallery-slide-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-slide-item {
  flex: none;
  width: 100%;
  cursor: pointer;
}

.gallery-slide-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.gallery-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.25s;
}

.gallery-dot.active { background: var(--caramel); }

@keyframes dots-fwd {
  0%   { transform: translateX(0)    scale(1); }
  30%  { transform: translateX(12px) scale(0.8); }
  65%  { transform: translateX(-4px) scale(1.05); }
  100% { transform: translateX(0)    scale(1); }
}

@keyframes dots-bwd {
  0%   { transform: translateX(0)     scale(1); }
  30%  { transform: translateX(-12px) scale(0.8); }
  65%  { transform: translateX(4px)   scale(1.05); }
  100% { transform: translateX(0)     scale(1); }
}

.gallery-dots.anim-fwd { animation: dots-fwd 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-dots.anim-bwd { animation: dots-bwd 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Shared nav bar for both gallery panels */
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  height: 44px;
}

.gallery-nav-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--brown);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-nav-btn:hover { background: var(--brown); color: #fff; }

/* Before / After */
.gallery-ba-slide { display: none; }
.gallery-ba-slide.active { display: block; }

.gallery-ba-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.gallery-ba-images {
  display: grid;
  grid-template-columns: repeat(var(--img-count, 2), 1fr);
  gap: 12px;
  height: 438px;
}

.gallery-ba-images .gallery-item {
  height: 100%;
  margin-bottom: 0;
}

.gallery-ba-images .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 6, 2, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(88vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s;
}

.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 16px 20px;
  transition: all 0.2s;
  line-height: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ============================================================
   PRICES
   ============================================================ */
.section-prices {
  background-color: var(--bg);
  padding: var(--sec-pad) 0;
}

.prices-header {
  margin-bottom: 64px;
}

.prices-body {
  max-width: 780px;
}

.price-group {
  margin-bottom: 52px;
}

.price-group:last-child { margin-bottom: 0; }

.price-group-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown-rich);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid rgba(208, 196, 180, 0.5);
}

.price-table tr:last-child { border-bottom: none; }

.price-table td {
  padding: 13px 0;
  vertical-align: middle;
  font-size: 0.95rem;
}

.price-table .td-name {
  color: var(--text);
  padding-right: 20px;
  width: 100%;
}

.price-table .td-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  padding-right: 28px;
}

.price-table .td-price {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: var(--brown-rich);
  font-variant-numeric: tabular-nums;
}

.prices-note {
  margin-top: 48px;
  padding: 24px 28px;
  background-color: var(--cream);
  border-left: 3px solid var(--caramel);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 780px;
}

.prices-loading,
.prices-error {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background-color: var(--dark-bg);
  padding: var(--sec-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-left .label { color: var(--tan); }

.contact-left .section-title { color: #fff; }

.contact-left .section-lead {
  color: rgba(255,255,255,0.5);
  margin-bottom: 52px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--caramel);
  margin-top: 2px;
}

.contact-item-body {}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 4px;
}

.contact-item-value {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.contact-item-value a {
  color: inherit;
  transition: color 0.2s;
}

.contact-item-value a:hover { color: var(--tan); }

.contact-social {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-social-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.social-link:hover {
  color: #fff;
  border-color: rgba(205, 168, 122, 0.4);
  background-color: rgba(205, 168, 122, 0.05);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.contact-right {
  padding-top: 8px;
}

.contact-card {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 44px;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 16px;
}

.contact-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.75;
}

.contact-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.contact-card-divider {
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  margin: 20px 0;
  letter-spacing: 0.05em;
}

.contact-card-phone {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

.contact-card-phone a {
  color: var(--tan);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-card-phone a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.instagram-cta {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.instagram-cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 32px;
}

.instagram-cta-icon {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.instagram-cta-link:hover .instagram-cta-icon {
  color: #E1306C;
}

.instagram-cta-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}


.site-footer {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.28);
  font-size: 0.78rem;
  text-align: center;
}

.footer-inner a {
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}

.footer-inner a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sec-pad: 80px; }

}

@media (max-width: 860px) {
  :root { --sec-pad: 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-wrap { max-width: 240px; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gallery-grid { columns: 2; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

.contact-map {
  margin-top: 56px;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  :root { --sec-pad: 60px; }

  .container { padding: 0 20px; }

  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .services-compact { grid-template-columns: 1fr; gap: 28px; }

  .price-table tr:not(.tr-subheader):not(.tr-no-name) .td-note { display: none; }
  .price-table .td-price { white-space: normal; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(24, 13, 5, 0.98);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 99;
  }

  .nav-links.mobile-open a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { columns: 1; }

  .contact-card { padding: 28px 24px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
