/* elkedagit — modern marketing layout */

:root {
  --bg: #faf9f7;
  --bg-dark: #0c0c0e;
  --surface: #ffffff;
  --text: #0c0c0e;
  --text-muted: #5c5c66;
  --line: rgba(12, 12, 14, 0.08);
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Syne", var(--font-sans);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1280px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 249, 247, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.logo span {
  font-weight: 600;
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(12, 12, 14, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(12, 12, 14, 0.2);
}

.btn-light {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-light:hover {
  border-color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

/* Hero carousel */
.hero-wrap {
  position: relative;
  min-height: min(92vh, 900px);
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 12, 14, 0.88) 0%,
    rgba(12, 12, 14, 0.45) 45%,
    rgba(12, 12, 14, 0.25) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 12vh, 7rem) 1.5rem clamp(4rem, 10vh, 6rem);
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 14ch;
  margin: 0 0 1.25rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
  margin: 0 0 2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-actions .btn-primary {
  background: #fff;
  color: var(--text);
}

.hero-actions .btn-primary:hover {
  background: #f0f0f2;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot[aria-selected="true"] {
  background: #fff;
  transform: scale(1.2);
}

.hero-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Marquee */
.marquee-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.marquee {
  display: flex;
  flex-direction: row;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

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

.marquee-inner {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
  align-items: center;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--text-muted);
  opacity: 0.85;
}

.marquee-item span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.6;
}

/* Section shell */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 2.5rem;
  max-width: 18ch;
}

/* Bento */
.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .bento {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .bento .bento-card:first-child {
    grid-row: span 2;
  }
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: #e8e6e3;
}

@media (min-width: 900px) {
  .bento .bento-card:first-child {
    min-height: 520px;
  }
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover img {
  transform: scale(1.04);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.bento-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.75rem 1.5rem;
  color: #fff;
}

.bento-inner h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.bento-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32ch;
}

/* Split */
.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
  background: #ddd;
}

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

.split-copy .lead {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 2rem;
  color: var(--text);
}

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* CTA band */
.cta-band {
  position: relative;
  margin: 2rem 1.5rem 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--bg-dark);
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.cta-band .cta-inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
  background: var(--surface);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-inner a:hover {
  color: var(--text);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Contact page */
.contact-page {
  padding-top: var(--header-h);
}

.contact-hero {
  display: grid;
  gap: 0;
  min-height: min(70vh, 700px);
}

@media (min-width: 900px) {
  .contact-hero {
    grid-template-columns: 42% 58%;
    min-height: calc(100vh - var(--header-h));
    max-height: 900px;
  }
}

.contact-hero-visual {
  position: relative;
  min-height: 280px;
  background: #1a1a1e;
}

@media (min-width: 900px) {
  .contact-hero-visual {
    min-height: auto;
  }
}

.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.5), transparent 40%);
}

.contact-hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.contact-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.contact-hero-copy .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 0 2rem;
  max-width: 38ch;
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding-top: 2rem;
  }
}

.contact-aside {
  padding: 1rem 0;
}

.contact-aside h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.contact-aside ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-aside li {
  margin-bottom: 0.5rem;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(12, 12, 14, 0.06);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Thanks */
.thanks-main {
  padding-top: var(--header-h);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.thanks-inner {
  max-width: 480px;
}

.thanks-inner .section-label {
  margin-bottom: 0.5rem;
}

.thanks-inner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.thanks-inner p {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-list .btn {
    width: 100%;
    justify-content: center;
  }
}
