:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --surface: rgba(255, 255, 255, 0.04);
  --text: #f4f1ec;
  --text-muted: #a8a29a;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.15);
  --white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 1rem;
  --container: 1180px;
  --header-max: 1520px;
  --header-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow { width: min(100%, 720px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 11, 0.9);
}

.header-shell {
  width: min(100% - 1.25rem, var(--header-max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo + menü + dil tek grup: menü kısalınca/uzayınca logo ve dil birlikte gelir */
.header-cluster {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: .75rem 1.15rem;
  width: fit-content;
  max-width: 100%;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex: 0 0 auto;
  max-width: min(100%, calc(var(--logo-w) + 2rem));
  min-width: 0;
}

.site-header .brand-logo,
.site-header .brand-logo--header {
  display: block;
  width: var(--logo-w);
  height: var(--logo-h);
  max-width: var(--logo-w);
  max-height: calc(var(--header-h) - 1.25rem);
  object-fit: contain;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .08em;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.footer-brand .brand {
  margin-bottom: .75rem;
  max-width: none;
}

.footer-brand .brand-logo {
  max-width: 160px !important;
  max-height: 72px !important;
  width: auto !important;
  height: auto !important;
}

.footer-brand .brand-text {
  font-size: 1.05rem;
}

.site-nav {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .35rem .7rem;
  min-width: 0;
  max-width: min(100%, 980px);
  row-gap: .2rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  white-space: nowrap;
  line-height: 1.2;
  padding: .2rem 0;
  transition: color .25s ease;
}

.site-nav a:hover { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex: 0 0 auto;
  margin-left: 0;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
}

.lang-switch {
  position: relative;
}

.lang-switch > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.lang-switch > summary::-webkit-details-marker {
  display: none;
}

.lang-switch > summary::after {
  content: '';
  display: inline-block;
  width: .35rem;
  height: .35rem;
  margin-left: .35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: .7;
  vertical-align: middle;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + .4rem);
  min-width: 10.5rem;
  margin: 0;
  padding: .4rem;
  list-style: none;
  background: #121214;
  border: 1px solid var(--border);
  border-radius: .75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
  z-index: 120;
  display: grid;
  gap: .15rem;
}

.lang-menu a {
  display: block;
  padding: .45rem .7rem;
  border-radius: .5rem;
  color: var(--text-muted);
  font-size: .85rem;
  white-space: nowrap;
}

.lang-menu a:hover,
.lang-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.mobile-nav .offcanvas-body {
  display: grid;
  gap: 1.25rem;
  padding-top: 2rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

@media (min-width: 1400px) {
  .site-nav {
    gap: .4rem 1rem;
  }
  .site-nav a {
    font-size: .84rem;
  }
}

@media (max-width: 1199.98px) {
  /* Mobil: logo sol, hamburger/dil sağ — tam genişlik */
  .header-shell {
    justify-content: stretch;
  }

  .header-cluster {
    display: flex;
    width: 100%;
    max-width: none;
    justify-content: space-between;
  }

  .site-header .brand {
    max-width: min(42vw, var(--logo-w));
  }

  .site-header .brand-logo,
  .site-header .brand-logo--header {
    width: min(42vw, var(--logo-w));
    max-width: min(42vw, var(--logo-w));
    max-height: calc(var(--header-h) - 1rem);
    height: auto;
  }
}

/* Hero — menü altında, görsel kenardan kenara cover */
.hero {
  position: relative;
  margin-top: var(--header-h);
  width: 100%;
  min-height: calc(100svh - var(--header-h));
  height: calc(100svh - var(--header-h));
  display: block;
  padding: 0;
  overflow: hidden;
  background: #0a0a0b;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: #0a0a0b;
  background-size: cover !important;
  background-repeat: no-repeat;
  transform: none;
  animation: none;
}

.hero-media-layer--mobile {
  display: none;
}

.hero-media-img {
  display: none !important;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77%;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-media--fallback {
  background:
    linear-gradient(120deg, rgba(10,10,11,.35), rgba(10,10,11,.55)),
    radial-gradient(ellipse at 30% 20%, #2a241c 0%, transparent 50%),
    linear-gradient(160deg, #1a1714 0%, #0a0a0b 55%, #14110e 100%);
}

.hero-slider,
.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  min-height: calc(100svh - var(--header-h));
  max-height: none;
  margin: 0 !important;
}

.hero-slider .swiper-slide {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.5rem 0 4rem;
}

.hero-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: .4;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}

.section-head a {
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.entity-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  transition: transform .3s ease, border-color .3s ease;
}

.entity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,165,116,.45);
}

.entity-card-media {
  position: relative;
  aspect-ratio: 4/5;
  background: #1a1714;
  overflow: hidden;
}

.entity-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.entity-card:hover .entity-card-media img {
  transform: scale(1.05);
}

.entity-card-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(145deg, #241f1a, #12100e 60%, #1c1814);
}

.entity-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.entity-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 .35rem;
}

.entity-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: .9rem;
}

.status-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(10,10,11,.75);
  border: 1px solid var(--border);
}

.status-available { border-color: rgba(61,214,140,.5); color: #3dd68c; }
.status-reserved { border-color: rgba(196,165,116,.5); color: var(--accent); }
.status-sold { border-color: rgba(227,93,106,.5); color: #e35d6a; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-cover img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-top: .75rem;
}

.detail-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .6rem;
  border: 1px solid var(--border);
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: .75rem;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .65rem;
}

.meta-list span { color: var(--text-muted); }

.rich-text { color: var(--text-muted); line-height: 1.75; }

.rich-text h2,
.rich-text h3,
.rich-text h4 {
  color: var(--text);
  font-family: var(--font-display);
  margin: 1.75rem 0 .75rem;
}

.rich-text p { margin: 0 0 1rem; }

.rich-text a { color: var(--accent); text-decoration: underline; }

.rich-text ul,
.rich-text ol {
  margin: 0 0 1rem 1.25rem;
}

.rich-text .cms-img,
.rich-text img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 1.25rem 0;
  border-radius: .25rem;
}

.rich-text .cms-img--full {
  width: 100%;
  max-width: 100%;
}

.rich-text .cms-img--half {
  width: min(100%, 28rem);
  margin-left: auto;
  margin-right: auto;
}

.custom-home-section .rich-text img,
.custom-home-section .rich-text .cms-img {
  width: 100%;
  max-width: 100%;
}

.rich-text .video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 1.5rem 0;
  background: #000;
  border-radius: .35rem;
  overflow: hidden;
}

.rich-text .video-embed iframe,
.rich-text .video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: .85rem;
  border: 1px solid var(--border);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.entity-card-media--wide { aspect-ratio: 16/10; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.blog-grid { grid-template-columns: repeat(2, 1fr); }

.blog-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: rgba(255,255,255,.02);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.blog-aside h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.blog-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .75rem;
}

.blog-aside a { color: var(--text-muted); }
.blog-aside a:hover { color: var(--accent); }

.blog-search .form-control {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: .75rem;
  padding: .85rem 1rem;
}

.article-cover {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-body { font-size: 1.05rem; }

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  color: var(--text-muted);
}

.share-row a { color: var(--accent); }

.faq-item {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  margin-bottom: .65rem;
  border-radius: .75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  font-family: var(--font-display);
}

.faq-item .accordion-button:not(.collapsed) {
  background: rgba(196,165,116,.08);
  color: var(--accent);
}

.faq-item .accordion-body {
  color: var(--text-muted);
  background: transparent;
}

.faq-group h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-grid--2 { grid-template-columns: repeat(2, 1fr); }
.video-grid--3 { grid-template-columns: repeat(3, 1fr); }
.video-grid--4 { grid-template-columns: repeat(4, 1fr); }

.video-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.video-thumb:hover img {
  transform: scale(1.04);
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(10,10,11,.45);
}

.video-play::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: .45rem 0 .45rem .75rem;
  border-color: transparent transparent transparent #fff;
}

.video-card-body {
  padding: 1rem 1.1rem 1.25rem;
}

.video-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 .35rem;
}

.video-card-body h3 a {
  color: var(--text);
}

.video-card-body p,
.video-meta {
  color: var(--text-muted);
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 992px) {
  .video-grid,
  .video-grid--3,
  .video-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-grid,
  .video-grid--2,
  .video-grid--3,
  .video-grid--4 {
    grid-template-columns: 1fr;
  }
}

.resource-cat-card {
  min-height: 140px;
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.75rem;
}

.resource-filter {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .9rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .84rem;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.resource-filter strong {
  min-width: 1.4rem;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(196, 165, 116, .35);
  padding: .1rem .35rem;
}

.resource-filter:hover {
  color: var(--white);
  border-color: rgba(196, 165, 116, .45);
}

.resource-filter.is-active {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.resource-result-meta {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0 0 1.25rem;
}

.resource-item-cat {
  display: inline-block;
  margin-bottom: .45rem;
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(255,255,255,.02);
  margin: 0;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-card footer {
  display: grid;
  gap: .2rem;
}

.testimonial-card span {
  color: var(--text-muted);
  font-size: .85rem;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  opacity: .7;
  transition: opacity .25s ease;
  filter: grayscale(1);
}

.partner-logo:hover {
  opacity: 1;
  filter: none;
}

.partner-logo img {
  max-height: 48px;
  width: auto;
}

.newsletter-form .form-control {
  background: #121214;
  border: 1px solid var(--border);
  color: var(--text);
}

/* Spam honeypot — bots fill it; humans must not see it */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .blog-layout,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-aside { position: static; }
}


.alert-success {
  background: rgba(61,214,140,.12);
  color: #3dd68c;
  border: none;
}

.alert-danger {
  background: rgba(227,93,106,.12);
  color: #e35d6a;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,10,11,.78) 0%, rgba(10,10,11,.25) 42%, rgba(10,10,11,.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: none;
  padding: 2.5rem 0 4rem;
}

.hero-brand {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -.02em;
}

.hero-lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: .03em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover { background: #d4b78a; color: #111; }

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-teaser h2,
.page-hero h1,
.cta-panel h2,
.contact-grid h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
}

.about-teaser h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.about-teaser p,
.about-teaser .about-subtitle,
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.about-layout--media {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-layout--media {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-media img,
.about-media .video-embed {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.about-media img {
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-media .video-embed,
.pillars-section .video-embed,
.why-section .video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.about-media .video-embed iframe,
.pillars-section .video-embed iframe,
.why-section .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-teaser .rich-text,
.cta-panel .rich-text,
.pillars-section .rich-text,
.why-section .rich-text {
  color: var(--text-muted);
}

.about-teaser .rich-text p,
.cta-panel .rich-text p {
  margin-bottom: 0.85rem;
}

.section-head--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.pillars-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 165, 116, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 .85rem;
  color: var(--text);
}

.pillar p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: .98rem;
  line-height: 1.7;
}

.pillar a {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}

.pillar a:hover {
  border-bottom-color: var(--accent);
}

.why-section {
  border-top: 1px solid var(--border);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.why-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.why-list li {
  position: relative;
  padding: .85rem 0 .85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: .98rem;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: .55rem;
  height: .55rem;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .pillars-grid,
  .why-layout {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 2rem;
}

.stats-section {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat span {
  color: var(--text-muted);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + .25rem);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  backdrop-filter: blur(12px);
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
}

.cta-panel p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-form .form-control {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: .75rem;
  padding: .85rem 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem var(--accent-soft);
  background: var(--bg-elevated);
  color: var(--text);
}

.form-label { color: var(--text-muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  background: #080809;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p,
.site-footer a,
.site-footer p {
  color: var(--text-muted);
}

.site-footer h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: .5rem;
  transition: color .2s ease;
}

.site-footer a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  color: var(--text-muted);
  font-size: .85rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 900px) {
  .stats-grid,
  .footer-grid,
  .contact-grid,
  .card-grid,
  .detail-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .stats-grid,
  .footer-grid,
  .contact-grid,
  .card-grid,
  .detail-grid,
  .gallery-grid,
  .detail-thumbs {
    grid-template-columns: 1fr;
  }

  .hero-media-layer--mobile {
    display: block;
  }

  .hero,
  .hero.hero-slider {
    min-height: calc(100svh - var(--header-h));
    height: calc(100svh - var(--header-h));
  }

  .hero-content {
    padding: 1.5rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    margin-bottom: .85rem;
  }

  .hero-lead {
    font-size: .95rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-brand {
    letter-spacing: .18em;
    font-size: .7rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .about-layout--media,
  .why-layout {
    grid-template-columns: 1fr !important;
  }

  .rich-text .cms-img,
  .rich-text img,
  .rich-text .cms-img--full {
    width: 100%;
    max-width: 100%;
  }

  .rich-text .cms-img--half {
    width: 100%;
  }

  .cta-panel {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .cta-panel .btn {
    width: 100%;
  }
}
