@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: hsl(40, 33%, 94%);
  --fg: hsl(0, 0%, 15%);
  --border: hsl(40, 10%, 80%);
  --card: hsl(40, 25%, 97%);
  --card-border: hsl(40, 10%, 85%);
  --primary: hsl(18, 56%, 52%);
  --primary-fg: hsl(40, 33%, 94%);
  --muted: hsl(40, 15%, 88%);
  --muted-fg: hsl(0, 0%, 40%);
  --footer-bg: hsl(0, 0%, 15%);
  --footer-fg: hsl(40, 33%, 91%);
  --radius: 0.25rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.10);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 2rem;
  height: 3.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease, transform 0.12s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-primary:hover {
  background: hsl(18, 56%, 44%);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid hsla(0,0%,15%,.22);
}

.btn-outline:hover {
  background: hsla(0,0%,15%,.05);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.25rem;
  font-size: 1rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsla(40,10%,80%,.5);
  background: hsla(40,33%,94%,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.18s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  background: var(--fg);
  color: var(--bg);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.18s;
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  background: var(--primary);
}

.logo-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0,0%,15%,.65);
  transition: color 0.18s;
  text-decoration: none;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  height: 2.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  transition: background 0.18s;
  text-decoration: none;
}

.header-cta:hover {
  background: hsl(18, 56%, 44%);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  gap: 0.75rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  padding: 0.375rem 0;
  text-decoration: none;
  transition: color 0.18s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

section {
  position: relative;
}

.section-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hero-badge-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-accent {
  color: var(--primary);
  font-style: italic;
  position: relative;
  display: inline-block;
  padding-right: 0.125rem;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,8 C50,-2 150,-2 200,8' fill='none' stroke='%23c2683a' stroke-opacity='0.35' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.75;
  max-width: 30rem;
  margin-bottom: 2.5rem;
}

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

.hero-image-wrap {
  position: relative;
}

.hero-image-shadow {
  position: absolute;
  inset: 0;
  background: hsla(18,56%,52%,.12);
  border-radius: var(--radius-lg);
  transform: translate(1rem, 1rem);
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-quote {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow);
  z-index: 10;
  display: none;
}

.hero-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: hsla(0,0%,15%,.75);
}

.section-philosophy {
  padding: 6rem 0;
  background: hsla(40,25%,97%,.6);
  border-top: 1px solid hsla(40,10%,80%,.5);
  border-bottom: 1px solid hsla(40,10%,80%,.5);
}

.philosophy-text {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title-accent {
  color: var(--primary);
  font-style: italic;
}

.philosophy-lead {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

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

.pillar {
  text-align: center;
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  background: hsla(18,56%,52%,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.pillar-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.pillar h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  font-family: var(--font-serif);
}

.pillar p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.section-process {
  padding: 6rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.process-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 2.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  color: hsla(18,56%,52%,.38);
  font-style: italic;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.125rem;
}

.step-body h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

.section-gallery {
  padding: 6rem 0;
  background: var(--fg);
}

.section-gallery .section-title {
  color: var(--footer-fg);
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-lead {
  text-align: center;
  color: hsla(40,33%,91%,.65);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.gallery-frame {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.5s ease;
  display: block;
}

.gallery-frame img:hover {
  opacity: 1;
}

.section-audience {
  padding: 6rem 0;
  background: var(--card);
  border-bottom: 1px solid hsla(40,10%,80%,.5);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.audience-card {
  background: hsla(40,33%,94%,.5);
  border: 1px solid hsla(40,10%,80%,.55);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.2s ease;
}

.audience-card:hover {
  background: var(--bg);
}

.audience-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(18,56%,52%,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.audience-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.audience-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.section-form {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-form::before,
.section-form::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: hsla(18,56%,52%,.055);
  border-radius: 50%;
  filter: blur(4rem);
  pointer-events: none;
}

.section-form::before {
  top: -8rem;
  right: -8rem;
}

.section-form::after {
  bottom: -8rem;
  left: -8rem;
}

.form-card {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid hsla(40,10%,80%,.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
  position: relative;
  z-index: 1;
}

.form-aside {
  background: var(--fg);
  color: var(--footer-fg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-aside h2 {
  color: var(--footer-fg);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-aside p {
  color: hsla(40,33%,91%,.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: hsla(40,33%,91%,.85);
}

.form-bullets li svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.form-body {
  padding: 3rem;
  background: var(--bg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0,0%,15%,.75);
}

.form-group input {
  height: 3rem;
  padding: 0 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}

.form-group input:focus {
  border-color: var(--primary);
}

.form-group input::placeholder {
  color: hsla(0,0%,15%,.35);
}

.form-error {
  font-size: 0.8125rem;
  color: hsl(0, 70%, 50%);
  display: none;
}

.form-group.has-error input {
  border-color: hsl(0, 70%, 50%);
}

.form-group.has-error .form-error {
  display: block;
}

.form-submit {
  width: 100%;
  margin-bottom: 1rem;
}

.form-notice {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: center;
}

.form-notice a {
  text-decoration: underline;
  color: var(--primary);
  transition: opacity 0.18s;
}

.form-notice a:hover {
  opacity: 0.8;
}

footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-logo-icon {
  background: var(--primary);
  color: var(--primary-fg);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-logo-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--footer-fg);
  transition: color 0.18s;
}

.footer-logo:hover .footer-logo-name {
  color: var(--primary);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: hsla(40,33%,91%,.55);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.footer-legal-info {
  font-size: 0.8125rem;
  color: hsla(40,33%,91%,.38);
  line-height: 1.7;
}

.footer-col h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: hsla(40,33%,91%,.85);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsla(40,33%,91%,.55);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid hsla(40,33%,91%,.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: hsla(40,33%,91%,.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--fg);
  color: var(--footer-fg);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
  color: hsla(40,33%,91%,.78);
  line-height: 1.55;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-accept {
  flex-shrink: 0;
  padding: 0 1.375rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: hsl(18, 56%, 44%);
}

.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

.page-legal {
  padding: 5rem 0;
  min-height: 70vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.18s;
}

.back-link:hover {
  color: var(--primary);
}

.page-legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-legal .subtitle {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
}

.prose {
  max-width: 100%;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--fg);
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  font-weight: 700;
  color: var(--fg);
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  padding: 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
}

.prose th {
  background: var(--card);
  font-weight: 700;
}

.page-success {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.success-card {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 4rem 2.5rem;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: hsla(18,56%,52%,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
}

.success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.success-card h1 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.success-card p {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.success-quote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.success-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-image {
    order: 2;
  }

  .process-content {
    order: 1;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    gap: 2rem;
  }

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

  .form-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .form-aside,
  .form-body {
    padding: 2rem 1.5rem;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-accept {
    width: 100%;
  }

  .success-card {
    padding: 2.5rem 1.5rem;
  }

  .hero-quote {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hero-quote {
    display: block;
  }
}
