/* =========================================================
   EBS Danışmanlık — Modern Theme (2026)
   Dark luxury, gold accent (#c5a47e)
   ========================================================= */

:root {
  --bg: #0b0b0d;
  --bg-soft: #121215;
  --bg-elev: #17181c;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #ececec;
  --text-dim: #9a9a9f;
  --text-mute: #6a6a70;
  --gold: #c5a47e;
  --gold-soft: #d8bb93;
  --gold-deep: #8d6f4e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
  --max: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Arial, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

a:hover {
  color: var(--gold);
}

/* Type scale */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: #fff;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

h4 {
  font-size: 1.4rem;
}

p {
  color: var(--text-dim);
  margin: 0 0 1.1em;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
}

/* Utilities */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
}

.section-tight {
  padding: clamp(50px, 7vw, 90px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

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

.gold {
  color: var(--gold);
}

.muted {
  color: var(--text-mute);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--gold);
  color: #0b0b0d;
  transform: translateY(-2px);
}

.btn .arrow {
  transition: transform .35s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-solid {
  background: var(--gold);
  color: #0b0b0d;
}

.btn-solid:hover {
  background: var(--gold-soft);
  color: #0b0b0d;
}

.btn-ghost {
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s var(--ease);
  background: linear-gradient(180deg, rgba(11, 11, 13, .85) 0%, rgba(11, 11, 13, 0) 100%);
  backdrop-filter: blur(0px);
}

.site-header.scrolled {
  background: rgba(11, 11, 13, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone i {
  color: var(--gold);
}

/* Burger */
.burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: all .35s var(--ease);
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 0;
}

.burger.open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(0);
}

@media (max-width: 980px) {
  .burger {
    display: block;
    z-index: 110;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    padding: 80px var(--pad-x);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    text-transform: none;
    letter-spacing: .02em;
  }

  .nav-phone {
    display: none;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 160px;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  filter: brightness(.42) saturate(.85);
  transform: scale(1.05);
  animation: kenburns 20s var(--ease) infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  100% {
    transform: scale(1.18) translate(-2%, -1%);
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, .55) 0%, rgba(11, 11, 13, .35) 45%, rgba(11, 11, 13, .95) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, .55) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin-bottom: 26px;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  color: var(--text);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  bottom: 70px;
  right: var(--pad-x);
  z-index: 2;
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--text-mute);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-dim);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(.4);
    opacity: .4;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 140px 0 120px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-meta {
    display: none;
  }
}

/* Services: image-free block layout */
.service-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 9vw, 8rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
  opacity: .9;
}

.service-block-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 22px;
}

.service-block-body p {
  font-size: 1.02rem;
}

@media (max-width: 820px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 50px 0;
  }

  .service-block-num {
    font-size: 4rem;
  }
}

/* Home: about teaser (full-width, no image) */
.about-teaser {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-teaser .eyebrow {
  justify-content: center;
}

.about-teaser .eyebrow::before {
  display: none;
}

.about-teaser h2 {
  margin-bottom: 28px;
}

.about-teaser p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.about-teaser-left {
  text-align: left;
}
.about-teaser-left .eyebrow { justify-content: flex-start; }
.about-teaser-left .eyebrow::before { display: inline-block; }
.about-teaser-left p { margin-left: 0; margin-right: 0; max-width: 760px; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(197, 164, 126, .08), transparent 50%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 16px;
}

.crumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.crumbs a:hover {
  color: var(--gold);
}

.crumbs .sep {
  color: var(--gold);
}

/* =========================================================
   Services
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.section-head .lead {
  max-width: 540px;
}

@media (max-width: 820px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.service-card {
  position: relative;
  padding: 44px 36px 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.service-card:hover {
  background: var(--bg-elev);
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  opacity: .85;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card p {
  font-size: .96rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card .more::after {
  content: "→";
  transition: transform .3s var(--ease);
}

.service-card:hover .more::after {
  transform: translateX(6px);
}

/* Service detail rows (services page) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.alt {
  grid-template-columns: 1.4fr 1fr;
}

.service-row.alt .service-row-media {
  order: 2;
}

.service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  opacity: .9;
}

.service-row-media {
  aspect-ratio: 4/5;
  background: var(--bg-elev);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

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

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

.service-row-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 22px;
}

.service-row-body p {
  font-size: 1.02rem;
}

.service-row-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}

.service-row-list li {
  font-size: .92rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.service-row-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 880px) {

  .service-row,
  .service-row.alt {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-row.alt .service-row-media {
    order: 0;
  }

  .service-row-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.about-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 13, .5) 100%);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(11, 11, 13, .75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  padding: 20px 26px;
  border-radius: var(--radius-sm);
}

.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-badge .lbl {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-body p+p {
  margin-top: 1em;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.stat .lbl {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =========================================================
   Projects
   ========================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  cursor: pointer;
}

.project-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

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

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

.project-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .85) 100%);
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 30px 26px;
  z-index: 2;
}

.project-cat {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.project-info h3 {
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
}

.project-year {
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Project sizing — editorial grid */
.project.size-lg {
  grid-column: span 7;
}

.project.size-md {
  grid-column: span 5;
}

.project.size-sm {
  grid-column: span 4;
}

.project.size-sq {
  grid-column: span 6;
}

@media (max-width: 980px) {

  .project.size-lg,
  .project.size-md,
  .project.size-sm,
  .project.size-sq {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {

  .project.size-lg,
  .project.size-md,
  .project.size-sm,
  .project.size-sq {
    grid-column: span 12;
  }
}

/* Plain uniform projects grid (projects page) */
.projects-uniform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .projects-uniform {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-uniform {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Clients
   ========================================================= */
.clients-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  filter: grayscale(1) brightness(1.5);
  opacity: .55;
  transition: all .35s var(--ease);
}

.client-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.client-logo img {
  max-height: 50px;
  width: auto;
}

/* =========================================================
   CTA Strip
   ========================================================= */
.cta-strip {
  padding: 100px 0;
  background: linear-gradient(135deg, #15120c 0%, #0b0b0d 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(197, 164, 126, .12), transparent 60%);
}

.cta-strip .container {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.cta-strip p {
  max-width: 540px;
  margin: 0 auto 36px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

.contact-info {
  padding-right: 20px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.contact-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list .ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list .lbl {
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.contact-list .val {
  color: var(--text);
  font-size: 1.02rem;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 28px 22px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 0;
  transition: border-color .3s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(.5) brightness(.85);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #08080a;
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

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

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-dim);
  font-size: .94rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: .95rem;
  max-width: 280px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: .82rem;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-dim);
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: .1s;
}

.reveal.delay-2 {
  transition-delay: .2s;
}

.reveal.delay-3 {
  transition-delay: .3s;
}

/* Selection */
::selection {
  background: var(--gold);
  color: #0b0b0d;
}

/* Scrollbar (webkit) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elev);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}