:root {
  --ink: #0d0d0f;
  --muted: #b8b8bf;
  --paper: #141417;
  --paper-soft: #1d1d21;
  --line: #34343a;
  --gold: #e08639;
  --pink: #e08639;
  --silver: #b7b7bf;
  --night: #09090a;
  --graphite: #19191c;
  --white: #ffffff;
  --sans: "Outfit", Arial, sans-serif;
  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --container: min(1408px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(224, 134, 57, 0.1), transparent 24%),
    linear-gradient(180deg, #09090a 0%, #151518 100%);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: clip;
  padding-top: 102px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 24px);
  min-height: 102px;
  padding: 18px max(24px, calc((100vw - 1408px) / 2));
  background: rgba(9, 9, 10, 0.94);
  border-bottom: 1px solid rgba(184, 184, 189, 0.22);
  box-shadow: 0 16px 45px rgba(9, 9, 10, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 165px;
  line-height: 1;
}

.brand img {
  width: 165px;
  height: auto;
}

.brand span,
.site-footer h2 {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

em {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.85vw, 18px);
  flex: 1;
}

.nav-toggle,
.burger {
  display: none;
}

.main-nav a,
.nav-cta,
.button,
.filters button,
.eyebrow,
.meta-row,
.contact-info h3,
.site-footer h3,
.footer-bottom {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav a {
  color: #eeeeef;
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 20px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 300;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  color: var(--white);
}

.nav-cta:hover,
.button:hover,
.filters button:hover {
  transform: translateY(-1px);
}

.hero {
  padding-top: 74px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(224, 134, 57, 0.24),
      transparent 24%
    ),
    radial-gradient(
      circle at 12% 92%,
      rgba(184, 184, 189, 0.18),
      transparent 28%
    ),
    linear-gradient(125deg, #080809 0%, #151518 58%, #242428 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(56px, 8vw, 150px);
  align-items: center;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 24px;
  color: var(--muted);
}

.hero .eyebrow {
  color: #c8c8cd;
}

.eyebrow::before {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 62px;
  font-size: clamp(72px, 7.7vw, 140px);
}

h1 em,
h2 em {
  display: block;
  font-weight: 300;
}

.lead {
  max-width: 760px;
  color: #dedee2;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.5;
}

.hero .lead {
  color: #dedee2;
}

.hero-aside {
  align-self: end;
}

.hero-aside img {
  aspect-ratio: 0.75;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(169, 169, 176, 0.34);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 64px;
  color: #808086;
}

.hero .meta-row {
  color: #bcbcc1;
}

.button.primary {
  width: 100%;
  color: var(--ink);
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.16);
}

.button.primary:hover,
.nav-cta:hover {
  border-color: var(--pink);
  box-shadow: 0 16px 34px rgba(224, 134, 57, 0.2);
}

.button.ghost {
  width: 100%;
  margin-top: 22px;
  border: 0;
  color: var(--white);
}

.hero .button.ghost {
  color: var(--white);
}

.marquee {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin-top: 76px;
  padding: 23px 0;
  border-top: 1px solid rgba(184, 184, 189, 0.34);
  border-bottom: 1px solid rgba(184, 184, 189, 0.34);
  color: var(--white);
  background: rgba(9, 9, 10, 0.74);
  font-family: var(--serif);
  font-size: clamp(24px, 1.65vw, 34px);
  font-style: italic;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  min-width: max-content;
  animation: marquee-slide 42s linear infinite;
}

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

.marquee i {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--silver), var(--pink));
  flex: 0 0 auto;
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(56px, 6.4vw, 112px);
  align-items: start;
}

.about {
  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(224, 134, 57, 0.12),
      transparent 25%
    ),
    linear-gradient(115deg, #0a0a0b 0%, #151518 54%, #232228 100%);
  overflow: visible;
}

.about .split {
  align-items: stretch;
}

/* .about .text-block {
  min-height: 1080px;
} */

.portrait img {
  aspect-ratio: 0.76;
  object-fit: cover;
  border-radius: 7px;
}

.portrait {
  margin: 0;
  position: sticky;
  top: 128px;
  align-self: start;
}

.portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.portrait strong {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.portrait span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.text-block h2,
.section-heading h2,
.faq h2,
.testimonial-card h2 {
  margin-bottom: 44px;
  font-size: clamp(50px, 4vw, 78px);
}

.text-block p,
.section-heading p,
.faq-grid > div > p,
.contact-info p {
  max-width: 780px;
  color: #d8d8dd;
  font-size: 19px;
  font-weight: 300;
}

blockquote {
  margin: 54px 0;
  padding-left: 36px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 42px);
  font-style: italic;
  line-height: 1.22;
}

blockquote p {
  color: var(--white);
  font: inherit;
}

blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 3vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.styles,
.why,
.team,
.portfolio,
.testimonials,
.faq,
.contact {
  background:
    radial-gradient(circle at 84% 0%, rgba(224, 134, 57, 0.1), transparent 27%),
    radial-gradient(
      circle at 12% 78%,
      rgba(184, 184, 189, 0.08),
      transparent 28%
    ),
    linear-gradient(135deg, #0b0b0c 0%, #151519 58%, #222127 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(54px, 6vw, 100px);
  align-items: start;
}

.why-grid .section-heading {
  margin-bottom: 0;
}

.why-images {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}

.why-images .image-zoom:first-child {
  margin-top: 74px;
}

.why-images img {
  height: 520px;
  object-fit: cover;
}

.why-cards {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 34px;
  padding: 28px 0 46px;
  perspective: 1200px;
}

.why-cards article,
.team-grid article {
  border: 1px solid rgba(184, 184, 189, 0.18);
  background: rgba(9, 9, 10, 0.34);
  border-radius: 7px;
}

.why-cards article {
  position: relative;
  flex: 1 1 0;
  min-height: 430px;
  margin-left: -3.1%;
  padding: clamp(34px, 3.4vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    radial-gradient(
      circle at 82% 18%,
      rgba(224, 134, 57, 0.14),
      transparent 28%
    ),
    linear-gradient(150deg, rgba(18, 18, 21, 0.98), rgba(10, 10, 12, 0.98));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-origin: center bottom;
  transition:
    flex 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.why-cards article:first-child {
  margin-left: 0;
}

.why-cards article:nth-child(1) {
  z-index: 1;
  transform: translateY(0) rotate(-1.2deg);
}

.why-cards article:nth-child(2) {
  z-index: 2;
  transform: translateY(18px) rotate(0.8deg);
}

.why-cards article:nth-child(3) {
  z-index: 3;
  transform: translateY(36px) rotate(-0.6deg);
}

.why-cards article:nth-child(4) {
  z-index: 4;
  transform: translateY(54px) rotate(1deg);
}

.why-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(224, 134, 57, 0.5), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%);
  opacity: 0.22;
}

.why-cards article::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(224, 134, 57, 0.2);
  border-radius: 50%;
  opacity: 0.45;
}

.why-cards article:hover,
.why-cards article:focus-within {
  z-index: 12;
  flex: 1.34 1 0;
  border-color: rgba(224, 134, 57, 0.58);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(224, 134, 57, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-22px) rotate(0deg) scale(1.025);
}

.why-cards:hover article:not(:hover) {
  opacity: 0.58;
}

.why-cards span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 58px;
  color: var(--pink);
  font-family: var(--serif);
  font-size: clamp(30px, 2.3vw, 42px);
  font-style: italic;
}

.why-cards h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 2.7vw, 54px);
  line-height: 0.98;
}

.why-cards p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0;
  color: #d8d8dd;
  font-size: 18px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.team-grid article {
  overflow: hidden;
  text-align: center;
}

.team-grid .image-zoom {
  border: 0;
  border-radius: 0;
}

.team-grid img {
  height: 520px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.team-grid h3 {
  margin: 28px 0 10px;
  color: var(--pink);
  font-family: var(--serif);
  font-size: clamp(34px, 2.6vw, 48px);
  font-style: italic;
  font-weight: 400;
}

.team-grid p {
  margin: 0 0 30px;
  color: #dedee2;
  font-size: 17px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 82px;
}

.style-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(52px, 6.2vw, 104px);
  align-items: center;
  min-height: 560px;
  margin-bottom: 92px;
}

.style-row.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.style-row.reverse .image-zoom {
  order: 2;
}

.image-zoom {
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 120, 126, 0.24);
  border-radius: 7px;
}

.style-row .image-zoom img {
  aspect-ratio: 1.25;
  object-fit: cover;
}

.image-zoom img {
  height: 100%;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.image-zoom:hover img {
  transform: scale(1.045);
  filter: contrast(1.03);
}

.number {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}

.number::after {
  content: "";
  height: 1px;
  background: rgba(184, 184, 189, 0.28);
}

.style-row h3,
.timeline h3,
details summary {
  margin: 22px 0 12px;
  font-family: var(--serif);
  font-size: clamp(38px, 3.3vw, 62px);
  font-weight: 500;
  line-height: 1.05;
}

.style-row h4 {
  margin: 0 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.style-row p {
  color: #d8d8dd;
  font-size: 19px;
  font-weight: 300;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.filters button {
  min-height: 48px;
  padding: 0 24px;
  color: #dedee2;
  background: transparent;
  border: 1px solid rgba(184, 184, 189, 0.28);
  border-radius: 999px;
  cursor: pointer;
}

.filters .active {
  color: var(--ink);
  background: var(--pink);
  border-color: var(--pink);
}

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

.gallery .image-zoom {
  aspect-ratio: 1;
  border: 1px solid rgba(184, 184, 189, 0.18);
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.gallery .image-zoom img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.96);
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(224, 134, 57, 0.2), transparent 30%),
    radial-gradient(
      circle at 84% 72%,
      rgba(184, 184, 189, 0.14),
      transparent 25%
    ),
    linear-gradient(135deg, #070708 0%, #111113 62%, #1f1f23 100%);
}

.section-heading.dark {
  color: var(--white);
}

.section-heading.dark .eyebrow {
  color: var(--gold);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px 120px;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: var(--gold);
}

.timeline article {
  position: relative;
}

.timeline article:nth-child(odd) {
  text-align: right;
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline article:nth-child(odd)::after {
  right: -68px;
}

.timeline article:nth-child(even)::after {
  left: -68px;
}

.timeline span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 52px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.timeline h3 {
  margin-top: 4px;
  color: var(--white);
  font-size: 31px;
}

.timeline p {
  color: #d8d8dc;
  font-size: 17px;
  font-weight: 300;
}

.testimonial-card {
  max-width: 1360px;
  text-align: center;
}

.testimonial-card h2 {
  margin-bottom: 0;
}

.testimonial-card .eyebrow {
  justify-content: center;
}

.testimonial-slider {
  position: relative;
  margin-top: 72px;
}

.testimonial-slides {
  position: relative;
  min-height: 330px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  opacity: 0;
  transform: translateX(44px);
  pointer-events: none;
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide.is-leaving-left {
  transform: translateX(-44px);
}

.testimonial-card blockquote {
  max-width: 1140px;
  margin: 0 auto 54px;
  padding: 0;
  border: 0;
  font-size: clamp(34px, 3.6vw, 68px);
  line-height: 1.12;
}

.person {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.slider-arrow {
  position: absolute;
  top: 44%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: rgba(22, 22, 25, 0.9);
  border: 1px solid rgba(184, 184, 189, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.slider-arrow:hover {
  border-color: var(--pink);
  background: rgba(224, 134, 57, 0.16);
  transform: translateY(-1px);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 78px;
}

.slider-dots button {
  width: 48px;
  height: 3px;
  padding: 0;
  background: rgba(184, 184, 189, 0.4);
  border: 0;
  cursor: pointer;
}

.slider-dots .active {
  background: var(--pink);
}

.faq-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 8vw, 130px);
}

.faq-grid {
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(70px, 8vw, 128px);
  align-items: start;
}

.faq .accordion {
  width: 100%;
}

.accordion {
  border-top: 1px solid rgba(184, 184, 189, 0.24);
}

details {
  border-bottom: 1px solid rgba(184, 184, 189, 0.24);
}

summary {
  position: relative;
  padding: 34px 72px 34px 0;
  cursor: pointer;
  list-style: none;
}

.faq details summary {
  margin: 0;
  padding: 28px 64px 28px 0;
  font-size: clamp(30px, 2.45vw, 46px);
  font-weight: 400;
  line-height: 1.14;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 34px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 184, 189, 0.36);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
}

.faq summary::after {
  top: 27px;
  width: 38px;
  height: 38px;
  font-size: 22px;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 820px;
  margin-bottom: 34px;
  color: #d8d8dd;
  font-size: 21px;
  font-weight: 300;
}

.faq details p {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.55;
}

.contact .section-heading {
  max-width: 760px;
  margin-bottom: 78px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(58px, 6.5vw, 96px);
  align-items: start;
}

.instagram-cta {
  display: grid;
  gap: 16px;
  margin-bottom: 52px;
}

.instagram-cta .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 36px;
  width: 100%;
}

label {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 54px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(184, 184, 189, 0.32);
  outline: 0;
  font-weight: 300;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

::placeholder {
  color: #898991;
  opacity: 1;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.full {
  grid-column: 1 / -1;
}

form .button {
  width: min(320px, 100%);
  margin-top: 14px;
  border: 0;
  cursor: pointer;
}

.contact-info {
  padding-left: 48px;
  border-left: 1px solid rgba(184, 184, 189, 0.24);
}

.contact-info h3,
.site-footer h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}

.contact-info p {
  margin-bottom: 48px;
}

.site-footer {
  padding: 110px 0 50px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(224, 134, 57, 0.12),
      transparent 24%
    ),
    linear-gradient(110deg, #080809 0%, #151518 68%, #222127 100%);
  border-top: 1px solid rgba(184, 184, 189, 0.24);
}

.footer-logo {
  width: 230px;
  max-width: 100%;
  margin-bottom: 28px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.55fr 0.7fr;
}

.site-footer h2 {
  margin: 0 0 28px;
  font-size: clamp(48px, 5vw, 84px);
}

.site-footer p {
  max-width: 640px;
  color: #d8d8dd;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer nav a {
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 34px;
  border-top: 1px solid rgba(184, 184, 189, 0.24);
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.legal-main {
  padding: 84px 0 120px;
  background:
    radial-gradient(
      circle at 85% 4%,
      rgba(224, 134, 57, 0.16),
      transparent 25%
    ),
    linear-gradient(180deg, #09090a 0%, #151518 100%);
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  min-width: 0;
}

.legal-content {
  min-width: 0;
  padding: clamp(28px, 4vw, 64px);
  border: 1px solid rgba(184, 184, 189, 0.2);
  border-radius: 12px;
  background: rgba(8, 8, 9, 0.68);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.legal-content h1 {
  margin-bottom: 34px;
  font-size: clamp(52px, 7vw, 96px);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin: 56px 0 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

.legal-content h3 {
  margin: 34px 0 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: #d8d8dd;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-content ul {
  margin: 0 0 26px;
  padding-left: 20px;
}

.legal-card {
  position: sticky;
  top: 132px;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(224, 134, 57, 0.26);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(224, 134, 57, 0.16),
      transparent 32%
    ),
    rgba(15, 15, 17, 0.86);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: 34px;
}

.legal-card p,
.legal-card a {
  color: #dedee2;
  overflow-wrap: anywhere;
}

.legal-card nav {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.legal-card nav a {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  color: #101012;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #33e074;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.46);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(620px, calc(100vw - 48px));
  padding: 20px;
  border: 1px solid rgba(184, 184, 189, 0.24);
  border-radius: 12px;
  background: rgba(9, 9, 10, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #dedee2;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--gold);
}

.cookie-banner .button {
  min-height: 42px;
  padding: 0 18px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 780ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translate3d(-54px, 22px, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(54px, 22px, 0);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .reveal,
  .testimonial-slide,
  .image-zoom img {
    transition: none;
  }
}

@media (max-width: 1120px) {
  html {
    scroll-padding-top: 184px;
  }

  body {
    padding-top: 166px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .split,
  .why-grid,
  .style-row,
  .style-row.reverse,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait {
    position: static;
  }

  .style-row.reverse .image-zoom {
    order: 0;
  }

  .contact-info {
    padding-left: 0;
    border-left: 0;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 920px);
  }

  .legal-card {
    position: static;
    order: -1;
  }

  .why-cards,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards {
    display: grid;
    gap: 22px;
    margin-top: 0;
    padding: 0;
  }

  .why-cards article,
  .why-cards article:first-child,
  .why-cards article:nth-child(1),
  .why-cards article:nth-child(2),
  .why-cards article:nth-child(3),
  .why-cards article:nth-child(4) {
    min-height: 0;
    margin-left: 0;
    transform: none;
  }

  .why-cards article:hover,
  .why-cards article:focus-within {
    flex: 1 1 auto;
    transform: translateY(-8px);
  }

  .why-cards span {
    margin-bottom: 32px;
  }

  .why-cards p {
    max-width: none;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    font-size: 16px;
    padding-top: 82px;
  }

  .container {
    width: min(100% - 40px, 680px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    flex-wrap: nowrap;
    min-height: 82px;
    padding: 12px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 132px;
  }

  .brand span {
    font-size: 24px;
  }

  .nav-cta {
    margin-left: auto;
    min-height: 38px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .burger {
    order: 4;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    cursor: pointer;
  }

  .burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 17px;
    height: 2px;
    margin: 0;
    background: var(--white);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition:
      transform 220ms ease,
      opacity 180ms ease,
      width 180ms ease;
  }

  .burger span:first-child {
    transform: translate(-50%, calc(-50% - 4px));
  }

  .burger span:nth-child(2) {
    display: none;
  }

  .burger span:last-child {
    transform: translate(-50%, calc(-50% + 4px));
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    order: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(9, 9, 10, 0.98);
    border-bottom: 1px solid rgba(184, 184, 189, 0.22);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.34);
    transition:
      max-height 260ms ease,
      padding 260ms ease;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(184, 184, 189, 0.16);
    font-size: 12px;
  }

  .nav-toggle:checked ~ .main-nav {
    max-height: 620px;
    padding: 14px 20px 18px;
  }

  .nav-toggle:checked + .burger span:first-child {
    width: 19px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle:checked + .burger span:last-child {
    width: 19px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero {
    padding-top: 44px;
  }

  .hero .eyebrow {
    max-width: calc(100vw - 40px);
    margin-right: 0;
    font-size: 11px;
    line-height: 1.55;
    gap: 14px;
  }

  .eyebrow::before {
    width: 46px;
  }

  h1 {
    margin-bottom: 34px;
    font-size: clamp(46px, 15vw, 68px) !important;
    line-height: 0.98;
  }

  .lead,
  .text-block p,
  .section-heading p,
  .faq-grid > div > p,
  .style-row p,
  details p,
  .contact-info p {
    font-size: 17px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-aside {
    width: 100%;
    max-width: none;
  }

  .hero-aside img {
    aspect-ratio: 0.95;
  }

  .hero-aside .button {
    min-height: 54px;
    padding-inline: 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .portrait figcaption {
    align-items: flex-start;
    gap: 18px;
    margin-top: 22px;
  }

  .portrait strong {
    max-width: 190px;
    font-size: 30px;
    line-height: 1.08;
  }

  .portrait span {
    max-width: 230px;
    line-height: 1.45;
  }

  .meta-row {
    margin-bottom: 30px;
    padding-inline: 0;
  }

  .marquee {
    gap: 26px;
    margin-top: 54px;
  }

  .text-block h2,
  .section-heading h2,
  .faq h2,
  .testimonial-card h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .stats,
  .why-images,
  .why-cards,
  .team-grid,
  .gallery,
  form {
    grid-template-columns: 1fr;
  }

  .why-grid {
    gap: 44px;
  }

  .why-images .image-zoom:first-child {
    margin-top: 0;
  }

  .why-images img,
  .team-grid img {
    height: auto;
    aspect-ratio: 0.78;
    object-fit: cover;
  }

  .why-cards article {
    padding: 28px;
  }

  .why-cards article::after {
    width: 82px;
    height: 82px;
  }

  .why-cards h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .style-row {
    gap: 36px;
    min-height: 0;
    margin-bottom: 76px;
  }

  .style-row h3,
  details summary {
    font-size: 38px;
  }

  .style-row .image-zoom img {
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery .image-zoom img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-left: 20px;
  }

  .timeline::before {
    left: -20px;
  }

  .timeline article,
  .timeline article:nth-child(odd) {
    text-align: left;
  }

  .timeline article::after,
  .timeline article:nth-child(odd)::after,
  .timeline article:nth-child(even)::after {
    left: -27px;
    right: auto;
  }

  .testimonial-card blockquote {
    font-size: clamp(30px, 9vw, 42px);
  }

  .testimonial-slider {
    margin-top: 58px;
  }

  .testimonial-slides {
    min-height: 420px;
  }

  .slider-arrow {
    display: none;
  }

  summary {
    padding-right: 52px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .legal-main {
    padding: 52px 0 84px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-card {
    position: static;
    order: -1;
  }

  .legal-content {
    padding: 24px 20px;
  }

  .legal-content h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .legal-content h2 {
    font-size: 30px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 84px;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
