:root {
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --color-background: #f9f5ef;
  --color-surface: rgba(255, 255, 255, 0.85);
  --color-text: #0f1419;
  --color-muted: #4f5969;
  --color-accent: #0f3a47;
  --color-highlight: #caa75b;
  --color-highlight-soft: rgba(202, 167, 91, 0.14);
  --shadow-soft: 0 18px 40px rgba(15, 20, 25, 0.12);
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
main,
.section {
  overflow: visible !important;
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(249, 245, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(12, 18, 24, 0.05);
  transition: box-shadow 0.3s ease;
}

.site-header.elevated {
  box-shadow: 0 8px 20px rgba(15, 20, 25, 0.12);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list a {
  position: relative;
  padding-bottom: 4px;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.lang-toggle {
  border: 1px solid rgba(12, 18, 24, 0.2);
  background: transparent;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-toggle:hover,
.lang-toggle:focus {
  background: var(--color-text);
  color: #fff;
}

.hero {
  height: 100dvh;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  justify-self: start;
  align-self: center;
  line-height: 1.6;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-muted);
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-highlight);
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--color-text);
}

.hero-copy h1::first-line {
  color: var(--color-highlight);
}

.hero-copy h1 .highlight {
  color: var(--color-highlight);
}

.hero-subheading {
  font-size: 1.3rem;
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 1.6;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--color-highlight);
  color: #1b1b1b;
  box-shadow: 0 16px 32px rgba(202, 167, 91, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  background: #b48b3d;
  box-shadow: 0 22px 40px rgba(202, 167, 91, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(12, 18, 24, 0.2);
  color: var(--color-text);
}

.btn-secondary:hover,
.btn-secondary:focus {
  transform: translateY(-2px);
  border-color: var(--color-highlight);
  color: var(--color-accent);
  box-shadow: 0 14px 32px rgba(15, 20, 25, 0.08);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  align-self: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12, 18, 24, 0.72),
    rgba(12, 18, 24, 0)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  max-width: clamp(640px, 48vw, 780px);
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.hero-champagne {
  background: linear-gradient(135deg, #f9f5ef 0%, #ece3d4 100%);
  color: var(--color-text);
}

.hero-petrol {
  background: linear-gradient(135deg, #0f3a47 0%, #152c33 100%);
  color: #fff;
}
.hero-petrol .hero-copy h1 {
  color: #fff;
}
.hero-petrol .hero-subheading {
  color: rgba(255, 255, 255, 0.8);
}

.hero-textured {
  position: relative;
  background: linear-gradient(135deg, #f9f5ef, #ece3d4);
  overflow: hidden;
}

.hero-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/textures/noise.png") repeat;
  opacity: 0.02;
  pointer-events: none;
}

main {
  overflow-x: hidden;
}

.section {
  padding: 120px 5vw;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem {
  height: 100dvh;
  background: linear-gradient(135deg, #0f3a47 0%, #152c33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  box-sizing: border-box;
}

.problem-output {
  display: grid;
  gap: 40px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.6;
  color: var(--color-highlight);
  font-weight: 500;
}

.problem-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.problem-text {
  display: grid;
  gap: 40px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.6;
  color: var(--color-highlight);
  font-weight: 500;
}

.problem-line {
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.problem-line:nth-child(1) {
  transition-delay: 0.05s;
}

.problem-line:nth-child(2) {
  transition-delay: 0.18s;
}

.problem-line:nth-child(3) {
  transition-delay: 0.3s;
}

.problem-line.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-noise {
  position: relative;
  background: linear-gradient(135deg, #0f3a47 0%, #152c33 100%);
  overflow: hidden;
}

.problem-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/textures/problem-noise.png") repeat;
  opacity: 0.3;
  pointer-events: none;
}

.is-temporarily-hidden {
  display: none;
}

.js-enabled .section,
.js-enabled .hero-inner {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .section.section-visible,
.js-enabled .hero-inner.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  max-width: 720px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.about {
  background: #fff;
}

.about-content {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.about-text {
  display: grid;
  gap: 20px;
  font-size: 1.05rem;
}

.about-anchor {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-accent);
  text-transform: uppercase;
}

.about-media {
  justify-self: center;
}

.about-portrait {
  margin: 0;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 20, 25, 0.18);
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-portrait figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(12, 18, 24, 0.8), transparent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.services {
  background: var(--color-background);
}

.service-grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(15, 20, 25, 0.16);
}

.service-card h3 {
  font-family: var(--font-heading);
  margin-top: 0;
  font-size: 1.4rem;
}

.service-card p {
  margin: 12px 0 0;
}

.service-locale {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(12, 18, 24, 0.08);
}

.process {
  background: #fff;
}

.process-steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--color-highlight);
}

.process-steps h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
}

.process-noise {
  position: relative;
  width: 100%;
 background: #fff;
  overflow: hidden;
}

.process-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/textures/process-noise.png") no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}


.process-noise .process-container {
  position: relative;
  z-index: 1;
  background: transparent;
}

.brands {
  background: linear-gradient(
    135deg,
    rgba(249, 245, 239, 0.95),
    rgba(255, 255, 255, 1)
  );
  padding: 80px 0;
  overflow: hidden;
}

.brand-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brand-carousel::-webkit-scrollbar {
  display: none;
}

.brand-carousel::before,
.brand-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-track {
  display: flex;
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
  padding: 28px 0;
  width: max-content;
  white-space: nowrap;
  animation: scrollBrands 60s linear infinite;
  pointer-events: none;
}

.brand-carousel.is-dragging .brand-track {
  cursor: grabbing;
}

.brand-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  height: 140px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logo img:hover,
.brand-logo img:focus {
  opacity: 1;
  transform: scale(1.05);
}

.brand-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

.testimonials {
  background: radial-gradient(
    circle at center,
    rgba(15, 58, 71, 0.08),
    transparent 70%
  );
}

.testimonial-carousel {
  margin-top: 48px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.carousel-control {
  border: none;
  background: transparent;
  font-size: 1.8rem;
  color: rgba(12, 18, 24, 0.4);
  cursor: pointer;
  transition: color 0.3s ease;
}

.carousel-control:hover,
.carousel-control:focus {
  color: var(--color-accent);
}

.carousel-track {
  overflow: hidden;
  display: flex;
  scroll-behavior: smooth;
}

.carousel-track .testimonial-card {
  min-width: min(440px, 80vw);
  margin-right: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-style: italic;
  color: var(--color-text);
}

.testimonial-card .name {
  font-weight: 600;
}

.testimonial-card .role {
  display: block;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.testimonial-videos {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.video-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.video-poster {
  background: var(--color-highlight-soft);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  font-weight: 600;
}

.video-play {
  justify-self: start;
  border: none;
  background: var(--color-highlight);
  color: #1b1b1b;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.closing {
  background: linear-gradient(
    135deg,
    rgba(12, 18, 24, 0.92),
    rgba(15, 58, 71, 0.88)
  );
  color: #fff;
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.closing .btn-primary {
  justify-self: center;
  color: #131313;
}

.keynotes {
  background: #fff;
}

.keynote-grid {
  margin-top: 56px;
  display: grid;
  justify-items: center;
}

.keynote-card {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  background: #fff;
}

.keynote-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.keynote-card figcaption {
  padding: 36px;
  display: grid;
  gap: 24px;
}

.keynote-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.keynote-list li {
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(12, 18, 24, 0.05);
}

.author {
  background: var(--color-background);
}

.author-content {
  margin-top: 40px;
  font-size: 1.08rem;
  max-width: 640px;
}

.media {
  background: #fff;
}

.media-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.media-logo {
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(12, 18, 24, 0.04);
  color: var(--color-muted);
}

.contact {
  background: linear-gradient(
    135deg,
    rgba(12, 18, 24, 0.92),
    rgba(15, 58, 71, 0.9)
  );
  color: #fff;
}

.contact .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.contact .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.contact-container {
  display: grid;
  gap: 40px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 32px;
  display: grid;
  gap: 20px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.contact .btn-primary {
  align-self: flex-start;
  color: #131313;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 500;
}

.contact-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.contact-links a:hover,
.contact-links a:focus {
  color: var(--color-highlight);
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.site-footer {
  padding: 32px 5vw 60px;
  background: #0f1419;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

@media (max-width: 960px) {
  .nav-list {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: clamp(120px, 22vw, 160px) 6% 96px;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 10vw, 64px);
  }

  .hero-copy {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .hero-subheading {
    max-width: 46ch;
  }

  .hero-visual {
    justify-self: center;
    align-self: center;
    min-height: auto;
  }

  .hero-photo {
    max-width: min(90%, 360px);
  }

  .carousel-track .testimonial-card {
    min-width: 100%;
    margin-right: 0;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .process-steps li {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .carousel-track {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
  }

  .carousel-track .testimonial-card {
    min-width: clamp(320px, 85vw, 420px);
  }

  .brand-track {
    gap: clamp(24px, 7vw, 36px);
    padding: 24px 32px;
  }

  .brand-logo {
    min-width: clamp(180px, 40vw, 240px);
    height: 110px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: clamp(128px, 28vw, 180px) 7% 88px;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 8.4vw, 2.8rem);
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .hero-photo {
    max-width: min(100%, 300px);
  }

  .section {
    padding: 96px 6vw;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-card,
  .testimonial-card {
    padding: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .brand-track {
    gap: clamp(20px, 12vw, 28px);
  }

  .brand-logo {
    min-width: clamp(140px, 54vw, 200px);
    height: 90px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-content {
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links a {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .section,
  .js-enabled .hero-inner {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .btn,
  .lang-toggle,
  .carousel-track {
    transition: none;
  }

  .carousel-track {
    scroll-behavior: auto;
  }

  .problem-line {
    transition: none;
    transform: none;
  }
}

.thanks-page {
  min-height: 100%;
  background: linear-gradient(135deg, #f7f1e6 0%, #f0e0c2 100%);
  color: var(--color-text);
}

.thanks-main {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 12vh, 160px) 6%;
}

.thanks-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  max-width: 640px;
  width: 100%;
  padding: clamp(40px, 8vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(15, 20, 25, 0.12);
  text-align: center;
  display: grid;
  gap: 24px;
}

.thanks-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin: 0;
}

.thanks-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.thanks-redirect {
  font-size: 0.95rem;
  color: rgba(15, 20, 25, 0.7);
}

@media (max-width: 640px) {
  .thanks-main {
    padding: clamp(112px, 18vh, 140px) 7% 96px;
  }

  .thanks-card {
    padding: 36px 28px;
    gap: 20px;
  }

  .thanks-card h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .thanks-subtitle {
    font-size: 1rem;
  }
}

.closing-cta {
  padding: 60px 5vw;
  background: linear-gradient(135deg, #f8f0e4 0%, #e9dcc2 100%);
  color: #0f1419;
}

.closing-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 18px;
}

.closing-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0;
}

.closing-cta p {
  font-size: 1.1rem;
  color: rgba(15, 20, 25, 0.75);
  margin: 0;
}