:root {
  --ink: #112130;
  --ink-2: #172b3b;
  --paper: #f7f8f4;
  --paper-2: #edf2e8;
  --line: rgba(17, 33, 48, 0.13);
  --muted: #5f6870;
  --gold: #b78b35;
  --gold-2: #dcc276;
  --gold-dark: #806323;
  --green: #8cc218;
  --green-2: #a9d84a;
  --forest: #102f2b;
  --white: #ffffff;
  --radius: 6px;
  --shadow-lg: 0 32px 84px rgba(17, 33, 48, 0.18);
  --shadow-md: 0 16px 44px rgba(17, 33, 48, 0.11);
  --tx: 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(140,194,24,0.035), transparent 420px),
    var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
hr { border: 0; height: 1px; background: rgba(255, 255, 255, 0.18); margin: 14px 0; }

::selection { background: var(--gold); color: var(--ink); }

/* ====== SCROLL PROGRESS ====== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--green), var(--gold-2));
  box-shadow: 0 0 18px rgba(140, 194, 24, 0.45);
  transition: width 0.05s linear;
}

/* ====== HEADER ====== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background var(--tx), padding var(--tx), box-shadow var(--tx), color var(--tx);
}

.site-header.scrolled {
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(17, 33, 48, 0.86);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(140,194,24,0.25), rgba(255,255,255,0.04)),
    rgba(17,33,48,0.45);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--green-2);
}
.brand-mark span { font-family: "Fraunces", Georgia, serif; font-size: 16px; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 15px; letter-spacing: 0.2px; }
.brand-text small { color: rgba(255,255,255,0.7); font-size: 11.5px; margin-top: 4px; letter-spacing: 0.4px; text-transform: uppercase; }

.desktop-nav {
  display: flex; align-items: center; gap: 26px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 600;
}
.desktop-nav a { position: relative; padding: 6px 0; transition: color var(--tx); }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--green-2);
  transition: width var(--tx);
}
.desktop-nav a:hover { color: var(--green-2); }
.desktop-nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.2px;
  border-radius: var(--radius);
  transition: background var(--tx), color var(--tx), border-color var(--tx), transform var(--tx);
}
.header-cta svg { width: 16px; height: 16px; }
.header-cta:hover { background: var(--green); color: var(--ink); border-color: var(--green); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 11px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: transform var(--tx), opacity var(--tx); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 78px; left: 14px; right: 14px;
  z-index: 45;
  display: none;
  padding: 14px;
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: grid; gap: 4px; }
.mobile-menu a {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
  font-size: 15px;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--green);
  color: var(--ink) !important;
  border-bottom: 0 !important;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 140px clamp(20px, 5vw, 72px) 100px;
}
.hero-media {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
  transform: scale(1.04);
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  opacity: 0.36;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,23,34,0.52), rgba(9,23,34,0.06));
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 76% 22%, rgba(140,194,24,0.16), transparent 62%),
    linear-gradient(90deg, rgba(9,23,34,0.94) 0%, rgba(13,32,45,0.70) 48%, rgba(13,32,45,0.38) 100%),
    linear-gradient(0deg, rgba(9,18,28,0.92), rgba(9,18,28,0.08) 58%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.35;
  pointer-events: none;
}
@keyframes kenburns {
  0% { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@keyframes blueprintDrift {
  0% { background-position: -1px -1px, -1px -1px; }
  100% { background-position: 63px 63px, 63px 63px; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
}

.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
}
.hero-meta .dot { width: 8px; height: 8px; background: var(--green-2); border-radius: 50%; box-shadow: 0 0 0 4px rgba(140,194,24,0.18); }

.hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 104px;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-title-line { display: block; }
.hero-title-line.accent {
  margin-top: 8px;
  padding-bottom: 0.12em;
  background: linear-gradient(90deg, var(--green-2), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-copy {
  max-width: 720px;
  font-size: 20px;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
}
.hero-copy strong { color: var(--green-2); font-weight: 700; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}

.primary-btn, .ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.4px;
  border-radius: var(--radius);
  transition: transform var(--tx), background var(--tx), color var(--tx), border-color var(--tx), box-shadow var(--tx);
  cursor: pointer;
}
.primary-btn {
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #10210d;
  border: 1px solid var(--green);
  box-shadow: 0 18px 40px rgba(140, 194, 24, 0.28);
}
.primary-btn svg { width: 18px; height: 18px; }
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(140, 194, 24, 0.38); }

.ghost-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.ghost-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.ghost-btn.light { border-color: rgba(255,255,255,0.4); }

.hero-panel {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ====== PROOF STRIP ====== */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(17,33,48,0.06);
}
.proof-item {
  padding: 24px 24px;
  border-left: 1px solid var(--line);
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
}
.proof-item:last-child { border-right: 1px solid var(--line); }
.proof-item span {
  color: #6f9e16;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.proof-item strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.proof-item.call {
  background:
    linear-gradient(135deg, rgba(140,194,24,0.11), rgba(183,139,53,0.08)),
    #ffffff;
}
.hero-panel > div {
  padding: 24px 26px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-panel > div:last-child { border-right: 0; }
.hero-panel .num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(90deg, var(--green-2), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-panel small {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  letter-spacing: 0.3px;
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: grid; place-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  z-index: 3;
}
.hero-scroll span {
  display: block; width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  position: relative;
}
.hero-scroll span::after {
  content: ""; position: absolute;
  left: 50%; top: 8px;
  width: 2px; height: 8px;
  background: var(--green-2);
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrolldot 1.6s ease-in-out infinite;
}
.hero-scroll small { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; }
@keyframes scrolldot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ====== MARQUEE ====== */
.marquee {
  position: relative;
  background: var(--ink-2);
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.marquee-track span:nth-child(odd) { color: var(--green-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====== SECTIONS ====== */
section { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px); }
.band { background: var(--white); }

.eyebrow, .section-label {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #6f9e16; }

h1, h2, h3 { margin-top: 0; font-family: "Fraunces", Georgia, serif; font-weight: 700; letter-spacing: 0; }
h2 { font-size: 56px; line-height: 1.04; margin-bottom: 18px; text-wrap: balance; }
h3 { font-size: 22px; margin-bottom: 10px; }

p { margin-top: 0; }

.section-heading {
  display: flex; align-items: end; justify-content: space-between;
  gap: clamp(16px, 4vw, 60px);
  margin-bottom: clamp(34px, 5vw, 64px);
}
.section-heading.light { color: var(--white); }
.section-heading h2 { max-width: 820px; }
.section-lead { color: var(--muted); max-width: 540px; font-size: 17px; }
.section-lead.light { color: rgba(255,255,255,0.78); }
.section-lead.light strong { color: var(--green-2); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #557c11; font-weight: 800; letter-spacing: 0.05em;
  font-size: 13.5px; text-transform: uppercase;
  white-space: nowrap;
}
.text-link svg { width: 16px; height: 16px; transition: transform var(--tx); }
.text-link:hover svg { transform: translateX(4px); }

/* ====== INTRO ====== */
.intro { background: linear-gradient(180deg, var(--paper), #ffffff); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.intro p { color: var(--muted); font-size: 17px; line-height: 1.8; margin: 0 0 14px; }
.intro p strong { color: var(--ink); font-weight: 700; }

/* ====== LANDOWNERS ====== */
.landowners {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 85% 10%, rgba(140,194,24,0.16), transparent 68%),
    linear-gradient(135deg, var(--ink), #0c1a25 56%, var(--forest));
  color: var(--white);
}
.landowners::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.72), transparent 86%);
}
.landowners-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}
.landowners-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
}
.landowners-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 26px;
}
.landowners .text-link { color: var(--green-2); }
.owner-questions {
  display: grid;
  gap: 12px;
}
.owner-questions details {
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(12px);
  padding: 20px 22px;
  transition: border-color var(--tx), background var(--tx), box-shadow var(--tx);
}
.owner-questions details[open] {
  border-color: rgba(169,216,74,0.55);
  background: rgba(255,255,255,0.095);
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}
.owner-questions summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}
.owner-questions summary::-webkit-details-marker { display: none; }
.owner-questions summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169,216,74,0.45);
  color: var(--green-2);
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.owner-questions details[open] summary::after { content: "−"; }
.owner-questions p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.74;
  font-size: 15.5px;
}

/* ====== MİSYON & VİZYON ====== */
.mv { background: var(--paper-2); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mv-card {
  position: relative;
  padding: 44px 38px 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-md);
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.mv-num {
  position: absolute; top: 22px; right: 28px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 56px; font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--gold-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0.55;
  line-height: 1;
}
.mv-card h3 {
  margin: 0 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px; font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.mv-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.mv-card p strong { color: var(--ink); font-weight: 700; }

/* ====== SERVICES ====== */
.services { background: linear-gradient(180deg, var(--paper-2), #f7f8f4); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
}
.service-card::after, .timeline-item::after, .t-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(140,194,24,0.07), transparent 42%);
  opacity: 0;
  transition: opacity var(--tx);
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold-2));
  transition: width var(--tx);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(140, 194, 24, 0.45);
}
.service-card:hover::before { width: 100%; }
.service-card:hover::after, .timeline-item:hover::after, .t-card:hover::after { opacity: 1; }
.service-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px; font-weight: 600;
  color: #6f9e16;
  margin-bottom: 18px;
  line-height: 1;
}
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }

/* ====== CATALOG ====== */
.catalog {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(140,194,24,0.16), transparent 70%),
    linear-gradient(180deg, var(--ink-2), #0c1925 70%, #0a141d);
  color: var(--white);
}
.catalog .section-heading { align-items: center; }
.catalog .section-heading h2 { max-width: 920px; }

.catalog-stat {
  display: grid; place-items: center;
  min-width: 188px; min-height: 138px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(12px);
}
.catalog-stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 56px; line-height: 1;
  background: linear-gradient(180deg, var(--green-2), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.catalog-stat span { margin-top: 10px; color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; text-align: center; }

/* ---- Gallery grid ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.g-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0d1a26;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  transition: transform var(--tx), border-color var(--tx), box-shadow var(--tx);
}
.g-card.is-hidden { display: none; }
.g-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #141418;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.g-card:hover { transform: translateY(-4px); border-color: rgba(140,194,24,0.5); box-shadow: 0 26px 60px rgba(0,0,0,0.45); }
.g-card:hover img { transform: scale(1.06); }
.g-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(9,18,28,0) 0%, rgba(9,18,28,0.9) 65%);
  color: var(--white);
}
.g-card .g-year {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  background: rgba(140,194,24,0.94);
  color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
}
.g-card figcaption strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px; font-weight: 600;
  line-height: 1.25;
}
.g-card figcaption small { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); font-size: 12.5px; }

.gallery-note {
  margin: 36px auto 0;
  max-width: 880px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  font-style: italic;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(8px);
}
.lightbox.is-open { display: grid; }
.lb-stage {
  position: relative;
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: grid;
}
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0f0f12;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.lb-stage figcaption {
  margin-top: 14px;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  letter-spacing: 0.3px;
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  cursor: pointer;
  transition: background var(--tx), border-color var(--tx), transform var(--tx);
}
.lb-close {
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  font-size: 28px; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 64px;
  font-size: 32px;
  font-family: Georgia, serif;
}
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-nav:hover { transform: translateY(-50%) scale(1.05); }

/* ====== QUALITY ====== */
.quality {
  background:
    radial-gradient(800px 400px at 90% 20%, rgba(140,194,24,0.16), transparent 70%),
    linear-gradient(180deg, var(--forest), #0b211f);
  color: var(--white);
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
}
.quality-item {
  padding: 36px 30px;
  min-height: 270px;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: background var(--tx);
}
.quality-item:hover { background: rgba(255,255,255,0.04); }
.quality-item .ic { width: 36px; height: 36px; color: var(--green-2); margin-bottom: 26px; }
.quality-item p { color: rgba(255,255,255,0.74); font-size: 15px; line-height: 1.7; margin: 0; }

/* ====== PROCESS ====== */
.process { background: var(--paper); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-item {
  position: relative;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--tx), border-color var(--tx);
}
.timeline-item { overflow: hidden; }
.timeline-item:hover { transform: translateY(-4px); border-color: rgba(140,194,24,0.45); }
.timeline-item .step {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px; font-weight: 700;
  color: #6f9e16;
  margin-bottom: 22px; line-height: 1;
}
.timeline-item p { color: var(--muted); margin: 0; line-height: 1.7; font-size: 15px; }

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--paper-2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-card {
  position: relative;
  margin: 0;
  padding: 36px 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.t-card::before {
  content: "“";
  position: absolute; top: 8px; left: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 80px; line-height: 1;
  color: var(--green);
  opacity: 0.35;
}
.t-card blockquote {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px; line-height: 1.55;
  color: var(--ink);
}
.t-card figcaption strong { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: #6f9e16; }

/* ====== FAQ ====== */
.faq { background: var(--white); }
.faq-list { display: grid; gap: 12px; max-width: 980px; }
.faq details {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 22px;
  transition: border-color var(--tx), background var(--tx);
}
.faq details[open] { border-color: rgba(140,194,24,0.45); background: var(--white); box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px; font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: Inter, sans-serif;
  font-weight: 600; font-size: 24px; color: #6f9e16;
  transition: transform var(--tx);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--muted); line-height: 1.75; font-size: 15.5px; }

/* ====== CONTACT ====== */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 640px;
  padding: clamp(80px, 8vw, 130px) clamp(20px, 5vw, 72px);
}
.contact-visual {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.contact-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,18,28,0.92) 0%, rgba(13,32,45,0.68) 58%, rgba(13,32,45,0.36) 100%),
    linear-gradient(0deg, rgba(9,18,28,0.78), rgba(9,18,28,0.10) 62%);
}
.contact-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: end;
  height: 100%;
}
.contact-content { max-width: 760px; }
.contact-lead { color: rgba(255,255,255,0.82); font-size: 18px; line-height: 1.7; max-width: 620px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.contact-card {
  display: grid; gap: 12px;
  padding: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
}
.contact-card strong { font-family: "Fraunces", Georgia, serif; font-size: 24px; line-height: 1.2; }
.contact-card span, .contact-card p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.6; margin: 0; }
.contact-card a {
  display: block;
  padding: 10px 0;
  color: var(--green-2);
  font-weight: 700;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,0.10);
  transition: color var(--tx);
}
.contact-card a:first-of-type { border-top: 0; }
.contact-card a b { display: block; color: rgba(255,255,255,0.95); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px; }
.contact-card a:hover { color: var(--white); }

/* ====== FOOTER ====== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 40px clamp(20px, 5vw, 72px) 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-brand strong { display: block; color: var(--white); font-family: "Fraunces", Georgia, serif; font-size: 17px; }
.footer-brand small { display: block; color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 2px; letter-spacing: 0.2px; }
footer nav { display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; }
footer nav a:hover { color: var(--green-2); }
.copyright { grid-column: 1 / -1; padding-top: 22px; margin: 14px 0 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ====== FLOATING WHATSAPP ====== */
.floating-wa {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 55;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
  transition: transform var(--tx), box-shadow var(--tx);
}
.floating-wa svg { width: 28px; height: 28px; }
.floating-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 50px rgba(37, 211, 102, 0.55); }

/* ====== REVEAL ANIMATION ====== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-media { animation: none; }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-title { font-size: 76px; }
  .hero-copy { font-size: 18px; }
  h2 { font-size: 44px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .hero-panel { grid-template-columns: repeat(2, 1fr); }
  .hero-panel > div:nth-child(2) { border-right: 0; }
  .hero-panel > div:nth-child(1), .hero-panel > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .landowners-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; align-items: start; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 18px; }
  .site-header.scrolled { padding: 10px 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { font-size: 10.5px; }

  .hero { min-height: 100vh; padding: 118px 18px 70px; }
  .hero-title { font-size: 48px; }
  .hero-copy { font-size: 16.5px; }
  .hero-meta { font-size: 11.5px; padding: 8px 12px; }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-panel > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 18px 22px; }
  .hero-panel > div:last-child { border-bottom: 0; }
  .hero-scroll { display: none; }

  .marquee-track { font-size: 15px; }
  .marquee-track { animation-duration: 28s; }

  .proof-strip { grid-template-columns: 1fr; padding: 0 18px; }
  .proof-item { min-height: auto; padding: 18px 0; border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:first-child { border-top: 0; }
  .proof-item:last-child { border-right: 0; }

  section { padding: 64px 18px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 30px; }
  h2 { font-size: 32px; }
  h3 { font-size: 19px; }

  .intro-grid { grid-template-columns: 1fr; }
  .owner-questions details { padding: 17px 18px; }
  .owner-questions summary { font-size: 17px; gap: 16px; }
  .owner-questions summary::after { width: 28px; height: 28px; }
  .mv-grid { grid-template-columns: 1fr; gap: 16px; }
  .mv-card { padding: 32px 24px 28px; }
  .mv-num { font-size: 42px; top: 16px; right: 20px; }
  .mv-card h3 { font-size: 24px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 26px 22px; }
  .service-num { font-size: 32px; }

  .catalog-stat { min-width: 100%; min-height: auto; padding: 16px 18px; }
  .catalog-stat strong { font-size: 42px; }
  .gallery { grid-template-columns: 1fr; gap: 16px; }
  .g-card img { aspect-ratio: 16 / 10; }
  .lb-close { width: 40px; height: 40px; top: 14px; right: 14px; }
  .lb-nav { width: 44px; height: 56px; font-size: 26px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }

  .quality-grid { grid-template-columns: 1fr; }
  .quality-item { min-height: auto; padding: 28px 22px; }

  .timeline { grid-template-columns: 1fr; }

  .faq summary { font-size: 16.5px; }
  .faq details { padding: 16px 18px; }

  .contact { min-height: auto; }
  .contact-card { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr; align-items: flex-start; gap: 18px; }
  footer nav { flex-wrap: wrap; gap: 14px 18px; }

  .floating-wa { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .floating-wa svg { width: 26px; height: 26px; }
}
