:root {
  --color-background: #05060b;
  --color-background-alt: #0b0e16;
  --color-surface: rgba(22, 24, 36, 0.86);
  --color-panel: rgba(26, 29, 42, 0.9);
  --color-primary: #ffc46f;
  --color-primary-dark: #e88f3f;
  --color-accent: #6e7cff;
  --color-text: #f6f5f0;
  --color-muted: rgba(246, 245, 240, 0.62);
  --color-line: rgba(255, 255, 255, 0.12);
  --max-width: min(1180px, 92vw);
  --header-height: 84px;
  --transition: 0.3s ease;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(5, 6, 9, 0.55);
  --shadow-card: 0 18px 40px rgba(5, 6, 9, 0.45);
  --font-sans: 'Manrope', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Bodoni Moda', 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(36% 58% at 96% 26%, rgba(255, 214, 146, 0.95) 0%, rgba(255, 214, 146, 0.52) 14%, rgba(255, 214, 146, 0.12) 36%, transparent 54%),
    radial-gradient(48% 64% at 98% 74%, rgba(242, 168, 92, 0.78) 0%, rgba(242, 168, 92, 0.34) 24%, rgba(242, 168, 92, 0.1) 46%, transparent 64%),
    radial-gradient(42% 58% at 84% -4%, rgba(255, 226, 186, 0.38) 0%, rgba(255, 226, 186, 0.14) 22%, transparent 44%),
    radial-gradient(80% 78% at 14% 12%, rgba(30, 54, 146, 0.32) 0%, rgba(10, 18, 48, 0.24) 30%, transparent 62%),
    linear-gradient(122deg, #02030a 0%, #020514 42%, #02071c 70%, #030822 88%, #040924 100%);
  color: var(--color-text);
  line-height: 1.68;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga' 1, 'kern' 1;
}

p,
li,
figcaption {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.018em;
  line-height: 1.1;
  text-transform: none;
}

h1 {
  font-weight: 600;
  letter-spacing: 0.012em;
}

h3,
h4,
h5,
h6 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
}

small {
  font-family: var(--font-sans);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

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

a:hover,
a:focus {
  color: var(--color-primary);
}

strong {
  color: var(--color-text);
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(126deg, rgba(4, 6, 18, 0.98) 0%, rgba(5, 7, 20, 0.95) 60%, rgba(7, 9, 26, 0.92) 82%, rgba(26, 14, 8, 0.46) 100%);
}

.site::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(136deg, transparent 0%, transparent 56%, rgba(255, 206, 146, 0.35) 76%, rgba(255, 196, 111, 0.58) 100%),
    radial-gradient(40% 62% at 97% 26%, rgba(255, 205, 141, 0.52) 0%, rgba(255, 205, 141, 0.18) 38%, transparent 70%);
  opacity: 0.82;
}

.site::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 96% 30%, rgba(255, 210, 146, 0.78) 0%, rgba(255, 210, 146, 0.32) 22%, transparent 52%),
    radial-gradient(24px 24px at 98% 16%, rgba(255, 236, 200, 0.85) 0%, rgba(255, 236, 200, 0.28) 68%, transparent 100%),
    radial-gradient(18px 18px at 93% 58%, rgba(255, 196, 111, 0.65) 0%, rgba(255, 196, 111, 0.22) 56%, transparent 100%),
    radial-gradient(circle at 90% 74%, rgba(232, 160, 88, 0.5) 0%, rgba(232, 160, 88, 0.18) 28%, transparent 54%),
    radial-gradient(circle at 18% 32%, rgba(32, 56, 160, 0.36) 0%, rgba(12, 18, 44, 0.22) 40%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.7;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(5, 7, 15, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  margin: 0 auto;
  padding: 0.85rem 1.8rem;
  width: var(--max-width);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
}

.brand img {
  height: 48px;
  width: auto;
  filter: saturate(0.92) brightness(1.04);
}

.site-header__inner > .brand {
  justify-self: start;
}

.site-header__inner > .primary-button--ghost,
.site-header__inner > .menu-toggle {
  justify-self: end;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  justify-self: center;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
  white-space: nowrap;
}

.site-header__inner > .primary-button--ghost {
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.site-header__inner > .primary-button--ghost:hover,
.site-header__inner > .primary-button--ghost:focus-visible {
  border-color: rgba(255, 196, 111, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255, 196, 111, 0.95), rgba(110, 124, 255, 0.85));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition),
    background var(--transition);
}

.primary-button {
  background: linear-gradient(135deg, rgba(255, 196, 111, 0.98), rgba(232, 160, 88, 0.94));
  color: #0f1117;
  box-shadow: 0 24px 50px rgba(255, 196, 111, 0.45);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 32px 60px rgba(232, 160, 88, 0.55);
}

.primary-button--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.primary-button--ghost:hover,
.primary-button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.secondary-button {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 13, 18, 0.85);
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-header__drawer {
  display: none;
}

.site-header__drawer.is-open {
  display: block;
  position: fixed;
  inset: var(--header-height) 1rem auto;
  background: rgba(10, 12, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

main {
  flex: 1;
}

section {
  padding: 6rem 0;
}

.section-heading {
  width: var(--max-width);
  margin: 0 auto 3.5rem;
  display: grid;
  gap: 1rem;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  letter-spacing: 0.01em;
  line-height: 1.12;
  font-weight: 500;
}

.section-heading p {
  max-width: 44ch;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-wrap: balance;
}

.hero {
  position: relative;
  padding-top: calc(var(--header-height) - 0.4rem);
  padding-bottom: 4.8rem;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 95% 24%, rgba(255, 210, 146, 0.78) 0%, rgba(255, 210, 146, 0.28) 22%, transparent 48%),
    radial-gradient(circle at 88% 72%, rgba(232, 160, 88, 0.48) 0%, rgba(232, 160, 88, 0.16) 28%, transparent 48%),
    linear-gradient(118deg, rgba(5, 7, 20, 0.94) 0%, rgba(4, 6, 18, 0.9) 60%, rgba(6, 9, 26, 0.86) 84%, rgba(30, 18, 10, 0.52) 100%),
    url('https://befamx.com/wp-content/uploads/2025/02/IMG_0362-scaled-e1739020377153.jpg') center / cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.74) blur(12px);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: center;
}

.hero__content {
  grid-column: 1 / span 8;
  align-self: center;
  display: grid;
  gap: 1.15rem;
  background: linear-gradient(108deg, rgba(16, 18, 28, 0.95) 0%, rgba(13, 14, 22, 0.88) 58%, rgba(54, 32, 16, 0.68) 100%);
  padding: 2.1rem 2.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 196, 111, 0.36);
  box-shadow: 0 26px 60px rgba(6, 8, 15, 0.68);
}

.headline-rotator {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 196, 111, 0.96);
  transition: opacity 0.25s ease;
  font-weight: 500;
  display: inline-grid;
  grid-auto-rows: minmax(auto, 1fr);
  justify-items: start;
  align-content: center;
  row-gap: 0.35rem;
  min-height: calc(1.35em * 2 + 0.35rem);
  width: 100%;
  max-width: 32ch;
}

.headline-rotator__line {
  display: block;
  white-space: nowrap;
  line-height: 1.35;
  min-height: 1.35em;
  width: 100%;
}

.headline-rotator.is-changing {
  opacity: 0.2;
}

.hero__content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  font-weight: 600;
}

.hero__content p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__media {
  grid-column: 9 / span 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: min(100%, 340px);
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transform: scale(1.6);
  transform-origin: 58% 32%;
}

.hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(5, 7, 12, 0.55));
}

.hero__card figcaption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-weight: 600;
}

.feature {
  position: relative;
}

.feature__grid {
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.feature__card {
  padding: 2.2rem;
  background:
    linear-gradient(118deg, rgba(24, 27, 40, 0.96) 0%, rgba(22, 24, 36, 0.9) 56%, rgba(54, 32, 18, 0.68) 100%),
    linear-gradient(126deg, rgba(255, 196, 111, 0.28), rgba(255, 196, 111, 0.08));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 196, 111, 0.34);
  box-shadow: 0 24px 46px rgba(8, 11, 22, 0.55);
  display: grid;
  gap: 0.8rem;
}

.feature__card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.feature__card p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.values {
  padding-top: 4rem;
}

.values__grid {
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.values__card {
  background:
    linear-gradient(120deg, rgba(18, 21, 32, 0.96) 0%, rgba(22, 24, 36, 0.88) 56%, rgba(54, 32, 18, 0.64) 100%),
    linear-gradient(128deg, rgba(255, 196, 111, 0.24), rgba(255, 196, 111, 0.06));
  border-radius: var(--radius-md);
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255, 196, 111, 0.32);
  box-shadow: 0 26px 50px rgba(9, 11, 22, 0.52);
  display: grid;
  gap: 0.6rem;
}

.values__icon {
  font-size: 1.4rem;
  filter: grayscale(1) brightness(1.4);
}

.values__card h3 {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.values__card p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.services {
  padding: 6rem 0 7rem;
}

.services__inner {
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}

.services__content {
  grid-column: span 5;
  display: grid;
  gap: 1rem;
}

.services__content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: rgba(255, 196, 111, 0.88);
  font-weight: 500;
}

.services__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.services__content p {
  color: var(--color-muted);
  max-width: 36ch;
  font-size: 1.04rem;
  line-height: 1.78;
}

.services__highlights {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.services__card {
  padding: 2.4rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 196, 111, 0.28);
  background:
    linear-gradient(120deg, rgba(18, 20, 30, 0.95) 0%, rgba(16, 17, 26, 0.86) 54%, rgba(52, 30, 16, 0.64) 100%),
    linear-gradient(124deg, rgba(255, 196, 111, 0.22), rgba(255, 196, 111, 0.06));
  box-shadow: 0 26px 52px rgba(8, 10, 20, 0.52);
  display: grid;
  gap: 0.6rem;
}

.services__card h3 {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.services__card p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.experience {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 196, 111, 0.32), transparent 64%),
    linear-gradient(112deg, rgba(10, 12, 19, 0.88), rgba(8, 9, 12, 0.72));
}

.experience__grid {
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.experience__card {
  padding: 2.6rem 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 196, 111, 0.28);
  background:
    linear-gradient(120deg, rgba(14, 16, 24, 0.94) 0%, rgba(16, 17, 26, 0.88) 56%, rgba(52, 30, 16, 0.62) 100%),
    linear-gradient(130deg, rgba(255, 196, 111, 0.22), rgba(255, 196, 111, 0.04));
  display: grid;
  gap: 0.8rem;
  box-shadow: var(--shadow-card);
}

.experience__card span {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 196, 111, 0.86);
}

.experience__card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 196, 111, 0.94);
}

.experience__card p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.cta {
  padding: 6rem 0;
}

.cta__inner {
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.8rem;
  align-items: center;
  background: linear-gradient(130deg, rgba(255, 196, 111, 0.24), rgba(110, 124, 255, 0.24));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 196, 111, 0.24);
  padding: 3.5rem;
}

.cta__content {
  grid-column: span 6;
  display: grid;
  gap: 1rem;
}

.cta__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.2rem);
  letter-spacing: 0.012em;
  font-weight: 500;
}

.cta__content p {
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.cta__media {
  grid-column: span 6;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cta__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.contact {
  padding: 7rem 0 6rem;
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  justify-items: center;
  align-content: start;
}

.contact__header {
  display: grid;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact__header .eyebrow {
  letter-spacing: 0.42em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 196, 111, 0.84);
  font-weight: 500;
}

.contact__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.3vw, 3.05rem);
  font-weight: 500;
  letter-spacing: 0.012em;
}

.contact__header p {
  color: var(--color-muted);
  max-width: 520px;
  font-size: 1.04rem;
  line-height: 1.78;
}

.contact__form {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.contact__embed {
  position: relative;
  min-height: clamp(900px, 125vw, 1600px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(112deg, rgba(18, 20, 32, 0.9) 0%, rgba(16, 18, 30, 0.84) 56%, rgba(56, 32, 16, 0.7) 100%);
  border: 1px solid rgba(255, 196, 111, 0.24);
  box-shadow: 0 40px 80px rgba(12, 14, 26, 0.6);
}

.contact__embed::before {
  content: '';
  position: absolute;
  inset: 12% 8% 8% 20%;
  background: radial-gradient(circle at 88% 18%, rgba(255, 216, 176, 0.55), transparent 68%);
  filter: blur(16px);
  opacity: 0.95;
  pointer-events: none;
}

.contact__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}


.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer__inner {
  width: var(--max-width);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 2.4rem;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  min-width: 280px;
  justify-items: center;
}

.site-footer__info h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: rgba(255, 196, 111, 0.92);
}

.site-footer__info p,
.site-footer__info a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 400;
}

.site-footer__info a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.site-footer__info a:hover,
.site-footer__info a:focus-visible {
  color: rgba(255, 196, 111, 0.96);
  border-color: rgba(255, 196, 111, 0.6);
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero__inner {
    justify-items: center;
  }

  .hero__content {
    justify-items: center;
    text-align: center;
    padding: 2.2rem 2.4rem;
    gap: 1rem;
  }

  .hero__content p {
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    justify-content: center;
  }

  .section-heading {
    text-align: center;
    justify-items: center;
  }

  .section-heading p {
    margin: 0 auto;
  }

  .services__inner {
    justify-items: center;
  }

  .services__content {
    text-align: center;
    margin: 0 auto;
  }

  .services__content p {
    margin: 0 auto;
  }

  .hero__inner,
  .services__inner,
  .cta__inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }

  .hero__content,
  .hero__media,
  .services__content,
  .services__highlights,
  .cta__content,
  .cta__media {
    grid-column: span 12;
  }

  .contact {
    gap: 2.5rem;
  }

  .contact__header,
  .contact__form {
    max-width: none;
  }

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

  .cta__inner {
    text-align: center;
  }

  .cta__content {
    order: 2;
  }

  .cta__media {
    order: 1;
    max-height: 420px;
  }
}

@media (max-width: 960px) {
  :root {
    --max-width: min(920px, calc(100vw - 3rem));
    --header-height: 72px;
  }

  .site-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
    padding: 1rem 1.2rem;
    width: min(var(--max-width), calc(100vw - 2.4rem));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-button--ghost {
    display: none;
  }

  .site-header__drawer.is-open {
    inset: var(--header-height) 1.2rem auto 1.2rem;
  }

  section {
    padding: 4.2rem 0;
  }

  .hero__content {
    padding: 2.1rem 2rem;
  }

  .hero__card {
    max-width: 300px;
  }

  .hero__actions {
    width: 100%;
    justify-content: center;
  }

  .feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }

  .values__grid,
  .experience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }

  .feature__card,
  .values__card,
  .services__card,
  .experience__card {
    padding: 2rem 1.85rem;
  }

  .services__inner {
    gap: 2.2rem;
  }

  .services__highlights {
    gap: 1.6rem;
  }

  .cta__inner {
    padding: 3rem 2.6rem;
    gap: 2.2rem;
  }

  .cta__media {
    max-height: 360px;
  }

  .contact {
    padding: 4.8rem 0 4.2rem;
  }

  .contact__header {
    gap: 0.6rem;
  }

  .contact__embed {
    min-height: clamp(820px, 120vw, 1300px);
  }

  .site-footer__inner {
    gap: 1.8rem;
  }

  .site-footer__info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .site-footer {
    padding: 3.5rem 0 3rem;
  }
}

@media (max-width: 720px) {
  :root {
    --max-width: min(660px, calc(100vw - 2.4rem));
  }

  body {
    background:
      radial-gradient(circle at 92% 8%, rgba(255, 196, 111, 0.9) 0%, rgba(255, 196, 111, 0.38) 40%, transparent 72%),
      radial-gradient(circle at 26% -18%, rgba(84, 104, 255, 0.3) 0%, rgba(9, 13, 32, 0.32) 46%, transparent 72%),
      linear-gradient(162deg, #06081a 0%, #070a1d 52%, #04060e 100%);
  }

  section {
    padding: 3.6rem 0;
  }

  .hero__content {
    padding: 2rem 1.8rem;
  }

  .hero__card {
    max-width: 280px;
  }

  .hero__card figcaption {
    left: 1.2rem;
    bottom: 1rem;
    font-size: 0.82rem;
  }

  .feature__grid,
  .values__grid,
  .experience__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .feature__card,
  .values__card,
  .services__card,
  .experience__card {
    padding: 1.85rem 1.6rem;
  }

  .services__inner {
    gap: 1.8rem;
  }

  .services__content p {
    max-width: none;
  }

  .services__highlights {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .cta__inner {
    padding: 2.6rem 1.9rem;
    gap: 1.8rem;
  }

  .cta__media {
    max-height: 320px;
  }

  .contact {
    padding: 4.4rem 0 3.8rem;
  }

  .contact__embed {
    min-height: clamp(760px, 160vw, 1180px);
  }

  .site-footer__inner {
    gap: 1.6rem;
  }

  .site-footer__info {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .site-footer {
    padding: 3.2rem 0 2.8rem;
  }
}

@media (max-width: 640px) {
  .headline-rotator {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    letter-spacing: 0.1em;
  }

  .headline-rotator__line {
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  :root {
    --max-width: calc(100vw - 1.6rem);
    --header-height: 64px;
  }

  .site-header__inner {
    padding: 0.85rem 0.8rem;
    gap: 0.6rem;
  }

  .brand img {
    height: 40px;
  }

  .site-header__drawer.is-open {
    inset: var(--header-height) 0.85rem auto 0.85rem;
  }

  section {
    padding: 3.2rem 0;
  }

  .hero {
    padding-bottom: 3.6rem;
  }

  .hero__content {
    padding: 1.8rem 1.5rem;
    gap: 0.9rem;
  }

  .hero__content h1 {
    font-size: clamp(2.1rem, 8.8vw, 2.7rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

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

  .primary-button,
  .secondary-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.74rem;
  }

  .feature__card,
  .values__card,
  .services__card,
  .experience__card {
    padding: 1.6rem 1.4rem;
  }

  .cta__inner {
    padding: 2.2rem 1.6rem;
    gap: 1.4rem;
  }

  .cta__content {
    gap: 0.9rem;
  }

  .cta__media {
    max-height: 280px;
  }

  .contact {
    padding: 4rem 0 3.4rem;
  }

  .contact__embed {
    min-height: clamp(680px, 170vw, 1080px);
  }

  .site-footer {
    padding: 2.8rem 0 2.4rem;
  }

  .site-footer__copy {
    letter-spacing: 0.18em;
  }
}
