:root {
  --cream: #faf5ea;
  --navy: #073d5b;
  --orange: #ff5a00;
  --gold: #f6ad00;
  --black: #050505;
  --white: #ffffff;
  --ink: #101010;
  --muted: rgba(16, 16, 16, .68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Montserrat, Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}
.menu-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;

  gap: 18px;

  min-height: 76px;
  padding: 8px 24px;

  border-bottom: 1px solid rgba(7, 61, 91, .14);

  background: rgba(250, 245, 234, .94);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-brand {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  min-width: 0;

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.header-brand:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.header-brand-image {
  width: 54px;
  height: 54px;

  flex-shrink: 0;

  object-fit: contain;
  object-position: center;
}

.header-brand-name {
  color: var(--orange);

  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;

  line-height: 1.1;
  white-space: nowrap;
}

.header-brand-name span {
  color: var(--orange);
}
.menu-button,
.drawer-close {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 14px;

  color: var(--white);
  background: var(--navy);

  cursor: pointer;

  font-size: 22px;
  font-weight: 900;

  transition:
    background .2s ease,
    transform .2s ease;
}

.menu-button:hover,
.drawer-close:hover {
  background: var(--orange);
  transform: scale(1.04);
}


.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;

  width: min(350px, 86vw);
  padding: 24px;

  color: var(--white);
  background: var(--navy);

  box-shadow: 24px 0 70px rgba(0, 0, 0, .32);

  transform: translateX(-110%);

  transition: transform .28s ease;
}

.menu-toggle:checked ~ .drawer {
  transform: translateX(0);
}

.drawer strong {
  display: block;

  margin: 18px 0 24px;

  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.drawer nav {
  display: grid;
  gap: 12px;
}

.drawer a {
  padding: 13px 16px;

  border: 1px solid var(--gold);
  border-radius: 15px;

  background: var(--black);

  font-size: 14px;
  font-weight: 500;

  transition:
    background .2s ease,
    transform .2s ease;
}

.drawer a:hover,
.drawer a.active {
  background: var(--orange);
  transform: translateX(4px);
}


.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;

  background: rgba(0, 0, 0, .48);

  opacity: 0;
  pointer-events: none;

  transition: opacity .28s ease;
}

.menu-toggle:checked ~ .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

main {
  flex: 1;
}

.hero {
  min-height: 620px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 430px);

  align-items: center;

  gap: 34px;

  padding: 90px 6vw;

  background:
    radial-gradient(
      circle at top right,
      rgba(255, 90, 0, .16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--cream),
      #ffffff 58%,
      rgba(246, 173, 0, .22)
    );
}

.eyebrow {
  margin: 0 0 6px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;

  margin-top: 18px;
  margin-bottom: 22px;

  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(38px, 5.8vw, 72px);
  font-weight: 600;

  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow),
.feature-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 26px;
}

.primary-button,
.secondary-button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  border-radius: 15px;

  font-weight: 900;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--orange);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 90, 0, .25);
}

.secondary-button {
  border: 1px solid var(--navy);

  color: var(--navy);
  background: var(--white);
}

.secondary-button:hover {
  color: var(--white);
  background: var(--navy);

  transform: translateY(-2px);
}


.feature-card {
  padding: 30px;

  border-radius: 26px;

  color: var(--white);
  background: var(--navy);

  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

.feature-card span {
  color: var(--gold);

  font-weight: 900;
  text-transform: uppercase;
}

.feature-card strong {
  display: block;

  margin: 12px 0;

  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;

  line-height: 1.12;
}

.feature-card .feature-description {
  color: var(--white);

  font-weight: 400;

  opacity: .9;
}

@media (max-width: 900px) {

  .site-header {
    min-height: 72px;
    padding: 8px 18px;
  }

  .header-brand-image {
    width: 50px;
    height: 50px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 6vw;
  }

  .studio-footer {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}


@media (max-width: 600px) {

  .site-header {
    min-height: 66px;

    gap: 11px;

    padding: 7px 12px;
  }

  .menu-button,
  .drawer-close {
    width: 44px;
    height: 44px;

    border-radius: 12px;

    font-size: 20px;
  }

  .header-brand {
    gap: 7px;
  }

  .header-brand-image {
    width: 43px;
    height: 43px;
  }

  .header-brand-name {
    font-size: clamp(13px, 4vw, 18px);
    white-space: normal;
  }

  .hero {
    min-height: auto;

    gap: 28px;

    padding: 58px 22px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .studio-footer {
    padding: 20px;

    font-size: 11px;

    letter-spacing: 2px;
  }
}


@media (max-width: 390px) {

  .site-header {
    padding: 7px 10px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .header-brand-image {
    width: 39px;
    height: 39px;
  }

  .header-brand-name {
    font-size: 12px;
  }
}
