:root {
  --brand-primary: #0c233e;
  --brand-primary-rgb: 12, 35, 62;
  --brand-secondary: #cb982b;
  --brand-secondary-rgb: 203, 152, 43;
  --bg: #071627;
  --panel: rgba(12, 35, 62, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3eee6;
  --muted: rgba(243, 238, 230, 0.76);
  --accent: var(--brand-secondary);
  --accent-strong: #e3b75c;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 22, 39, 0.24) 0%, rgba(7, 22, 39, 0.76) 54%, rgba(7, 22, 39, 0.95) 100%),
    radial-gradient(circle at top left, rgba(var(--brand-secondary-rgb), 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(var(--brand-primary-rgb), 0.28), transparent 32%),
    url("../img/bg.jpg") center center / cover fixed no-repeat,
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03), transparent 40%);
}

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

.shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 32px 0 56px;
}

.hero-card {
  width: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 35, 62, 0.14), rgba(7, 22, 39, 0.24));
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-secondary-rgb), 0.35);
  background: rgba(var(--brand-secondary-rgb), 0.1);
  overflow: hidden;
}

.brand-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.hero-main {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-secondary-rgb), 0.35);
  background: rgba(var(--brand-secondary-rgb), 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 12vw, 7.3rem);
  letter-spacing: -0.05em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.lead {
  max-width: 58ch;
  margin-top: 22px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--muted);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button {
  background: var(--accent);
  color: #101010;
  box-shadow: 0 14px 26px rgba(var(--brand-secondary-rgb), 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

main {
  padding-bottom: 36px;
}

.section-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 35, 62, 0.74), rgba(8, 21, 37, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section-card + .section-card {
  margin-top: 24px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-note {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.text-block {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.text-block h3 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.text-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.text-block p + p {
  margin-top: 14px;
}

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

.contact-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-item h3 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-secondary-rgb), 0.32);
  background: rgba(var(--brand-secondary-rgb), 0.08);
  color: var(--accent-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-social:hover {
  transform: translateY(-2px);
  background: rgba(var(--brand-secondary-rgb), 0.16);
  border-color: rgba(var(--brand-secondary-rgb), 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

footer {
  padding: 24px 0 56px;
  color: rgba(243, 238, 230, 0.62);
  text-align: center;
  font-size: 0.92rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

@media (max-width: 960px) {
  body {
    background-attachment: scroll;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding: 16px 0 28px;
  }

  .hero-card,
  .section-card {
    padding: 22px;
  }

  .text-block,
  .contact-item {
    padding: 20px;
  }

  .actions {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
