/*
Theme Name: Luna Cappadocia v3
Theme URI: https://lunacappadocia.com
Author: Luna Cappadocia
Description: Award-winning luxury editorial theme for Luna Cappadocia — Cappadocia Production Company.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.2
Requires PHP: 7.4
License: Private
*/

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--navy);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  --navy:       #18213A;
  --navy-mid:   #263050;
  --navy-light: #4A5470;
  --navy-pale:  #ECEEF5;
  --navy-soft:  #F4F5F9;
  --gold:       #B8962E;
  --gold-light: #CBA84A;
  --gold-pale:  #F5EDD0;
  --cream:      #FDFAF3;
  --cream-mid:  #F2EDE0;
  --white:      #FFFFFF;
  --serif:      'Playfair Display', 'Georgia', serif;
  --sans:       'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(253, 250, 243, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 56px;
  box-shadow: 0 1px 0 rgba(24, 33, 58, 0.06);
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.4s;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-wordmark span {
  font-size: 8px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
#nav.scrolled .nav-wordmark { color: var(--navy); }
#nav.scrolled .nav-wordmark span { color: var(--navy-light); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transition: transform 0.3s var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: rgba(255,255,255,0.95); }
#nav.scrolled .nav-links a { color: var(--navy-light); }
#nav.scrolled .nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--navy);
  background: var(--gold-light); padding: 11px 26px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer; background: none; border: none;
}
.nav-toggle span {
  width: 24px; height: 1.5px; background: rgba(255,255,255,0.85);
  display: block; transition: all 0.3s;
}
#nav.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 190; flex-direction: column; align-items: center;
  justify-content: center; gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: rgba(255,255,255,0.8); letter-spacing: 0.02em; transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .mob-cta {
  font-size: 11px; font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); background: var(--gold-light); padding: 15px 40px;
  margin-top: 8px;
}

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 96px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(18,25,50,0.35) 0%, rgba(18,25,50,0.05) 50%, rgba(18,25,50,0.78) 100%),
    url('https://lunacappadocia.com/wp-content/uploads/2024/09/DSC04608-Enhanced-NR-Edit-2-scaled.jpg') center / cover no-repeat;
  transform: scale(1.08);
  animation: kenBurns 18s ease-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1.08) translateX(0); }
  100% { transform: scale(1.0) translateX(-1%); }
}
.hero-content {
  position: relative; z-index: 2; padding: 0 56px; max-width: 900px;
  opacity: 0; transform: translateY(32px);
  animation: heroReveal 1.4s ease 0.4s forwards;
}
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 22px; display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 0.5px; background: var(--gold-light); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero-body {
  font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.65);
  line-height: 1.85; max-width: 520px; margin-bottom: 44px;
}
.hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 36px; right: 56px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-hint::after {
  content: ''; width: 0.5px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollFade 2.4s ease-in-out infinite;
}
@keyframes scrollFade { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }

/* ── BUTTONS ── */
.btn-gold {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  background: var(--gold-light); padding: 15px 34px;
  transition: background 0.3s, transform 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold); transform: translateY(-2px); color: var(--navy); }

.btn-ghost-white {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  border: 0.5px solid rgba(255,255,255,0.35); padding: 15px 34px;
  transition: all 0.3s; display: inline-block;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }

.btn-navy {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff;
  background: var(--navy); padding: 15px 34px;
  transition: background 0.3s, transform 0.2s; display: inline-block;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-outline {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  border: 0.5px solid var(--navy); padding: 15px 34px;
  transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-gold-outline {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border: 0.5px solid var(--gold); padding: 13px 28px;
  transition: all 0.3s; display: inline-block;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ── AWARDS TICKER ── */
.ticker-bar { background: var(--navy); padding: 14px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: tickerScroll 36s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.tick-diamond {
  width: 4px; height: 4px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ── SECTION LABELS & HEADINGS ── */
.lbl {
  font-size: 9px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.lbl::before { content: ''; width: 28px; height: 0.5px; background: var(--gold); }

.ttl {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--navy);
}
.ttl em { font-style: italic; font-weight: 400; color: var(--gold); }

.body-lg { font-size: 17px; font-weight: 400; line-height: 1.9; color: var(--navy-light); }
.body-md { font-size: 15px; font-weight: 400; line-height: 1.85; color: var(--navy-light); }
.body-sm { font-size: 13px; font-weight: 400; line-height: 1.85; color: var(--navy-light); }

/* ── PORTFOLIO GRID ── */
.port-wrap { background: var(--white); }
.port-intro { padding: 108px 56px 60px; max-width: 720px; }
.port-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
.pi { overflow: hidden; position: relative; cursor: pointer; }
.pi::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(18,25,50,0); transition: background 0.6s;
}
.pi:hover::after { background: rgba(18,25,50,0.4); }
.pi img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.0s var(--transition);
}
.pi:hover img { transform: scale(1.07); }
.pi-lbl {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-family: var(--serif); font-size: 15px; font-style: italic; font-weight: 400;
  color: #fff; opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.pi:hover .pi-lbl { opacity: 1; transform: translateY(0); }
.pa { grid-column: 1/8; grid-row: 1; aspect-ratio: 16/10; }
.pb { grid-column: 8/13; grid-row: 1; aspect-ratio: 16/10; }
.pc { grid-column: 1/5; grid-row: 2; aspect-ratio: 4/5; }
.pd { grid-column: 5/9; grid-row: 2; aspect-ratio: 4/5; }
.pe { grid-column: 9/13; grid-row: 2; aspect-ratio: 4/5; }
.pf { grid-column: 1/6; grid-row: 3; aspect-ratio: 16/9; }
.pg { grid-column: 6/13; grid-row: 3; aspect-ratio: 16/9; }

/* ── SERVICES ── */
.svc-sec { background: var(--navy-soft); padding: 120px 56px; }
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; margin-top: 64px;
}
.svc-card {
  background: var(--white); padding: 48px 36px; position: relative;
  overflow: hidden; transition: background 0.5s, transform 0.3s; display: block;
  color: inherit; cursor: pointer;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.5s var(--transition);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { background: var(--navy); }
.svc-card:hover .svc-num { color: rgba(255,255,255,0.05); }
.svc-card:hover .svc-title { color: #fff; }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.55); }
.svc-card:hover .svc-arrow { color: var(--gold-light); gap: 16px; }
.svc-card:hover .svc-icon-wrap { background: rgba(255,255,255,0.08); }
.svc-card:hover .svc-icon-wrap svg { stroke: var(--gold-light); }

.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; margin-bottom: 28px; transition: background 0.4s;
}
.svc-icon-wrap svg {
  width: 22px; height: 22px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.4s;
}
.svc-num {
  font-family: var(--serif); font-size: 52px; font-weight: 700;
  color: var(--cream-mid); line-height: 1; margin-bottom: 24px; transition: color 0.4s;
  letter-spacing: -0.03em;
}
.svc-title {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 14px; transition: color 0.4s; line-height: 1.2;
}
.svc-desc { font-size: 14px; font-weight: 400; line-height: 1.85; color: var(--navy-light); transition: color 0.4s; }
.svc-arrow {
  margin-top: 28px; font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); display: flex; align-items: center;
  gap: 8px; transition: gap 0.3s, color 0.3s;
}

/* ── WHY LUNA ── */
.why-sec { background: var(--white); padding: 120px 56px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 56px; margin-top: 64px;
}
.why-item { }
.why-icon {
  width: 48px; height: 48px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 22px;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 16px;
}
.why-icon svg {
  width: 24px; height: 24px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.why-title {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em;
}
.why-desc { font-size: 14px; font-weight: 400; line-height: 1.9; color: var(--navy-light); }

/* ── STORY ── */
.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.story-img { overflow: hidden; position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
.story-img:hover img { transform: scale(1.04); }
.story-txt {
  background: var(--navy); padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.story-txt .lbl { color: var(--gold-light); }
.story-txt .lbl::before { background: var(--gold-light); }
.story-txt .ttl { color: #fff; }
.story-txt .ttl em { color: var(--gold-light); }
.story-p { font-size: 15px; font-weight: 400; line-height: 1.95; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin: 48px 0; padding-top: 40px; border-top: 0.5px solid rgba(255,255,255,0.1);
}
.stat-item { }
.stat-num {
  font-family: var(--serif); font-size: 48px; font-weight: 700;
  color: var(--gold-light); line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

/* ── AWARDS CAROUSEL ── */
.awards-sec { background: var(--navy); padding: 120px 0 120px; overflow: hidden; }
.awards-inner { padding: 0 56px; margin-bottom: 64px; }
.awards-inner .lbl { color: var(--gold-light); }
.awards-inner .lbl::before { background: var(--gold-light); }
.awards-inner .ttl { color: #fff; }
.awards-big-num {
  font-family: var(--serif); font-size: 160px; font-weight: 700;
  line-height: 0.85; color: transparent;
  -webkit-text-stroke: 1.5px rgba(184, 150, 46, 0.4);
  letter-spacing: -0.04em; margin-bottom: 0; float: right;
  margin-top: -40px;
}
.awards-carousel-wrap { position: relative; overflow: hidden; }
.awards-carousel {
  display: flex; gap: 16px; padding: 0 56px;
  animation: awardsScroll 28s linear infinite;
  width: max-content;
}
.awards-carousel:hover { animation-play-state: paused; }
@keyframes awardsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.award-card {
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.08);
  padding: 28px 28px; flex-shrink: 0; width: 220px;
  border-top: 1.5px solid var(--gold); transition: background 0.3s;
}
.award-card:hover { background: rgba(255,255,255,0.09); }
.award-card-name { font-size: 13px; font-weight: 500; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.award-card-year { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; color: var(--gold-light); }

/* ── CLIENTS ── */
.clients-sec { background: var(--white); padding: 88px 56px; text-align: center; }
.clients-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--navy-light); margin-bottom: 40px;
}
.clients-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 36px 56px; max-width: 900px; margin: 0 auto;
  filter: grayscale(1); opacity: 0.35; transition: opacity 0.5s;
}
.clients-logos:hover { opacity: 0.7; }
.clients-logos img { height: 24px; width: auto; object-fit: contain; }

/* ── TESTIMONIALS ── */
.testi-sec { background: var(--navy-soft); padding: 120px 56px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; margin-top: 64px;
}
.tcard {
  background: var(--white); padding: 44px 40px;
  border-top: 2px solid transparent; transition: border-color 0.3s;
}
.tcard:hover { border-top-color: var(--gold); }
.tcard-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 22px; }
.tcard-quote {
  font-family: var(--serif); font-size: 18px; font-weight: 400; font-style: italic;
  line-height: 1.75; color: var(--navy); margin-bottom: 24px;
}
.tcard-author {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy-light);
}
.ta-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 52px;
  padding: 14px 24px; background: var(--white);
  border: 0.5px solid rgba(184,150,46,0.3);
  font-size: 13px; font-weight: 400; color: var(--navy-light);
  transition: border-color 0.3s, background 0.3s;
}
.ta-link:hover { border-color: var(--gold); background: var(--gold-pale); }
.ta-link strong { color: var(--gold); font-weight: 600; }

/* ── PROCESS ── */
.process-sec { background: var(--navy-pale); padding: 120px 56px; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 64px;
}
.process-card {
  background: var(--white); padding: 44px 36px;
  border-bottom: 2px solid transparent; transition: border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.process-card::before {
  content: attr(data-num);
  font-family: var(--serif); font-size: 100px; font-weight: 700;
  color: var(--navy-soft); position: absolute; bottom: -10px; right: 16px;
  line-height: 1; z-index: 0; transition: color 0.4s;
  letter-spacing: -0.04em;
}
.process-card:hover { border-bottom-color: var(--gold); background: var(--navy); }
.process-card:hover::before { color: rgba(255,255,255,0.04); }
.process-card:hover .process-title { color: #fff; }
.process-card:hover .process-desc { color: rgba(255,255,255,0.5); }
.process-card:hover .process-icon svg { stroke: var(--gold-light); }
.process-icon { position: relative; z-index: 1; margin-bottom: 20px; }
.process-icon svg {
  width: 28px; height: 28px; stroke: var(--navy-light); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s;
}
.process-title {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; transition: color 0.4s;
}
.process-desc {
  position: relative; z-index: 1;
  font-size: 14px; font-weight: 400; line-height: 1.85; color: var(--navy-light); transition: color 0.4s;
}

/* ── CTA ── */
.cta-sec {
  background: var(--cream); padding: 140px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: 240px; font-weight: 700;
  color: var(--navy-pale); letter-spacing: 0.08em;
  pointer-events: none; white-space: nowrap; line-height: 1;
  letter-spacing: -0.02em;
}
.cta-inner { position: relative; z-index: 2; }
.cta-sec .lbl { justify-content: center; }
.cta-sec .lbl::before { display: none; }
.cta-sec .ttl { max-width: 680px; margin: 0 auto 18px; }
.cta-body { font-size: 17px; font-weight: 400; color: var(--navy-light); max-width: 440px; margin: 0 auto 52px; line-height: 1.85; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── BLOG ── */
.blog-sec { background: var(--cream); padding: 120px 56px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px; margin-top: 64px;
}
.blog-card { background: var(--white); overflow: hidden; display: block; color: inherit; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--transition); }
.blog-body { padding: 32px 32px 36px; }
.blog-cat {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.blog-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--navy); line-height: 1.28; margin-bottom: 12px; letter-spacing: -0.01em;
}
.blog-excerpt { font-size: 14px; font-weight: 400; line-height: 1.85; color: var(--navy-light); margin-bottom: 20px; }
.blog-read {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
}

/* ── SERVICE PAGE HERO ── */
.svc-hero {
  height: 62vh; min-height: 460px; position: relative;
  overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 72px;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,25,50,0.15) 0%, rgba(18,25,50,0.72) 100%);
}
.svc-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.svc-hero-content { position: relative; z-index: 2; padding: 0 56px; max-width: 820px; }
.svc-hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 18px; display: flex; align-items: center; gap: 14px;
}
.svc-hero-eyebrow::before { content: ''; width: 32px; height: 0.5px; background: var(--gold-light); }
.svc-hero h1 {
  font-family: var(--serif); font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700; line-height: 1.04; color: #fff;
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.svc-hero-sub {
  font-family: var(--serif); font-size: clamp(16px, 2vw, 22px);
  font-style: italic; font-weight: 400; color: rgba(255,255,255,0.72);
}

/* ── SERVICE CONTENT ── */
.svc-intro { max-width: 860px; margin: 0 auto; padding: 88px 56px 0; }
.svc-features { background: var(--navy-soft); padding: 88px 56px; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 52px; margin-top: 56px;
}
.feat-item { display: flex; gap: 22px; align-items: flex-start; }
.feat-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon svg {
  width: 20px; height: 20px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.feat-title {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.feat-desc { font-size: 14px; font-weight: 400; line-height: 1.85; color: var(--navy-light); }

/* ── PACKAGES ── */
.packages-sec { padding: 88px 56px; background: var(--white); }
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; margin-top: 56px;
}
.pkg {
  padding: 44px 36px; border: 0.5px solid var(--cream-mid);
  position: relative; transition: border-color 0.3s, box-shadow 0.3s;
}
.pkg:hover { border-color: var(--gold); box-shadow: 0 4px 32px rgba(184,150,46,0.1); }
.pkg.featured { border: 1.5px solid var(--gold); }
.pkg-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--navy); padding: 5px 16px; white-space: nowrap;
}
.pkg-name {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px; letter-spacing: -0.01em;
}
.pkg-price { font-family: var(--serif); font-size: 40px; font-weight: 400; color: var(--gold); margin-bottom: 6px; letter-spacing: -0.02em; }
.pkg-price small { font-size: 14px; font-family: var(--sans); color: var(--navy-light); }
.pkg-items { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.pkg-item {
  font-size: 14px; font-weight: 400; color: var(--navy-light);
  display: flex; gap: 10px; align-items: flex-start;
}
.pkg-item::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 1px; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.contact-left {
  background: var(--navy); padding: 130px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-left .lbl { color: var(--gold-light); }
.contact-left .lbl::before { background: var(--gold-light); }
.contact-left .ttl { color: #fff; }
.contact-left .ttl em { color: var(--gold-light); }
.contact-details { margin-top: 52px; display: flex; flex-direction: column; gap: 32px; }
.cd-item { display: flex; gap: 20px; align-items: flex-start; }
.cd-icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-icon svg {
  width: 20px; height: 20px; stroke: var(--gold-light); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.cd-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 5px;
}
.cd-val { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.6; }
.cd-val a { color: rgba(255,255,255,0.72); transition: color 0.3s; }
.cd-val a:hover { color: var(--gold-light); }

.contact-right {
  background: var(--cream); padding: 130px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.cf label {
  display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy-light); margin-bottom: 9px; margin-top: 20px;
}
.cf label:first-child { margin-top: 0; }
.cf input, .cf select, .cf textarea {
  width: 100%; background: var(--white); border: 0.5px solid var(--cream-mid);
  padding: 14px 18px; font-family: var(--sans); font-size: 15px; font-weight: 400;
  color: var(--navy); outline: none; transition: border-color 0.3s;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.cf input:focus, .cf select:focus, .cf textarea:focus { border-color: var(--gold); }
.cf textarea { height: 150px; resize: vertical; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ABOUT ── */
.about-hero {
  height: 65vh; min-height: 480px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding-bottom: 80px;
}
.team-sec { background: var(--navy-pale); padding: 100px 56px; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; margin-top: 56px;
}
.team-card { background: var(--white); overflow: hidden; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 32px 32px 36px; }
.team-name {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px; letter-spacing: -0.01em;
}
.team-role {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.team-bio { font-size: 14px; font-weight: 400; line-height: 1.9; color: var(--navy-light); }

.values-sec { background: var(--navy); padding: 100px 56px; }
.values-sec .lbl { color: var(--gold-light); }
.values-sec .lbl::before { background: var(--gold-light); }
.values-sec .ttl { color: #fff; }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 56px;
}
.value-card {
  background: rgba(255,255,255,0.04); padding: 40px 32px;
  border-top: 0.5px solid rgba(255,255,255,0.08); transition: background 0.3s;
}
.value-card:hover { background: rgba(255,255,255,0.07); }
.value-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.value-icon svg {
  width: 20px; height: 20px; stroke: var(--gold-light); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.value-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.value-desc { font-size: 14px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.5); }

/* ── SINGLE POST ── */
.post-hero { height: 55vh; min-height: 400px; position: relative; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,25,50,0.1) 0%, rgba(18,25,50,0.65) 100%);
}
.post-header { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 48px 56px; }
.post-cat {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
}
.post-h1 {
  font-family: var(--serif); font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 700; color: #fff; line-height: 1.08; max-width: 820px;
  letter-spacing: -0.02em;
}
.post-wrap { max-width: 780px; margin: 0 auto; padding: 80px 56px 104px; }
.post-meta {
  display: flex; align-items: center; gap: 20px; margin-bottom: 44px;
  padding-bottom: 32px; border-bottom: 0.5px solid var(--cream-mid);
}
.post-date { font-size: 12px; font-weight: 400; color: var(--navy-light); }
.post-cat-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); padding: 4px 12px;
}
.post-wrap h2 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--navy); margin: 52px 0 18px; line-height: 1.15; letter-spacing: -0.02em;
}
.post-wrap h3 {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: var(--navy); margin: 40px 0 14px;
}
.post-wrap p { font-size: 17px; font-weight: 400; line-height: 1.95; color: var(--navy-light); margin-bottom: 24px; }
.post-wrap ul, .post-wrap ol { margin: 0 0 24px 24px; }
.post-wrap li { font-size: 16px; font-weight: 400; line-height: 1.9; color: var(--navy-light); margin-bottom: 8px; }
.post-wrap strong { font-weight: 600; color: var(--navy); }
.post-wrap a { color: var(--gold); border-bottom: 0.5px solid var(--gold); transition: color 0.3s; }
.post-wrap a:hover { color: var(--navy); border-color: var(--navy); }
.post-wrap img { width: 100%; margin: 36px 0; }
.post-wrap blockquote {
  border-left: 2px solid var(--gold); padding: 24px 32px; margin: 40px 0;
  font-family: var(--serif); font-size: 22px; font-style: italic;
  font-weight: 400; color: var(--navy); background: var(--gold-pale); line-height: 1.65;
}
.post-cta {
  background: var(--navy); padding: 44px 48px; margin: 52px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.post-cta p { font-family: var(--serif); font-size: 24px; font-weight: 400; font-style: italic; color: #fff; flex: 1; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 80px 56px 36px; }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
  margin-bottom: 52px; padding-bottom: 52px; border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.ft-wordmark {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: #fff; letter-spacing: 0.05em; margin-bottom: 18px; display: block;
}
.ft-wordmark span {
  display: block; font-family: var(--sans); font-size: 8px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px;
}
.ft-desc { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.35); line-height: 1.95; margin-bottom: 24px; max-width: 256px; }
.ft-soc { display: flex; gap: 14px; }
.ft-soc a {
  font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); transition: color 0.3s;
}
.ft-soc a:hover { color: var(--gold-light); }
.ft-col-h {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 20px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.48); transition: color 0.3s; }
.ft-col ul a:hover { color: var(--gold-light); }
.ft-contact p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.48); line-height: 2.1; }
.ft-contact a { color: rgba(255,255,255,0.48); transition: color 0.3s; }
.ft-contact a:hover { color: var(--gold-light); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 0.5px solid rgba(255,255,255,0.05);
}
.ft-copy { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.18); }
.ft-seo { font-size: 10px; color: rgba(255,255,255,0.12); max-width: 400px; text-align: right; line-height: 1.7; }

/* ── WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 30px; right: 30px; z-index: 300;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.12); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 18px rgba(37,211,102,.38)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.65)} }
.wa-btn svg { width: 27px; height: 27px; fill: #fff; }
.wa-tip {
  position: absolute; right: 66px; background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 400; white-space: nowrap; padding: 8px 14px;
  border-radius: 3px; opacity: 0; transform: translateX(8px);
  transition: all 0.3s; pointer-events: none;
}
.wa-btn:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ── SCROLL REVEAL ── */
.r { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.r.on { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }

/* ── MISC ── */
.page-pad { padding-top: 80px; }
.divider-gold { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 40px; }
.divider-gold-left { width: 48px; height: 1px; background: var(--gold); margin: 0 0 36px; }
.section-pad { padding: 120px 56px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; }
  .story-img { min-height: 380px; }
  .story-txt { padding: 72px 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 80px 40px; }
  .awards-big-num { font-size: 100px; }
}
@media (max-width: 860px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-scroll-hint { right: 24px; }
  .port-intro, .section-pad, .svc-sec, .why-sec, .testi-sec, .clients-sec,
  .cta-sec, .blog-sec, .process-sec, .svc-intro, .svc-features, .packages-sec,
  .team-sec, .values-sec, .awards-sec .awards-inner { padding-left: 24px; padding-right: 24px; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .pa,.pb,.pc,.pd,.pe,.pf,.pg { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .awards-big-num { display: none; }
  .awards-carousel { padding: 0 24px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .ft-seo { text-align: center; max-width: 100%; }
  .post-header { padding: 28px 24px; }
  .post-wrap { padding: 52px 24px 80px; }
  footer { padding: 64px 24px 30px; }
  .svc-hero-content { padding: 0 24px; }
  .cf-row { grid-template-columns: 1fr; }
  .cta-watermark { font-size: 100px; }
}
@media (max-width: 560px) {
  .port-grid { grid-template-columns: 1fr; }
  .pa,.pb,.pc,.pd,.pe,.pf,.pg { aspect-ratio: 3/2; }
  .svc-grid, .testi-grid, .packages-grid, .team-grid, .process-grid,
  .values-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-num { font-size: 36px; }
  .ft-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .ttl { font-size: 34px; }
}

/* ── Extra hero rules ── */
.svc-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.svc-hero-sub {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
}
.svc-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 0.5px;
  background: var(--gold-light);
}

/* ── Pagination ── */
.nav-links.posts-navigation a,
.page-numbers {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-light);
  padding: 8px 16px;
  border: 0.5px solid var(--cream-mid);
  transition: all 0.3s;
  display: inline-block;
  margin: 0 4px;
}
.page-numbers.current,
.page-numbers:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
