:root {
  --bg: #07131f;
  --bg-soft: #0c1e31;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f6f1e8;
  --muted: #c7b59c;
  --line: rgba(246, 241, 232, 0.12);
  --accent: #d6b07a;
  --accent-deep: #8b673c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 176, 122, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(65, 103, 146, 0.2), transparent 30%),
    linear-gradient(180deg, #09121d 0%, #07131f 38%, #061019 100%);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 6px 18px;
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 28, 0.78);
}

.brand {
  display: flex;
  align-items: center;
  height: 60px;
  overflow: hidden;
}

.brand-logo {
  width: auto;
  height: 206px;
  object-fit: contain;
}

.eyebrow,
.hero-facts,
.contact-card p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 0 auto 5px;
  background: currentColor;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

main,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 34px;
  padding: 64px 0 48px;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #e4ddd3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d6b07a, #f2d5a8);
  color: #0d1520;
  font-weight: 700;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(4, 11, 20, 0.12), rgba(4, 11, 20, 0.75)),
    url("https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 340px;
  bottom: 24px;
  width: 210px;
  height: 134px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(4, 11, 20, 0.08), rgba(4, 11, 20, 0.34)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80")
      center/cover;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 18, 31, 0.72);
  backdrop-filter: blur(12px);
}

.hero-card span,
.about-panel span,
.reason-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero-card strong,
.about-panel strong {
  font-size: 1.1rem;
  line-height: 1.4;
}

.hero-card-main {
  left: 24px;
  bottom: 24px;
  width: min(300px, calc(100% - 48px));
}

.hero-card-side {
  top: 24px;
  right: 24px;
  width: min(240px, calc(100% - 48px));
}

.section {
  padding: 78px 0;
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 24px -18px;
  z-index: -1;
  border: 1px solid rgba(214, 176, 122, 0.08);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

#about {
  padding-top: 32px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  align-items: stretch;
}

.about-content {
  padding: 56px 56px 52px;
  background: linear-gradient(180deg, #081525 0%, #07111d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-heading {
  max-width: 100%;
  margin-bottom: 34px;
}

.about-heading .eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
}

.about-heading h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.about-copy {
  max-width: 32rem;
}

.about-copy p {
  margin: 0 0 28px;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(228, 221, 211, 0.9);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual {
  min-height: 860px;
  overflow: hidden;
}

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

.contact-card,
.reason-card,
.experience-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 20, 33, 0.82);
  box-shadow: var(--shadow);
}

.experience-grid,
.reasons-grid {
  display: grid;
  gap: 20px;
}

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

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

.experience-card,
.reason-card {
  padding: 26px;
}

.experience-card {
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.experience-card h3,
.reason-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.experience-card p,
.reason-card p,
.faq-list p,
.contact-card a {
  color: #e4ddd3;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-card {
  padding: 30px;
  text-align: center;
}

.contact-card a {
  color: var(--accent);
}

.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-card-compact {
  width: min(100%, 620px);
}

.contact-email {
  display: inline-block;
  margin: 8px 0 18px;
  font-size: 1.3rem;
  font-weight: 600;
}

.site-footer {
  padding: 18px 0 48px;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 1040px) {
  .hero,
  .about-layout,
  .experience-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

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

  .hero-visual::before {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 160px;
    height: 110px;
  }

  .about-content {
    padding: 42px 28px 34px;
  }

  .about-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .about-copy p {
    max-width: 42ch;
  }

  .about-visual {
    min-height: 520px;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .section {
    padding: 68px 0;
  }

  .brand-logo {
    height: 172px;
  }

  .hero-card-side {
    top: auto;
    right: 24px;
    bottom: 150px;
  }
}
