:root {
  --forest-950: #061b14;
  --forest-900: #0c2a1f;
  --forest-800: #163a2c;
  --forest-700: #1f4d39;
  --forest-600: #2a6248;
  --paper-100: #f7f1e5;
  --paper-200: #efe6d4;
  --paper-300: #e1d3b8;
  --paper-400: #cbb999;
  --ink-900: #17231c;
  --ink-700: #445248;
  --ink-500: #69756b;
  --gold-500: #c89d50;
  --gold-400: #ddba74;
  --line-dark: rgba(23, 35, 28, 0.14);
  --line-light: rgba(247, 241, 229, 0.16);
  --shadow-soft: 0 20px 60px -28px rgba(6, 27, 20, 0.28);
  --shadow-deep: 0 32px 80px -34px rgba(6, 27, 20, 0.62);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 10%, rgba(200, 157, 80, 0.1), transparent 22%),
    radial-gradient(circle at 88% 4%, rgba(31, 77, 57, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf7ef 0%, var(--paper-100) 100%);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: -40%;
  z-index: 100;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  animation: grain 10s steps(6) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -2%); }
  80% { transform: translate(2%, 2%); }
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--gold-500);
  color: var(--forest-950);
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.site-chroma {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 27, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 20, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  opacity: 0.2;
}

.topline {
  background: var(--forest-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(247, 241, 229, 0.78);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.35s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 241, 229, 0.84);
  backdrop-filter: blur(16px);
  transition: background 0.35s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 16px 50px -30px rgba(6, 27, 20, 0.45);
}

.site-header.scrolled::before {
  background: rgba(247, 241, 229, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: clamp(168px, 18vw, 248px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav > a {
  position: relative;
  padding: 0.2rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1rem;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  width: 100%;
  left: 0;
}

.nav-cta {
  padding: 0.8rem 1.2rem !important;
  border: 1px solid var(--ink-900);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--forest-900);
  color: var(--paper-100);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink-900);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-paper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(247, 241, 229, 0.5)),
    var(--paper-100);
  border-block: 1px solid var(--line-dark);
}

.section-dark {
  color: var(--paper-100);
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 157, 80, 0.18), transparent 22%),
    radial-gradient(circle at 82% 30%, rgba(42, 98, 72, 0.4), transparent 26%),
    linear-gradient(160deg, var(--forest-950) 0%, var(--forest-900) 48%, var(--forest-800) 100%);
}

.section-gridline::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 35, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 28, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
}

.section-intro {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-intro h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.section-intro p {
  margin-top: 1.15rem;
  color: var(--ink-700);
  max-width: 60ch;
}

.section-dark .section-intro p,
.section-dark .section-intro h2 {
  color: var(--paper-100);
}

.section-dark .section-intro p {
  color: rgba(247, 241, 229, 0.72);
}

.hero-home {
  position: relative;
  overflow: hidden;
  color: var(--paper-100);
  background:
    radial-gradient(circle at 10% 15%, rgba(200, 157, 80, 0.22), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(42, 98, 72, 0.4), transparent 24%),
    linear-gradient(150deg, var(--forest-950) 0%, #081f17 42%, #14392a 100%);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'%3E%3Cg fill='none' stroke='%23c89d50' stroke-opacity='.18'%3E%3Cpath d='M44 746c154-187 189-340 330-432S636 204 862 76'/%3E%3Cpath d='M4 822c169-205 214-382 362-484S676 210 896 108'/%3E%3Cpath d='M118 774c134-175 144-296 282-387S640 271 788 148'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4.5rem, 10vw, 8.2rem) 0 clamp(3.5rem, 8vw, 5.8rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-meta {
  margin-top: 1rem;
  color: rgba(247, 241, 229, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy h1 {
  margin-top: 1.4rem;
  max-width: 10ch;
  font-size: clamp(3.1rem, 8vw, 6.3rem);
}

.hero-lead {
  max-width: 56ch;
  margin-top: 1.5rem;
  color: rgba(247, 241, 229, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold-500);
  color: var(--forest-950);
  box-shadow: 0 16px 36px -18px rgba(200, 157, 80, 0.75);
}

.btn-primary:hover {
  background: var(--gold-400);
}

.btn-secondary {
  border-color: rgba(247, 241, 229, 0.34);
  color: var(--paper-100);
  background: rgba(247, 241, 229, 0.04);
}

.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-notes span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 229, 0.14);
  background: rgba(247, 241, 229, 0.06);
  color: rgba(247, 241, 229, 0.75);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(247, 241, 229, 0.14);
  box-shadow: var(--shadow-deep);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-landscape {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: min(100%, 640px);
  aspect-ratio: 1.45 / 1;
}

.frame-landscape figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  max-width: 32ch;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(6, 27, 20, 0.7);
  color: rgba(247, 241, 229, 0.9);
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

.frame-portrait {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(46%, 290px);
  aspect-ratio: 0.78;
}

.paper-note {
  position: absolute;
  left: 1rem;
  bottom: 3.8rem;
  width: min(280px, 65%);
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 229, 0.96);
  color: var(--ink-900);
  box-shadow: var(--shadow-soft);
}

.paper-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.paper-note p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-signature {
  position: absolute;
  right: 2.4rem;
  top: 0;
  width: min(56%, 360px);
  opacity: 0.92;
}

.hero-marquee {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(247, 241, 229, 0.12);
  border-bottom: 1px solid rgba(247, 241, 229, 0.12);
  background: rgba(247, 241, 229, 0.04);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 2rem;
  color: rgba(247, 241, 229, 0.78);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.02rem;
  font-style: italic;
  animation: marquee 34s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.metrics-band {
  border-bottom: 1px solid var(--line-dark);
  background: rgba(247, 241, 229, 0.84);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem 0;
}

.metric-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.46);
}

.metric-card strong {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink-700);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.manifesto-layout {
  position: relative;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.manifesto-grid-tight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manifesto-card,
.info-panel,
.aside-card,
.contact-card,
.post-card,
.region-directory-card,
.region-spotlight-main,
.region-rail-card,
.form-card,
.media-panel,
.page-aside {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.section-dark .region-spotlight-main,
.section-dark .region-rail-card {
  background: rgba(247, 241, 229, 0.06);
  border-color: rgba(247, 241, 229, 0.12);
}

.manifesto-card {
  padding: 1.7rem;
}

.card-index,
.region-index,
.process-index,
.faq-number {
  display: inline-block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--gold-500);
  letter-spacing: 0.12em;
}

.manifesto-card h3 {
  margin-top: 1rem;
  font-size: 1.28rem;
}

.manifesto-card p {
  margin-top: 0.7rem;
  color: var(--ink-700);
}

.quote-panel {
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
  box-shadow: var(--shadow-deep);
}

.quote-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-panel figcaption {
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  max-width: 440px;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(6, 27, 20, 0.84);
  color: var(--paper-100);
  backdrop-filter: blur(10px);
}

.quote-panel p {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-style: italic;
}

.quote-panel span {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold-400);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.region-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
}

.region-spotlight-main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}

.region-spotlight-main h3 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.region-spotlight-main p {
  margin-top: 1rem;
  max-width: 50ch;
  color: inherit;
}

.text-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.region-rail {
  display: grid;
  gap: 1rem;
}

.region-rail-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  align-items: start;
}

.region-rail-card strong {
  display: block;
  font-size: 1.1rem;
}

.region-rail-card p {
  margin-top: 0.4rem;
  color: rgba(247, 241, 229, 0.74);
}

.region-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.region-chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 229, 0.18);
  background: rgba(247, 241, 229, 0.06);
  color: var(--paper-100);
  font-size: 0.82rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.region-chip:hover {
  background: rgba(247, 241, 229, 0.12);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.region-chip-alt {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line-dark);
}

.portrait-layout,
.consult-layout,
.detail-grid,
.contact-layout,
.insight-grid,
.article-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.portrait-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 720px;
}

.frame-portrait-large {
  position: absolute;
  left: 0;
  top: 0;
  width: min(100%, 440px);
  aspect-ratio: 0.78;
  box-shadow: var(--shadow-deep);
}

.frame-landscape-small {
  position: absolute;
  right: 0;
  bottom: 1.6rem;
  width: min(68%, 380px);
  aspect-ratio: 1.15;
  box-shadow: var(--shadow-soft);
}

.portrait-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.portrait-copy p {
  margin-top: 1rem;
  color: var(--ink-700);
}

.bullet-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.bullet-points span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.signature-ink {
  margin-top: 1.8rem;
  width: min(300px, 68%);
}

.consult-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.92fr);
  align-items: start;
}

.process-rail {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.25rem 0 1.25rem 0;
  border-top: 1px solid var(--line-dark);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.process-step h3 {
  font-size: 1.15rem;
}

.process-step p {
  margin-top: 0.45rem;
  color: var(--ink-700);
}

.form-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.form-head h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.form-head p {
  margin-top: 0.8rem;
  color: var(--ink-700);
}

.form-card label {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 1rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-900);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(200, 157, 80, 0.14);
  background: #fff;
}

.form-card button {
  width: 100%;
  margin-top: 1.35rem;
}

.form-note {
  margin-top: 0.9rem;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.media-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.6rem 1.7rem;
}

.media-panel h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.media-panel p {
  margin-top: 0.8rem;
  color: var(--ink-700);
  max-width: 58ch;
}

.insight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr 28px;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  justify-self: end;
  color: var(--gold-500);
  font-size: 1.3rem;
  transition: transform 0.25s var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-answer p {
  padding: 0 1.2rem 1.2rem 4.2rem;
  color: var(--ink-700);
}

.section-link {
  margin-top: 1.2rem;
}

.section-link a {
  color: var(--forest-700);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-grid {
  display: grid;
  gap: 1rem;
}

.post-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  padding: 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.post-card:hover,
.region-directory-card:hover,
.contact-card:hover,
.manifesto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -34px rgba(6, 27, 20, 0.34);
}

.post-date {
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.post-card h3 {
  margin-top: 0.9rem;
  font-size: 1.35rem;
}

.post-card p {
  margin-top: 0.75rem;
  color: var(--ink-700);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper-100);
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 157, 80, 0.2), transparent 22%),
    radial-gradient(circle at 88% 26%, rgba(42, 98, 72, 0.34), transparent 24%),
    linear-gradient(160deg, var(--forest-950) 0%, var(--forest-900) 52%, var(--forest-800) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 241, 229, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 229, 0.12) 1px, transparent 1px);
  background-size: 88px 88px;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  align-items: end;
  padding: clamp(3.6rem, 7vw, 5rem) 0;
}

.breadcrumb {
  color: rgba(247, 241, 229, 0.64);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: rgba(247, 241, 229, 0.88);
}

.page-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  max-width: 14ch;
}

.lead {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: rgba(247, 241, 229, 0.78);
}

.page-aside {
  padding: 1.4rem 1.5rem;
  background: rgba(247, 241, 229, 0.08);
  border-color: rgba(247, 241, 229, 0.14);
  color: var(--paper-100);
}

.page-aside strong {
  display: block;
  color: var(--gold-400);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-aside p {
  margin-top: 0.75rem;
  color: rgba(247, 241, 229, 0.76);
}

.region-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.region-directory-card {
  padding: 1.4rem;
}

.region-directory-card h3 {
  margin-top: 0.9rem;
  font-size: 1.4rem;
}

.region-directory-card p {
  margin-top: 0.7rem;
  color: var(--ink-700);
}

.detail-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.74fr);
  align-items: start;
}

.content-stack,
.aside-stack {
  display: grid;
  gap: 1rem;
}

.info-panel {
  padding: 1.5rem;
}

.info-panel h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.info-panel p {
  margin-top: 0.9rem;
  color: var(--ink-700);
}

.bullet-list {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-700);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.aside-card {
  padding: 1.4rem;
}

.aside-card strong {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.aside-card p {
  margin-top: 0.85rem;
  color: var(--ink-700);
}

.aside-card .btn {
  width: 100%;
  margin-top: 1rem;
}

.notice {
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  background: rgba(200, 157, 80, 0.08);
  color: var(--ink-700);
}

.faq-wrap {
  display: grid;
  gap: 1rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.96fr);
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.45rem;
}

.contact-label {
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-top: 0.85rem;
  font-size: 1.45rem;
}

.contact-card p {
  margin-top: 0.55rem;
  color: var(--ink-700);
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  align-items: start;
}

.article {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.article h2,
.article h3 {
  margin-top: 1.7rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.article p + p,
.article p + h2,
.article h2 + p,
.article h3 + p {
  margin-top: 1rem;
}

.article p {
  color: var(--ink-700);
}

.missing-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
}

.missing-shell {
  text-align: center;
}

.missing-shell h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.missing-shell p {
  max-width: 42ch;
  margin: 1rem auto 0;
  color: var(--ink-700);
}

.missing-shell .btn {
  margin-top: 2rem;
}

.site-footer {
  color: var(--paper-100);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 157, 80, 0.15), transparent 18%),
    linear-gradient(180deg, var(--forest-950) 0%, #071c15 100%);
  border-top: 1px solid rgba(247, 241, 229, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 1.4rem;
  padding: 3rem 0 2rem;
}

.footer-brand p,
.site-footer li,
.site-footer a {
  color: rgba(247, 241, 229, 0.72);
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 40ch;
}

.footer-signature {
  width: min(280px, 92%);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(247, 241, 229, 0.16);
  border-radius: 999px;
}

.site-footer h4 {
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(247, 241, 229, 0.08);
  color: rgba(247, 241, 229, 0.56);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 85;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--paper-100);
  box-shadow: var(--shadow-deep);
}

.wa-float-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wa-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35d16f;
  box-shadow: 0 0 0 0 rgba(53, 209, 111, 0.72);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 209, 111, 0.62); }
  70% { box-shadow: 0 0 0 12px rgba(53, 209, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 209, 111, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-shift] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::after,
  .marquee-track,
  .wa-dot {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-grid,
  .region-spotlight-grid,
  .portrait-layout,
  .consult-layout,
  .detail-grid,
  .contact-layout,
  .insight-grid,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .photo-stack {
    min-height: 560px;
  }

  .manifesto-grid-tight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-grid-wide,
  .region-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    padding-bottom: 1.2rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(6, 27, 20, 0.96);
    color: var(--paper-100);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  body.nav-locked {
    overflow: hidden;
  }

  .main-nav > a {
    font-size: 0.95rem;
  }

  .nav-cta {
    border-color: rgba(247, 241, 229, 0.28);
  }

  .topline-inner {
    justify-content: center;
    text-align: center;
  }

  .brand-logo {
    width: clamp(150px, 42vw, 220px);
  }

  .metrics-grid,
  .contact-grid,
  .manifesto-grid,
  .post-grid-wide,
  .region-directory,
  .manifesto-grid-tight {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(92%, 100%);
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 460px;
  }

  .frame-landscape {
    width: 100%;
    position: relative;
    top: 0;
  }

  .frame-portrait {
    width: 46%;
    bottom: 0;
  }

  .paper-note {
    left: auto;
    right: 0;
    bottom: 2rem;
    width: min(70%, 250px);
  }

  .hero-signature {
    display: none;
  }

  .photo-stack {
    min-height: 500px;
  }

  .frame-portrait-large {
    width: 74%;
  }

  .frame-landscape-small {
    width: 58%;
  }

  .faq-question {
    grid-template-columns: 38px 1fr 20px;
    padding: 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem 1rem;
  }

  .media-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .wa-float {
    right: 0.9rem;
    bottom: 0.9rem;
  }
}

/* Öne çıkan bölge paneli — drone görseli arka plan */
.section-dark .region-spotlight-main {
  background-image: linear-gradient(180deg, rgba(6, 27, 20, 0.3), rgba(6, 27, 20, 0.9)), url("/assets/img/hero-arazi.jpg");
  background-size: cover;
  background-position: center 68%;
}

/* ============ v3: gerçek içerik bileşenleri ============ */

/* Hizmet kartları */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -34px rgba(6, 27, 20, 0.34);
}

.service-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.service-body h3 {
  margin-top: 0.7rem;
  font-size: 1.3rem;
}

.service-body p {
  margin-top: 0.65rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

/* Müşteri yorumları */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.t-quote {
  font-family: "Manrope", system-ui, sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-900);
}

.t-provider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.t-provider img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-dark);
}

.t-provider strong {
  display: block;
  font-size: 0.95rem;
}

.t-provider span {
  color: var(--ink-500);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sertifika galerisi */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cert-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -34px rgba(6, 27, 20, 0.34);
}

.cert-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}

/* Ekip */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.team-photo {
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.1rem 1.2rem 1.3rem;
}

.team-info strong {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.15rem;
}

.team-info span {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Video embed */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  background: var(--forest-950);
  box-shadow: var(--shadow-deep);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Banka kartı */
.bank-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 640px;
  padding: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.bank-card img {
  width: 120px;
  flex: none;
}

.bank-card h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.bank-iban {
  margin-top: 0.6rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--forest-700);
}

.bank-card p {
  color: var(--ink-700);
}

@media (max-width: 1040px) {
  .service-grid,
  .testimonial-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-grid,
  .testimonial-grid,
  .cert-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .bank-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

/* Video galerisi */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.video-title {
  margin-top: 0.8rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.1rem;
}

@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* İlan kartları ve galeri */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.listing-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -34px rgba(6, 27, 20, 0.34);
}

.listing-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.listing-card:hover .listing-img img {
  transform: scale(1.05);
}

.listing-price {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(6, 27, 20, 0.85);
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}

.listing-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.listing-body h3 {
  margin-top: 0.6rem;
  font-size: 1.35rem;
}

.listing-body p {
  margin-top: 0.6rem;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  aspect-ratio: 4 / 3;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ================================================================
   v4 — "SAHA DOSYASI" kimliği: kraft doku, bant, damga, el yazısı
   ================================================================ */

/* scroll ilerleme çubuğu */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 1px 8px rgba(200, 157, 80, 0.55);
}

/* zemin: kraft kağıt + eş yükselti konturları */
body {
  background:
    radial-gradient(circle at 10% 6%, rgba(200, 157, 80, 0.12), transparent 26%),
    linear-gradient(180deg, #f6efdf 0%, #f1e8d2 100%);
}

.site-chroma {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'%3E%3Cg fill='none' stroke='%2317231c' stroke-opacity='.055'%3E%3Cpath d='M-60 720c180-160 120-320 300-420S620 260 900 140'/%3E%3Cpath d='M-80 800c200-180 160-360 340-470S640 330 940 190'/%3E%3Cpath d='M-40 640c160-140 90-280 260-380S600 200 860 90'/%3E%3Cpath d='M-100 880c220-200 200-400 380-520S660 400 980 240'/%3E%3Ccircle cx='710' cy='620' r='90'/%3E%3Ccircle cx='710' cy='620' r='140'/%3E%3Ccircle cx='710' cy='620' r='190'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1100px auto;
  mask-image: none;
  opacity: 0.75;
}

/* mono koordinat / dosya etiketi tipi */
.coords,
.file-tag {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coords {
  margin-top: 1.1rem;
  color: rgba(247, 241, 229, 0.62);
}

/* el yazısı notlar */
.hand {
  font-family: "Caveat", cursive;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-400);
  transform: rotate(-2deg);
  display: inline-block;
}

/* eyebrow → dosya sekmesi */
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 0.5rem 0.9rem 0.42rem;
  border: 1px solid var(--line-dark);
  border-bottom: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.55);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
  color: var(--ink-700);
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  background: none;
}

.section-dark .eyebrow,
.page-hero .eyebrow,
.hero-home .eyebrow {
  background: rgba(6, 27, 20, 0.55);
  border-color: rgba(247, 241, 229, 0.22);
  color: var(--gold-400);
}

/* butonlar: pill değil, letterpress damga */
.btn,
.nav-cta {
  border-radius: 8px;
  box-shadow: none;
}

.btn-primary {
  border: 1px solid #a8813c;
  box-shadow: 4px 4px 0 rgba(23, 35, 28, 0.85);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(23, 35, 28, 0.85);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(23, 35, 28, 0.85);
}

.btn-secondary {
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(247, 241, 229, 0.16);
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(221, 186, 116, 0.35);
}

.section-paper .btn-secondary,
.section .btn-secondary {
  color: inherit;
}

/* fotoğraflar: kağıt baskı + bant + hafif rotasyon */
.frame {
  border-radius: 6px;
  padding: 10px;
  background: #fbf7ee;
  border: 1px solid rgba(23, 35, 28, 0.18);
  box-shadow: 0 18px 40px -22px rgba(6, 27, 20, 0.55);
  position: relative;
}

.frame img {
  border-radius: 2px;
}

.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 26px;
  background: rgba(221, 186, 116, 0.5);
  border: 1px dashed rgba(120, 94, 40, 0.35);
  top: -12px;
  z-index: 2;
  backdrop-filter: blur(1px);
}

.frame::before {
  left: 8%;
  transform: rotate(-6deg);
}

.frame::after {
  right: 8%;
  transform: rotate(5deg);
}

.frame-landscape {
  transform: rotate(-1.1deg);
  transition: transform 0.5s var(--ease);
}

.frame-portrait {
  transform: rotate(1.8deg);
  transition: transform 0.5s var(--ease);
}

.frame-landscape:hover,
.frame-portrait:hover {
  transform: rotate(0) scale(1.01);
}

.frame-portrait-large {
  transform: rotate(-1.2deg);
}

.frame-landscape-small {
  transform: rotate(1.6deg);
}

/* hero fotoğrafta ken-burns */
.frame-landscape img,
.quote-panel img {
  animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.07) translate(-1.4%, 1.2%); }
}

/* saha notu: yapışkan not */
.paper-note {
  border-radius: 4px;
  background: #f6e9c4;
  box-shadow: 0 16px 30px -18px rgba(6, 27, 20, 0.6);
  transform: rotate(-2.4deg);
}

.paper-note::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 96px;
  height: 24px;
  transform: translateX(-50%) rotate(1.5deg);
  background: rgba(221, 186, 116, 0.55);
  border: 1px dashed rgba(120, 94, 40, 0.35);
}

.paper-note p {
  font-family: "Caveat", cursive;
  font-size: 1.32rem;
  line-height: 1.3;
  color: #4a3d20;
}

.paper-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.2em;
  color: #8a6a2b;
}

/* döner saha damgası */
.stamp {
  position: absolute;
  z-index: 5;
  width: 128px;
  height: 128px;
  right: -18px;
  top: -34px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 18px rgba(6, 27, 20, 0.45));
}

.stamp svg {
  position: absolute;
  inset: 0;
  animation: stampspin 26s linear infinite;
}

.stamp svg text {
  fill: var(--gold-400);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 3.4px;
  font-weight: 600;
}

.stamp-core {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold-400);
  display: grid;
  place-items: center;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--paper-100);
  background: rgba(6, 27, 20, 0.55);
  backdrop-filter: blur(2px);
}

@keyframes stampspin {
  to { transform: rotate(360deg); }
}

/* metrik bandı: kart değil, cetvel */
.metrics-band {
  background: transparent;
  border-bottom: 1px dashed rgba(23, 35, 28, 0.3);
  border-top: 1px dashed rgba(23, 35, 28, 0.3);
}

.metric-card {
  border: 0;
  border-left: 1px dashed rgba(23, 35, 28, 0.3);
  border-radius: 0;
  background: transparent;
  padding: 0.6rem 1.4rem;
}

.metric-card:first-child {
  border-left: 0;
}

.metric-card span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

/* manifesto kartları: dosya föyü */
.manifesto-card {
  border: 0;
  border-top: 2px solid var(--ink-900);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1.4rem 0.2rem 0;
  position: relative;
}

.manifesto-card:hover {
  transform: none;
  box-shadow: none;
}

.manifesto-card .card-index {
  font-size: 3.4rem;
  font-style: italic;
  opacity: 0.22;
  position: absolute;
  right: 0.4rem;
  top: 0.6rem;
  letter-spacing: 0;
}

/* yorumlar: iğnelenmiş not kartları */
.testimonial-card {
  border-radius: 4px;
  background: #fbf6e9;
  border: 1px solid rgba(23, 35, 28, 0.16);
  position: relative;
  transform: rotate(-1deg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-card:nth-child(2n) {
  transform: rotate(1.1deg);
}

.testimonial-card:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(6, 27, 20, 0.5);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-400), #7d5f26 70%);
  box-shadow: 0 3px 6px rgba(6, 27, 20, 0.45);
}

.t-provider strong {
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
}

/* bölge çipleri: arşiv etiketi */
.region-chip,
.region-chip-alt {
  border-radius: 4px;
  border-style: dashed;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.region-chip:hover {
  background: var(--gold-500);
  color: var(--forest-950);
  border-style: solid;
}

/* bölüm zeminleri: koyu bölümlere kontur */
.section-dark {
  position: relative;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'%3E%3Cg fill='none' stroke='%23ddba74' stroke-opacity='.07'%3E%3Cpath d='M-60 720c180-160 120-320 300-420S620 260 900 140'/%3E%3Cpath d='M-80 800c200-180 160-360 340-470S640 330 940 190'/%3E%3Ccircle cx='740' cy='210' r='110'/%3E%3Ccircle cx='740' cy='210' r='170'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1000px auto;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

/* hero başlık: satır yükselme + fırça altı çizgi */
.hero-copy h1 {
  animation: riseIn 0.9s var(--ease) both 0.1s;
}

.hero-lead {
  animation: riseIn 0.9s var(--ease) both 0.28s;
}

.hero-actions {
  animation: riseIn 0.9s var(--ease) both 0.45s;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}

.hero-copy h1 em {
  font-style: italic;
  background: linear-gradient(104deg, rgba(200, 157, 80, 0) 0.9%, rgba(200, 157, 80, 0.38) 2.4%, rgba(221, 186, 116, 0.42) 50%, rgba(200, 157, 80, 0.36) 97%, rgba(200, 157, 80, 0) 98%);
  background-repeat: no-repeat;
  background-size: 0% 42%;
  background-position: 0 78%;
  animation: brush 1s var(--ease) forwards 0.9s;
}

@keyframes brush {
  to { background-size: 100% 42%; }
}

/* grid'lerde kademeli reveal */
.manifesto-grid > *:nth-child(2),
.service-grid > *:nth-child(2),
.testimonial-grid > *:nth-child(2),
.region-directory > *:nth-child(3n+2),
.team-grid > *:nth-child(2),
.listing-grid > *:nth-child(2) {
  transition-delay: 0.12s;
}

.manifesto-grid > *:nth-child(3),
.service-grid > *:nth-child(3),
.testimonial-grid > *:nth-child(3),
.region-directory > *:nth-child(3n),
.team-grid > *:nth-child(3) {
  transition-delay: 0.24s;
}

.team-grid > *:nth-child(4) {
  transition-delay: 0.36s;
}

/* reveal çeşitleri */
.frame.reveal {
  transform: translateY(30px) rotate(-3deg);
}

.frame.reveal.is-visible {
  transform: none;
}

.frame-landscape.reveal.is-visible {
  transform: rotate(-1.1deg);
}

.frame-portrait.reveal.is-visible {
  transform: rotate(1.8deg);
}

/* imza: çizilme efekti */
.hero-signature {
  animation: inkfade 1.6s ease both 1.1s;
}

@keyframes inkfade {
  from { opacity: 0; filter: blur(3px); clip-path: inset(0 100% 0 0); }
  to { opacity: 0.92; filter: none; clip-path: inset(0 0 0 0); }
}

/* servis / ilan kartları köşe kıvrımı */
.service-card,
.listing-card,
.post-card,
.region-directory-card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.post-card::after,
.region-directory-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, transparent 48%, rgba(23, 35, 28, 0.1) 50%, rgba(23, 35, 28, 0.18) 100%);
}

/* marquee: arşiv bandı */
.hero-marquee {
  border-top: 1px dashed rgba(247, 241, 229, 0.3);
  border-bottom: 1px dashed rgba(247, 241, 229, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .frame-landscape img,
  .quote-panel img,
  .stamp svg,
  .hero-copy h1,
  .hero-lead,
  .hero-actions,
  .hero-signature {
    animation: none;
  }
}

@media (max-width: 720px) {
  .stamp {
    display: none;
  }

  .metric-card {
    border-left: 0;
    border-top: 1px dashed rgba(23, 35, 28, 0.25);
  }

  .metric-card:first-child {
    border-top: 0;
  }
}

/* v4 ince ayar */
.hero-copy h1 em {
  background: linear-gradient(104deg, rgba(221, 186, 116, 0) 1%, rgba(221, 186, 116, 0.22) 3%, rgba(221, 186, 116, 0.26) 50%, rgba(221, 186, 116, 0.2) 97%, rgba(221, 186, 116, 0) 99%);
  background-repeat: no-repeat;
  background-size: 0% 34%;
  background-position: 0 82%;
}

.stamp {
  right: 14px;
  top: -22px;
}

@media (max-width: 1040px) {
  .stamp {
    top: 8px;
    right: 8px;
  }
}

/* v4 ince ayar 2 */
@keyframes brush {
  to { background-size: 100% 30%; }
}

.hero-copy h1 em {
  background: linear-gradient(104deg, rgba(221, 186, 116, 0) 1%, rgba(221, 186, 116, 0.16) 4%, rgba(221, 186, 116, 0.2) 50%, rgba(221, 186, 116, 0.15) 96%, rgba(221, 186, 116, 0) 99%);
  background-repeat: no-repeat;
  background-size: 0% 30%;
  background-position: 0 84%;
}

.stamp {
  top: 56%;
  right: -4px;
}

.hero-signature {
  right: 3.2rem;
}

.stamp svg text {
  font-size: 11px;
  letter-spacing: 3px;
}

/* ================================================================
   v5 — Tam ekran kapak hero
   ================================================================ */
.hero-cover {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--paper-100);
  background: var(--forest-950);
}

.hero-cover-bg {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}

.hero-cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  animation: kenburns 26s ease-in-out infinite alternate;
}

.hero-cover-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(12deg, rgba(6, 27, 20, 0.96) 18%, rgba(6, 27, 20, 0.55) 46%, rgba(6, 27, 20, 0.18) 72%),
    linear-gradient(180deg, rgba(6, 27, 20, 0.55), transparent 30%);
}

.hero-side-coords {
  position: absolute;
  z-index: 3;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(221, 186, 116, 0.55);
  border-left: 1px dashed rgba(221, 186, 116, 0.3);
  padding-left: 0.7rem;
}

.hero-cover-imza {
  position: absolute;
  z-index: 2;
  right: 4%;
  top: 9%;
  width: min(30vw, 400px);
  opacity: 0.14;
  transform: rotate(-4deg);
}

.hero-cover-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-top: 10rem;
  padding-bottom: clamp(2.6rem, 6vh, 4.5rem);
}

.hero-cover-copy h1 {
  margin-top: 1.3rem;
  max-width: 17ch;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  color: #fdfbf3;
  animation: riseIn 0.9s var(--ease) both 0.12s;
  text-shadow: 0 2px 30px rgba(6, 27, 20, 0.45);
}

.hero-cover-copy h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-cover-copy .hero-lead {
  max-width: 52ch;
  margin-top: 1.3rem;
  color: rgba(247, 241, 229, 0.82);
  animation: riseIn 0.9s var(--ease) both 0.3s;
}

.hero-cover-copy .hero-actions {
  margin-top: 2rem;
  animation: riseIn 0.9s var(--ease) both 0.46s;
}

/* polaroid portre */
.hero-cover-aside {
  position: relative;
  justify-self: end;
  width: min(100%, 330px);
  padding-bottom: 2.2rem;
}

.polaroid {
  position: relative;
  background: #fbf7ee;
  padding: 12px 12px 14px;
  border-radius: 4px;
  box-shadow: 0 26px 50px -24px rgba(3, 14, 9, 0.8);
  transform: rotate(2.2deg);
  transition: transform 0.5s var(--ease);
}

.polaroid:hover {
  transform: rotate(0.4deg) scale(1.015);
}

.polaroid img {
  border-radius: 2px;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  width: 100%;
}

.polaroid figcaption {
  padding: 0.55rem 0.2rem 0;
  color: #4a3d20;
  font-size: 1.25rem;
  text-align: center;
  transform: rotate(-1deg);
}

.polaroid::before,
.polaroid::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 24px;
  background: rgba(221, 186, 116, 0.5);
  border: 1px dashed rgba(120, 94, 40, 0.35);
  top: -11px;
  z-index: 2;
}

.polaroid::before {
  left: -20px;
  transform: rotate(-38deg);
}

.polaroid::after {
  right: -20px;
  transform: rotate(38deg);
}

.hero-cover-aside .paper-note {
  position: absolute;
  left: -34%;
  bottom: 0;
  width: min(76%, 250px);
  z-index: 3;
}

.stamp-hero {
  top: auto;
  bottom: -6px;
  right: -26px;
}

@media (max-width: 1040px) {
  .hero-cover-inner {
    grid-template-columns: 1fr;
  }

  .hero-cover-aside {
    justify-self: start;
    margin-left: 8%;
  }

  .hero-cover-imza {
    width: 44vw;
    opacity: 0.1;
  }
}

@media (max-width: 720px) {
  .hero-side-coords {
    display: none;
  }

  .hero-cover-inner {
    padding-top: 7rem;
  }

  .hero-cover-aside {
    margin-left: 0;
    width: min(100%, 290px);
  }

  .hero-cover-aside .paper-note {
    left: auto;
    right: -4%;
    bottom: -14px;
  }
}

/* v5 ince ayar */
.hero-cover-aside .paper-note {
  left: -42%;
  bottom: -18px;
  width: min(70%, 235px);
}

.stamp-hero {
  bottom: auto;
  top: -46px;
  right: -14px;
}

.polaroid figcaption {
  position: relative;
  z-index: 4;
}

@media (max-width: 720px) {
  .hero-cover-aside .paper-note {
    left: auto;
    right: -2%;
    bottom: -20px;
    width: min(72%, 230px);
  }
}

/* 2026-07 müşteri revizyonu: okunabilir tipografi + zengin içerik kartları */
/* 2026-07-14: TR/EN dil seçici — pill/segment toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(23, 35, 28, 0.05);
}

.lang-toggle a {
  padding: .32rem .68rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-900);
  opacity: .5;
  transition: background .22s var(--ease), color .22s var(--ease), opacity .22s var(--ease);
}

.lang-toggle a:hover {
  opacity: .8;
}

.lang-toggle a.active {
  background: var(--forest-800);
  color: var(--paper-100);
  opacity: 1;
}

.region-directory-card,
.region-spotlight-main {
  overflow: hidden;
  padding: 0;
}

.region-card-image,
.region-spotlight-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.region-card-copy,
.region-spotlight-copy {
  padding: 1.45rem;
}

.region-rail-card {
  grid-template-columns: 92px auto 1fr;
  align-items: center;
}

.region-rail-image {
  width: 92px;
  height: 76px;
  object-fit: cover;
  border: 1px solid var(--line-light);
}

.region-detail-image {
  aspect-ratio: 16 / 8;
}

.region-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-home-grid,
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-home-grid a,
.office-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.social-home-grid a:hover,
.office-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.social-home-grid span {
  color: var(--forest-700);
  font: 700 .72rem/1.2 "IBM Plex Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.social-home-grid strong {
  font-size: 1.25rem;
  line-height: 1.35;
}

.social-home-grid small {
  margin-top: auto;
  font-weight: 700;
}

.office-grid {
  grid-template-columns: repeat(2, 1fr);
}

.office-card h3 { font-size: 1.3rem; }
.office-card p { color: var(--ink-700); }
.office-phone { font-weight: 750; }
.office-card .btn { margin-top: auto; }

.property-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 1.25rem;
  border: 1px solid var(--line-dark);
}

.property-details div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.property-details span {
  color: var(--ink-500);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.aside-card .btn + .btn { margin-top: .65rem; }

@media (max-width: 900px) {
  .lang-toggle { align-self: flex-start; }
  .social-home-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .region-rail-card { grid-template-columns: 72px auto 1fr; }
  .region-rail-image { width: 72px; height: 68px; }
  .region-card-image, .region-spotlight-image { height: 175px; }
  .property-details { grid-template-columns: 1fr; }
}
