/* ============================================
   ALP YÖNETİM - Vanilla HTML/CSS Edition
   ============================================ */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&display=swap");

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }
ul { list-style: none; }

/* Tokens */
:root {
  --navy: #0F2A4A;
  --navy-hover: #163a66;
  --navy-deep: #0a1f37;
  --gold: #C9A961;
  --gold-hover: #d1b678;
  --gold-soft: rgba(201, 169, 97, 0.18);
  --cream: #FAFAF7;
  --cream-alt: #F2F2EC;
  --surface: #FFFFFF;
  --ink: #1A202C;
  --muted: #4A5568;
  --border: #E7E3D8;
  --shadow-card: 0 18px 40px -20px rgba(15, 42, 74, 0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.font-serif { font-family: "Playfair Display", serif; }
.font-script { font-family: "Caveat", cursive; }

::selection { background: var(--gold); color: var(--navy); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* Eyebrow */
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}

/* Gold divider */
.gold-divider {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--gold);
}

/* Grain background */
.grain {
  background-image: radial-gradient(rgba(15, 42, 74, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 280ms ease, color 280ms ease, transform 280ms ease, border-color 280ms ease;
  border: 1px solid transparent;
  font-size: 15px;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-hover); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 14px 26px; }
.btn-ghost:hover { background: #fff; color: var(--navy); }

/* ============================ NAVBAR ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
@media (min-width: 1024px) { .nav-inner { height: 96px; } }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
@media (min-width: 1024px) { .nav-logo img { height: 64px; } }
.nav-brand { display: none; flex-direction: column; line-height: 1.15; }
@media (min-width: 768px) { .nav-brand { display: flex; } }
.nav-brand-name { font-family: "Playfair Display", serif; color: var(--navy); font-size: 18px; font-weight: 600; letter-spacing: 0.02em; }
.nav-brand-tagline { font-family: "Caveat", cursive; color: var(--gold); font-size: 16px; margin-top: -2px; }

.nav-links { display: none; align-items: center; gap: 40px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--muted); white-space: nowrap;
  position: relative; padding-bottom: 3px;
  transition: color 250ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px;
  background: var(--gold); transition: width 280ms ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: none; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--navy); font-weight: 500; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px; color: var(--navy);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-inner a {
  font-size: 16px; font-weight: 500; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu-inner a.active { color: var(--navy); }
.mobile-menu-inner .btn { margin-top: 8px; width: 100%; }

/* ============================ MAIN ============================ */
main { padding-top: 80px; }
@media (min-width: 1024px) { main { padding-top: 96px; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================ PAGE HEADER (interior pages) ============================ */
.page-header {
  background: var(--cream-alt);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
@media (min-width: 1024px) { .page-header { padding: 112px 0; } }
.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  margin-top: 16px;
}
.page-header p.lead { margin-top: 24px; max-width: 640px; color: var(--muted); line-height: 1.7; }
.page-header .tagline-script { font-family: "Caveat", cursive; color: var(--gold); font-size: clamp(24px, 3vw, 32px); margin-top: 8px; }

/* ============================ HERO (home) ============================ */
.hero {
  padding: 40px 0 100px;
}
@media (min-width: 1024px) { .hero { padding: 80px 0 140px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 64px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gold); }
.hero-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--navy); font-weight: 500; }

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 24px;
}
.hero h1 .italic { font-style: italic; font-weight: 400; }
.hero h1 .underline-wrap { position: relative; white-space: nowrap; }
.hero h1 .underline-wrap svg {
  position: absolute; left: 0; bottom: -12px; width: 100%; height: 12px;
}
.hero p.lead { margin-top: 28px; font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.7; }

.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-phone-inline {
  display: none; align-items: center; gap: 12px; margin-left: 8px;
  font-size: 14px; color: var(--navy); font-weight: 500;
}
@media (min-width: 640px) { .hero-phone-inline { display: inline-flex; } }
.hero-phone-inline .ico {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-phone-inline svg { width: 16px; height: 16px; color: var(--navy); }

.hero-stats { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 460px; }
.hero-stats .k { font-family: "Playfair Display", serif; font-size: 30px; font-weight: 600; color: var(--navy); }
.hero-stats .v { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 4px; }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative; overflow: hidden; border-radius: 18px;
  box-shadow: 0 30px 80px -30px rgba(15, 42, 74, 0.4);
}
.hero-visual .frame img { width: 100%; height: 460px; object-fit: cover; }
@media (min-width: 1024px) { .hero-visual .frame img { height: 600px; } }
.hero-visual .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 55, 0.4), transparent 60%);
  pointer-events: none;
}
.hero-visual .gold-accent {
  display: none;
  position: absolute; bottom: -24px; left: -24px;
  width: 160px; height: 160px;
  border: 3px solid var(--gold);
  border-radius: 18px 0 18px 0;
  z-index: -1;
}
@media (min-width: 1024px) { .hero-visual .gold-accent { display: block; } }
.hero-floating-card {
  position: absolute; bottom: -32px; right: 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  box-shadow: 0 18px 50px -10px rgba(15,42,74,0.18);
  width: 260px; display: flex; gap: 12px; align-items: flex-start;
}
@media (min-width: 1024px) { .hero-floating-card { right: -32px; } }
.hero-floating-card .ic {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-floating-card .ic svg { width: 20px; height: 20px; color: var(--gold); }
.hero-floating-card h4 { font-family: "Playfair Display", serif; font-size: 16px; color: var(--navy); font-weight: 600; }
.hero-floating-card p { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* ============================ SECTIONS ============================ */
section { padding: 88px 0; }
@media (min-width: 1024px) { section { padding: 128px 0; } }

.section-head { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
@media (min-width: 1024px) { .section-head { grid-template-columns: 5fr 7fr; gap: 64px; } }
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600; color: var(--navy);
  line-height: 1.1; margin-top: 16px;
}
.section-head h2 .italic { font-style: italic; font-weight: 400; }
.section-head .desc { color: var(--muted); font-size: 18px; line-height: 1.7; padding-top: 24px; }

/* Why cards */
.bg-alt { background: var(--cream-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 32px;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.why-card .num { font-family: "Caveat", cursive; color: var(--gold); font-size: 30px; }
.why-card h3 { font-family: "Playfair Display", serif; font-size: 20px; color: var(--navy); font-weight: 600; margin-top: 8px; }
.why-card .gold-divider { margin: 14px 0; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Services preview / Services page cards */
.services-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 56px; }
.services-head .left { max-width: 640px; }
.services-head h2 {
  font-family: "Playfair Display", serif; font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600; color: var(--navy); line-height: 1.1; margin-top: 16px;
}
.services-head .desc { margin-top: 20px; color: var(--muted); line-height: 1.7; }
.services-head .view-all {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 500;
  position: relative; padding-bottom: 3px;
}
.services-head .view-all::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 280ms ease;
}
.services-head .view-all:hover::after { width: 100%; }
.services-head .view-all svg { width: 16px; height: 16px; color: var(--gold); }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.service-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 32px;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.service-card .row { display: flex; justify-content: space-between; align-items: flex-start; }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--gold-soft); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 280ms ease, color 280ms ease;
}
.service-card:hover .ico { background: var(--gold); }
.service-card .ico svg { width: 28px; height: 28px; }
.service-card .num { font-family: "Caveat", cursive; color: var(--gold); font-size: 30px; }
.service-card h3 {
  font-family: "Playfair Display", serif; font-size: 22px; color: var(--navy); font-weight: 600;
  margin-top: 22px; line-height: 1.3;
}
.service-card .gold-divider { margin: 12px 0 18px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.service-card .more {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 500; font-size: 14px;
}
.service-card .more svg { width: 16px; height: 16px; color: var(--gold); transition: transform 250ms ease; }
.service-card:hover .more svg { transform: translateX(4px); }

/* About teaser */
.about-teaser { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-teaser-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-teaser-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }
.about-teaser .img-wrap { position: relative; }
.about-teaser .img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: 18px; }
.about-teaser .gold-corner {
  display: none;
  position: absolute; top: -24px; right: -24px;
  width: 160px; height: 160px;
  border: 3px solid var(--gold);
  border-radius: 0 18px 0 18px;
  z-index: -1;
}
@media (min-width: 1024px) { .about-teaser .gold-corner { display: block; } }
.about-teaser h2 {
  font-family: "Playfair Display", serif; font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600; color: var(--navy); line-height: 1.1; margin-top: 16px;
}
.about-teaser h2 .italic { font-style: italic; font-weight: 400; }
.about-teaser .desc { margin-top: 24px; color: var(--muted); line-height: 1.7; }
.about-teaser ul.values { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-teaser ul.values li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--navy);
}
.about-teaser ul.values svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.about-teaser .cta { margin-top: 40px; }

/* CTA Banner (home + services) */
.cta-banner {
  background: var(--navy); color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18px 18px; opacity: 0.4;
  pointer-events: none;
}
.cta-banner .container { position: relative; }
.cta-banner .tagline { font-family: "Caveat", cursive; color: var(--gold); font-size: clamp(28px, 3vw, 40px); }
.cta-banner h2 {
  font-family: "Playfair Display", serif; font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.1; margin-top: 16px;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.cta-banner h2 .italic { font-style: italic; font-weight: 400; }
.cta-banner p.lead { margin-top: 24px; color: rgba(255,255,255,0.8); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-banner .actions { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ============================ ABOUT PAGE ============================ */
.about-story { background: var(--cream); }
.about-story-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: flex-start; }
@media (min-width: 1024px) { .about-story-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.about-story .img-wrap { position: relative; }
.about-story .img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: 18px; }
.about-story .gold-corner {
  display: none;
  position: absolute; bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  border: 3px solid var(--gold);
  border-radius: 18px 0 18px 0;
}
@media (min-width: 1024px) { .about-story .gold-corner { display: block; } }
.about-story .founder-card {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 16px 20px; border-radius: 8px;
  box-shadow: 0 12px 30px -10px rgba(15,42,74,0.2);
  border: 1px solid var(--border); max-width: 260px;
}
.about-story .founder-card h4 { font-family: "Playfair Display", serif; font-size: 16px; color: var(--navy); font-weight: 600; }
.about-story .founder-card p { font-size: 12px; color: var(--muted); margin-top: 4px; }
.about-story h2 {
  font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 48px);
  font-weight: 600; color: var(--navy); line-height: 1.15; margin-top: 16px;
}
.about-story h2 .italic { font-style: italic; font-weight: 400; }
.about-story .body { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.about-story .body p { font-size: 15.5px; color: var(--muted); line-height: 1.75; }

/* Pull quote */
.pull-quote {
  background: var(--navy); color: #fff; text-align: center;
  position: relative; overflow: hidden;
  padding: 80px 0;
}
@media (min-width: 1024px) { .pull-quote { padding: 112px 0; } }
.pull-quote::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 18px 18px; opacity: 0.4; pointer-events: none;
}
.pull-quote .container { position: relative; max-width: 920px; }
.pull-quote .icon-quote { width: 40px; height: 40px; color: var(--gold); margin: 0 auto; }
.pull-quote p.q {
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: clamp(22px, 3vw, 38px); line-height: 1.5;
  margin-top: 24px;
}
.pull-quote .tag-script { font-family: "Caveat", cursive; color: var(--gold); font-size: clamp(24px, 3vw, 32px); margin-top: 24px; }

/* Values */
.values-section { background: var(--cream-alt); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.value-card .ico {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold-soft); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.value-card .ico svg { width: 22px; height: 22px; }
.value-card h3 { font-family: "Playfair Display", serif; font-size: 20px; color: var(--navy); font-weight: 600; margin-top: 20px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; }

/* Discipline */
.discipline { background: #fff; }
.discipline-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .discipline-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.discipline h2 {
  font-family: "Playfair Display", serif; font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600; color: var(--navy); line-height: 1.1; margin-top: 16px;
}
.discipline h2 .italic { font-style: italic; font-weight: 400; }
.discipline .desc { margin-top: 24px; color: var(--muted); line-height: 1.7; }
.discipline ul.steps { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: var(--navy); }
.discipline ul.steps li { display: flex; gap: 12px; align-items: flex-start; }
.discipline ul.steps .step-n { font-family: "Caveat", cursive; color: var(--gold); font-size: 22px; line-height: 1; }
.discipline .img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: 18px; }
.discipline .cta { margin-top: 40px; }

/* ============================ SERVICES PAGE ============================ */
.process { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-head { max-width: 640px; margin-bottom: 56px; }
.process-head h2 {
  font-family: "Playfair Display", serif; font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600; color: var(--navy); line-height: 1.1; margin-top: 16px;
}
.process-head h2 .italic { font-style: italic; font-weight: 400; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card .step {
  font-family: "Playfair Display", serif;
  font-size: 72px; color: rgba(201, 169, 97, 0.6);
  line-height: 1;
}
.process-card h3 { font-family: "Playfair Display", serif; font-size: 20px; color: var(--navy); font-weight: 600; margin-top: 16px; }
.process-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.process .cta { margin-top: 64px; }

/* ============================ GALLERY PAGE ============================ */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(12, 1fr); gap: 20px; } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--cream-alt);
}
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,55,0.7), transparent 60%);
}
.gallery-item .meta {
  position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 1;
}
.gallery-item .tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}
.gallery-item .cap {
  font-family: "Playfair Display", serif; color: #fff;
  font-size: 22px; font-weight: 600; line-height: 1.2; margin-top: 12px;
}

/* Gallery item sizes */
.gallery-item { height: 280px; }
@media (min-width: 768px) {
  .gi-1 { grid-column: span 12; grid-row: span 2; height: 520px; }
  .gi-2 { grid-column: span 12; height: 260px; }
  .gi-3 { grid-column: span 6; height: 260px; }
  .gi-4 { grid-column: span 6; height: 260px; }
  .gi-5 { grid-column: span 12; height: 280px; }
  .gi-6 { grid-column: span 6; height: 260px; }
  .gi-7 { grid-column: span 6; height: 260px; }
}
@media (min-width: 1024px) {
  .gi-1 { grid-column: span 7; grid-row: span 2; height: 540px; }
  .gi-2 { grid-column: span 5; grid-row: span 1; height: 260px; }
  .gi-3 { grid-column: span 5; height: 260px; }
  .gi-4 { grid-column: span 4; height: 260px; }
  .gi-5 { grid-column: span 4; height: 260px; }
  .gi-6 { grid-column: span 4; grid-row: span 2; height: 540px; }
  .gi-7 { grid-column: span 4; height: 260px; }
  .gi-8 { grid-column: span 4; height: 260px; }
  .gi-9 { grid-column: span 6; height: 260px; }
  .gi-10 { grid-column: span 3; height: 260px; }
  .gi-11 { grid-column: span 3; height: 260px; }
  .gi-12 { grid-column: span 12; height: 300px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10, 31, 55, 0.96);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 1100px; width: 100%; }
.lightbox-content img { width: 100%; height: auto; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lightbox-content .cap {
  font-family: "Playfair Display", serif; color: #fff;
  font-size: 20px; text-align: center; margin-top: 20px;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 280ms ease, color 280ms ease;
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ============================ CONTACT PAGE ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 56px; } }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px;
}
@media (min-width: 1024px) { .contact-form-wrap { padding: 48px; } }
.contact-form-wrap h2 {
  font-family: "Playfair Display", serif; font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600; color: var(--navy);
}
.contact-form-wrap .sub { font-size: 14px; color: var(--muted); margin-top: 8px; }
.contact-form-wrap .gold-divider { margin: 20px 0 32px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 768px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--navy); font-weight: 500; margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 16px;
  background: var(--cream); border: 1px solid var(--border); border-radius: 6px;
  font-size: 14px; color: var(--ink); outline: none;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-foot { margin-top: 8px; }
.form-foot .note { font-size: 12px; color: var(--muted); margin-top: 12px; }
.form-success {
  display: none;
  padding: 14px 18px; border-radius: 8px;
  background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534; font-size: 14px; font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: block; }

.contact-info {
  background: var(--navy); color: #fff;
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
}
@media (min-width: 1024px) { .contact-info { padding: 40px; } }
.contact-info::before {
  content: "Moda"; position: absolute; top: -10px; right: 8px;
  font-family: "Caveat", cursive; font-size: 64px;
  color: rgba(255,255,255,0.08); pointer-events: none;
}
.contact-info h3 { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 600; margin-top: 12px; }
.contact-info .items { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-info .item { display: flex; gap: 16px; align-items: flex-start; color: #fff; }
.contact-info .item .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 280ms ease, color 280ms ease;
}
.contact-info .item:hover .ic { background: var(--gold); color: var(--navy); }
.contact-info .item .ic svg { width: 20px; height: 20px; }
.contact-info .item .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.contact-info .item .val { font-size: 16px; font-weight: 500; margin-top: 4px; word-break: break-word; }

.contact-info .socials { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info .socials .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.contact-info .socials .row { display: flex; gap: 12px; }
.contact-info .socials a {
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 280ms ease, color 280ms ease;
}
.contact-info .socials a:hover { background: var(--gold); color: var(--navy); }
.contact-info .socials svg { width: 20px; height: 20px; }

.map-section { background: #fff; border-top: 1px solid var(--border); padding: 80px 0; }
.map-wrap {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 8px 30px -12px rgba(15,42,74,0.15);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ============================ FOOTER ============================ */
footer.site-footer {
  background: var(--navy-deep); color: #fff;
  position: relative; overflow: hidden;
}
footer.site-footer .gold-bar { height: 3px; background: var(--gold); }
.footer-inner { padding: 80px 24px 40px; max-width: 1280px; margin: 0 auto; position: relative; }
@media (min-width: 1024px) { .footer-inner { padding: 80px 32px 40px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(12, 1fr); } }
.f-brand { grid-column: span 4; }
.f-brand .row { display: flex; align-items: center; gap: 16px; }
.f-brand .logo-box { background: #fff; padding: 8px; border-radius: 8px; }
.f-brand .logo-box img { height: 64px; width: auto; object-fit: contain; }
.f-brand .name { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 600; }
.f-brand .script { font-family: "Caveat", cursive; color: var(--gold); font-size: 18px; }
.f-brand p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-top: 24px; max-width: 380px; }
.f-brand .socials { margin-top: 24px; display: flex; gap: 12px; }
.f-brand .socials a {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 280ms ease, color 280ms ease;
}
.f-brand .socials a:hover { border-color: var(--gold); color: var(--gold); }
.f-brand .socials svg { width: 16px; height: 16px; }

.f-col { display: flex; flex-direction: column; }
.f-quick { grid-column: span 2; }
.f-services { grid-column: span 3; }
.f-contact { grid-column: span 3; }
.f-col h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.f-col ul li { margin-bottom: 12px; }
.f-col ul a, .f-col li {
  font-size: 14px; color: rgba(255,255,255,0.8);
  transition: color 250ms ease;
}
.f-col ul a:hover { color: var(--gold); }
.f-contact ul li { display: flex; gap: 12px; align-items: flex-start; }
.f-contact ul li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.f-contact a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: space-between;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ============================ WHATSAPP FLOAT ============================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px -10px rgba(16, 185, 129, 0.4);
  transition: transform 280ms ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: rgba(37, 211, 102, 0.4);
  animation: wa-pulse 1.8s infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; position: relative; z-index: 1; fill: currentColor; }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
