/* ══════════════════════════════════════════════════
   Lokmacı Güngör — Main Stylesheet v1.0
   Colors: Gold #C9A84C | Dark #1a1a1a | White #fff
   ══════════════════════════════════════════════════ */

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

:root {
  --gold:       #C9A84C;
  --gold-dark:  #A07940;
  --gold-light: #e8d49a;
  --dark:       #1a1a1a;
  --gray:       #f8f7f4;
  --text:       #333;
  --muted:      #666;
  --white:      #ffffff;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --transition: .3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--dark);
}

/* ── Layout ──────────────────────────────────────── */
.lg-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .lg-container { padding: 0 32px; } }
@media (min-width: 1024px) { .lg-container { padding: 0 48px; } }

.lg-container-narrow { max-width: 860px; }

/* ── Buttons ─────────────────────────────────────── */
.lg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 15px;
}
.lg-btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold-dark);
}
.lg-btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.lg-btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.lg-btn-outline:hover { background: var(--gold); color: var(--dark); }
.lg-btn-ghost {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.lg-btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.lg-btn-whatsapp { background: #25D366; color: #fff; border-color: #128C7E; }
.lg-btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.lg-btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.lg-btn-sm { padding: 9px 18px; font-size: 14px; }
.lg-btn-block { width: 100%; }

/* ── Helpers ─────────────────────────────────────── */
.lg-gold { color: var(--gold); }
.lg-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 24px;
}
.lg-divider-left { margin-left: 0; }

/* ── Animations ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.lg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  transition: box-shadow .3s ease, padding .3s ease;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.lg-header-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); padding: 10px 0; }

.lg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lg-logo-link { flex-shrink: 0; }
.lg-logo { height: 52px; width: auto; object-fit: contain; }
@media (min-width: 1024px) { .lg-logo { height: 64px; } }

.lg-nav {
  display: none;
  gap: 28px;
}
@media (min-width: 1024px) {
  .lg-nav { display: flex; align-items: center; }
  .lg-nav a {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
  }
  .lg-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
  }
  .lg-nav a:hover { color: var(--gold); }
  .lg-nav a:hover::after { width: 100%; }
}

.lg-header-actions { display: none; gap: 10px; }
@media (min-width: 1024px) { .lg-header-actions { display: flex; } }

/* Hamburger */
.lg-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.lg-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.lg-hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lg-hamburger-open span:nth-child(2) { opacity: 0; }
.lg-hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .lg-hamburger { display: none; } }

/* Mobile Nav */
.lg-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 24px;
  background: #fff;
  border-top: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.lg-mobile-nav.lg-mobile-nav-open { display: flex; }
.lg-mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: color var(--transition);
}
.lg-mobile-nav a:hover { color: var(--gold); }
@media (min-width: 1024px) { .lg-mobile-nav { display: none !important; } }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.lg-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.lg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lg-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.lg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.25) 100%);
}
.lg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.lg-badge {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lg-hero h1 {
  font-size: clamp(28px, 6vw, 72px);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.lg-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 620px;
  line-height: 1.7;
}
.lg-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lg-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════ */
.lg-section { padding: 80px 0; }
@media (min-width: 768px) { .lg-section { padding: 100px 0; } }
.lg-section-white { background: var(--white); }
.lg-section-gray  { background: var(--gray); }
.lg-section-bordered { border-top: 1px solid rgba(201,168,76,.15); border-bottom: 1px solid rgba(201,168,76,.15); }

.lg-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.lg-section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 0;
}
.lg-section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.lg-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .lg-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .lg-services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .lg-services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .lg-services-grid { grid-template-columns: repeat(5, 1fr); } }

.lg-service-card {
  background: #fff;
  border: 1px solid #f0ebe0;
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.lg-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,.15);
  transform: translateY(-4px);
}
.lg-service-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.08));
}
.lg-service-card h3 { font-size: 15px; margin-bottom: 8px; color: var(--dark); font-family: var(--font-sans); font-weight: 600; }
.lg-service-card p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.lg-about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .lg-about-grid { grid-template-columns: 1fr 1fr; } }

.lg-about-text h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 0; }
.lg-lead { font-size: 17px; font-weight: 500; color: var(--dark); margin-bottom: 16px; line-height: 1.6; }
.lg-about-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }

.lg-checklist { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.lg-checklist li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--dark); }
.lg-check {
  width: 26px; height: 26px;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.lg-about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lg-photo-col { position: relative; }
.lg-photo-col-top { padding-top: 40px; }
.lg-photo-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,.15);
}

/* ══════════════════════════════════════════════════
   SERVICE AREAS
   ══════════════════════════════════════════════════ */
.lg-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .lg-areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lg-areas-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.lg-area-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lg-area-card:hover { border-color: rgba(201,168,76,.4); box-shadow: 0 4px 16px rgba(201,168,76,.1); }
.lg-area-card svg { color: var(--gold); flex-shrink: 0; }

.lg-areas-note {
  margin-top: 32px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lg-areas-note span, .lg-areas-note {
  background: rgba(201,168,76,.1);
  color: var(--gold-dark);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 15px;
}

/* ══════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════ */
.lg-gallery-grid {
  columns: 1;
  gap: 16px;
}
@media (min-width: 640px) { .lg-gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .lg-gallery-grid { columns: 3; gap: 20px; } }

.lg-gallery-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.lg-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.lg-gallery-item:hover img { transform: scale(1.05); }
.lg-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.lg-gallery-item:hover .lg-gallery-overlay { opacity: 1; }
.lg-gallery-overlay p { color: #fff; font-weight: 500; font-size: 14px; }

/* ══════════════════════════════════════════════════
   REVIEWS SLIDER
   ══════════════════════════════════════════════════ */
.lg-reviews-slider { max-width: 900px; margin: 0 auto; }
.lg-reviews-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.lg-review-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--gray);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) { .lg-review-card { flex: 0 0 100%; } }

.lg-quote-icon { color: rgba(201,168,76,.25); margin-bottom: 12px; }
.lg-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; margin-bottom: 16px; }
.lg-review-text { color: var(--muted); font-style: italic; font-size: 15px; line-height: 1.75; flex: 1; margin-bottom: 20px; }
.lg-reviewer strong { display: block; font-weight: 700; color: var(--dark); font-size: 15px; }
.lg-reviewer span   { font-size: 13px; color: var(--gold); font-weight: 500; }

.lg-slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.lg-slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.4);
  background: #fff;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lg-slider-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.lg-slider-dots { display: flex; gap: 8px; }
.lg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(201,168,76,.3);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.lg-dot-active { background: var(--gold); transform: scale(1.3); }

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.lg-faq-list {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lg-faq-item { border-bottom: 1px solid rgba(0,0,0,.06); }
.lg-faq-item:last-child { border-bottom: none; }
.lg-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  font-family: var(--font-sans);
  line-height: 1.5;
}
.lg-faq-q:hover { color: var(--gold); }
.lg-faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.lg-faq-open .lg-faq-icon { transform: rotate(45deg); }
.lg-faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  transition: max-height .35s ease, padding .35s ease;
}
.lg-faq-open .lg-faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.lg-contact-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) { .lg-contact-grid { grid-template-columns: 1fr 1fr; } }

.lg-contact-box {
  background: var(--gray);
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,.12);
  margin-bottom: 24px;
}
.lg-contact-box h3 { font-size: 22px; margin-bottom: 24px; }
.lg-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.lg-contact-item:last-child { margin-bottom: 0; }
.lg-contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.lg-contact-item strong { display: block; font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.lg-contact-item a, .lg-contact-item span { font-size: 15px; color: var(--muted); transition: color var(--transition); }
.lg-contact-item a:hover { color: var(--gold); }

.lg-map {
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Form */
.lg-contact-form {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-lg);
}
.lg-contact-form h3 { font-size: 22px; margin-bottom: 24px; }
.lg-form { display: flex; flex-direction: column; gap: 18px; }
.lg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 500px) { .lg-form-row { grid-template-columns: 1fr; } }
.lg-form-group { display: flex; flex-direction: column; gap: 6px; }
.lg-form-group label { font-size: 14px; font-weight: 500; color: var(--dark); }
.lg-form-group input,
.lg-form-group select,
.lg-form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--dark);
  background: #fafafa;
  transition: border-color var(--transition);
  outline: none;
}
.lg-form-group input:focus,
.lg-form-group select:focus,
.lg-form-group textarea:focus { border-color: var(--gold); background: #fff; }
.lg-form-group textarea { resize: vertical; min-height: 110px; }
.lg-form-success {
  background: #d4edda;
  color: #155724;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.lg-footer {
  background: #111;
  color: #aaa;
  padding-top: 64px;
  padding-bottom: 32px;
  border-top: 4px solid var(--gold);
}
.lg-footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .lg-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lg-footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; } }

.lg-footer-col p { font-size: 14px; line-height: 1.75; margin-top: 16px; color: #999; }
.lg-footer-logo { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.lg-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.lg-footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: var(--transition);
}
.lg-footer-social a:hover { background: var(--gold); color: var(--dark); }

.lg-footer-col h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.lg-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.lg-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lg-footer-col ul a { font-size: 14px; color: #999; transition: color var(--transition); }
.lg-footer-col ul a:hover { color: var(--gold); }

.lg-footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #999; }
.lg-footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.lg-footer-contact a:hover { color: var(--gold); }

.lg-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
}
.lg-footer-bottom a { color: #666; transition: color var(--transition); }
.lg-footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════════ */
.lg-floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lg-float-phone,
.lg-float-wa {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.lg-float-phone { background: var(--gold); color: var(--dark); }
.lg-float-wa    { background: #25D366; color: #fff; }
.lg-float-phone:hover,
.lg-float-wa:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(0,0,0,.25); }
.lg-float-label {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lg-float-phone:hover .lg-float-label,
.lg-float-wa:hover .lg-float-label { opacity: 1; }

/* ══════════════════════════════════════════════════
   WORDPRESS EDITOR TWEAKS
   ══════════════════════════════════════════════════ */
.wp-block-image img { border-radius: var(--radius); }
.entry-content { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.entry-content h1,.entry-content h2,.entry-content h3 { margin-bottom: 16px; margin-top: 32px; }
.entry-content p { margin-bottom: 16px; color: var(--muted); line-height: 1.75; }
