/* ========================================
   foundation.css
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F2;
  --ivory: #F4EFE6;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #A07840;
  --charcoal: #1C1C1C;
  --warm-gray: #6B6560;
  --blush: #E8D5C4;
  --deep: #111010;
  --white: #FFFFFF;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }


/* ========================================
   base.css
======================================== */
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-optical-sizing: auto;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}


/* ========================================
   layout.css
======================================== */
/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: box-shadow 0.3s;
}
nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--gold-light);
  }
  .nav-links.open { display: flex; }
}
  
/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-container {
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1410 0%, #2d1f12 50%, #1a1410 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: calc(var(--section-pad) * 0.85) 0 var(--section-pad);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-size: clamp(2.75rem, 8.5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
}
.hero-stat { text-align: left; min-width: 5.5rem; }
.hero-stat-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-visual {
  display: block;
  width: 100%;
  max-width: 22rem;
  margin: 2.25rem auto 0;
}
.hero-visual-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 55% 8px 48% 12px / 38% 12px 52% 8px;
  border: 1px solid rgba(201, 169, 110, 0.38);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  background: rgba(26, 20, 16, 0.6);
}
.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(201, 169, 110, 0.15);
  pointer-events: none;
  z-index: 2;
}
.hero-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
}
.hero-visual-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(232, 213, 176, 0.1) 0%, transparent 38%);
}
.hero-visual-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

@media (min-width: 960px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2.5rem, 4.5vw, 4.5rem);
    align-items: center;
    padding: calc(var(--section-pad) * 0.75) 0 calc(var(--section-pad) * 1.05);
  }
  .hero-copy {
    max-width: none;
    padding-right: 0.5rem;
  }
  .hero-title {
    font-size: clamp(3.25rem, 4.2vw, 4.75rem);
    max-width: 12ch;
  }
  .hero-sub {
    font-size: 1.12rem;
    max-width: 36rem;
    line-height: 1.65;
  }
  .hero-eyebrow {
    margin-bottom: 1.75rem;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: clamp(36px, 4vw, 56px);
  }
  .hero-actions {
    gap: 1.1rem 1.25rem;
  }
  .hero-stats {
    margin-top: 3rem;
    padding-top: 2.25rem;
    gap: 2.5rem 4rem;
    max-width: 36rem;
  }
  .hero-stat-num {
    font-size: clamp(2.35rem, 2.8vw, 2.75rem);
  }
  .hero-visual {
    margin: 0;
    max-width: none;
    min-height: 0;
  }
  .hero-visual-frame {
    max-height: min(78vh, 640px);
    margin-left: auto;
    max-width: 440px;
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    gap: clamp(3rem, 5vw, 5.5rem);
  }
  .hero-visual-frame {
    max-width: 480px;
  }
}

@media (max-width: 959px) {
  .hero-stats {
    justify-content: flex-start;
  }
}
/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.marquee-dot { color: rgba(201,169,110,0.4); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* ========================================
   sections.css
======================================== */
/* ── SECTION SHARED ── */
section { padding: var(--section-pad) 0; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 580px;
  line-height: 1.8;
}

/* ── ABOUT ENTITY SECTION ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.about-img-placeholder {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(26, 20, 16, 0.12);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.about-badge-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 80px;
}
.about-details { margin-top: 2rem; }
.about-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ivory);
}
.about-detail-item:last-child { border-bottom: none; }
.about-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.about-detail-title {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.about-detail-text { font-size: 0.88rem; color: var(--warm-gray); }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: -1rem; right: -0.5rem; width: 100px; height: 100px; }
  .about-badge-num { font-size: 1.6rem; }
}

/* ── SERVICES ── */
.services-section { background: var(--cream); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.service-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 3.5rem;
  color: var(--ivory);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
}
.service-name {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-meta {
  display: flex;
  gap: 1.5rem;
}
.service-meta-item {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.service-detail-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.2s;
}
.service-detail-link:hover { color: var(--gold); }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--charcoal); color: var(--white); }
.why-heading { color: var(--white) !important; }
.why-body { color: rgba(255,255,255,0.6) !important; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-card {
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2.2rem;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── GALLERY ── */
.gallery-section { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 7; }
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.5s;
}
.gallery-item:nth-child(odd) .gallery-placeholder { background: linear-gradient(135deg, #e8d5c4, #d4b896); }
.gallery-item:nth-child(even) .gallery-placeholder { background: linear-gradient(135deg, #d4b896, #c9a96e40); }
.gallery-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ── SEO CONTENT SECTION ── */
.content-section { background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}
.content-block h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-light);
}
.content-block p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.content-tips {
  margin-top: 3rem;
  background: var(--ivory);
  padding: 2.5rem;
}
.content-tips h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.tips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  list-style: none;
}
.tips-list li {
  font-size: 0.87rem;
  color: var(--warm-gray);
  padding-left: 1.2rem;
  position: relative;
}
.tips-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tips-list { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS (Google — gerçek yorumlar profilde) ── */
.testimonials-section { background: var(--cream); }
.testimonials-google-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-top: 2.75rem;
}
.testimonials-google-panel {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.35rem);
  border-left: 3px solid var(--gold);
  box-shadow: 0 16px 40px rgba(26, 20, 16, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.testimonials-google-score {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.testimonials-google-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.testimonials-google-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.testimonials-google-caption {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.testimonials-google-note {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 34ch;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-google-reviews:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.testimonials-map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 20, 16, 0.12);
  min-height: 280px;
  background: rgba(26, 20, 16, 0.06);
}
.testimonials-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 42vw, 400px);
  border: 0;
}
@media (max-width: 900px) {
  .testimonials-google-wrap {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ── */
.faq-section { background: var(--ivory); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-top: 3rem;
}
.faq-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.faq-sidebar p { font-size: 0.87rem; color: var(--warm-gray); line-height: 1.7; }
.faq-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: background 0.2s;
  border-radius: 2px;
}
.faq-whatsapp:hover { background: #1ebe5d; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.4rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── BOOKING CTA ── */
.booking-section {
  background: linear-gradient(135deg, #1a1410 0%, #2d1f12 100%);
  text-align: center;
}
.booking-section h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.booking-section h2 em { color: var(--gold-light); font-style: italic; }
.booking-section p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}
.booking-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
  border-radius: 2px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
}
.btn-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT (WhatsApp — form yok) ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: stretch;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.2rem;
  margin-top: 2px;
}
.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--charcoal);
}
.contact-info-value a { color: var(--charcoal); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: color 0.2s;
}
.contact-map-link:hover { color: var(--gold-dark); }
.contact-wa-panel {
  background: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-left: 4px solid var(--gold);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.contact-wa-heading {
  margin: 0;
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.contact-wa-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 38ch;
}
.contact-wa-steps {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.75;
  max-width: 40ch;
}
.contact-wa-steps li { margin-bottom: 0.35rem; }
.contact-wa-steps strong { color: var(--charcoal); font-weight: 600; }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding: 1rem 1.85rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: #25d366;
  border: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.contact-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.contact-wa-num {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
}
.contact-wa-num a {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.5);
  transition: color 0.2s, border-color 0.2s;
}
.contact-wa-num a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}
.contact-wa-foot {
  margin: 0;
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.65;
  text-align: center;
  max-width: 36ch;
  align-self: center;
}
.contact-wa-shortcuts {
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 20, 16, 0.08);
}
.contact-wa-shortcuts-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}
.contact-wa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-wa-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.35);
  text-decoration: none;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-wa-chips a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}



/* ========================================
   footer.css
======================================== */
/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--gold); }
.footer-about {
  font-size: 0.83rem;
  line-height: 1.75;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── FLOATING WA BUTTON ── */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.floating-wa svg { width: 28px; height: 28px; fill: white; }

/* Hygiene badge */
.hygiene-banner {
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.14) 0%, transparent 50%),
    linear-gradient(
      118deg,
      var(--cream) 0%,
      var(--ivory) 32%,
      #faf6ef 52%,
      rgba(232, 213, 196, 0.55) 78%,
      var(--cream) 100%
    );
  box-shadow: inset 0 1px 0 rgba(201, 169, 110, 0.2);
  padding: 1rem 0;
  text-align: center;
}
.hygiene-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hygiene-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.hygiene-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  width: 1.15em;
  text-align: center;
}

@media (max-width: 768px) {
  .hygiene-banner {
    text-align: left;
    padding: 0.85rem 0;
  }
  .hygiene-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 0.85rem;
    justify-content: stretch;
    align-items: start;
    padding-left: 0;
    padding-right: 0;
  }
  .hygiene-item {
    min-width: 0;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-align: left;
    box-sizing: border-box;
  }
  .hygiene-item::before {
    margin-top: 0.1em;
  }
  .hygiene-inner .hygiene-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Utility */
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
}
.divider-center { margin: 1.2rem auto; }
.text-center { text-align: center; }

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
