/* ==========================================================================
   XRForgeHub Culinary Studio — Global Stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --color-espresso: #2B211A;
  --color-terracotta: #C1622E;
  --color-terracotta-dark: #A34F22;
  --color-sage: #7C8B6F;
  --color-olive: #5E7052;
  --color-cream: #FAF6F0;
  --color-sand: #F0E8DD;
  --color-stone: #5B534C;
  --color-white: #FFFFFF;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(43, 33, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 33, 26, 0.12);

  --container-max: 1200px;
  --space-section: clamp(3rem, 6vw, 6rem);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-espresso);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--color-espresso);
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  padding-block: var(--space-section);
}

.section-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--color-espresso);
  color: var(--color-cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-cream);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-espresso);
  border-color: var(--color-espresso);
}

.btn-secondary:hover {
  background: var(--color-espresso);
  color: var(--color-cream);
}

.btn-light {
  background: var(--color-cream);
  color: var(--color-espresso);
}

.btn-light:hover {
  background: var(--color-white);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(43, 33, 26, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-brand img {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(43, 33, 26, 0.15);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-espresso);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-md);
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-menu a {
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-menu a[aria-current="page"]:not(.nav-cta) {
  color: var(--color-terracotta);
}

.nav-cta {
  margin-top: auto;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    transform: none;
    padding: 0;
    gap: 2rem;
  }

  .nav-menu a {
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 0;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.hero .container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy .eyebrow {
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--color-stone);
  max-width: 46ch;
}

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

.hero-trust {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-stone);
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Benefit cards
   ========================================================================== */
.benefits {
  background: var(--color-sand);
}

.benefit-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.benefit-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.benefit-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
}

.benefit-card p {
  color: var(--color-stone);
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.step h3 {
  font-size: 1.1rem;
}

.step p {
  color: var(--color-stone);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Courses teaser
   ========================================================================== */
.courses {
  background: var(--color-sand);
}

.course-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.course-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.course-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.course-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card h3 {
  font-size: 1.15rem;
}

.course-card p {
  color: var(--color-stone);
  font-size: 0.95rem;
  flex: 1;
}

.course-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.courses-footer-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .course-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: var(--color-sand);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-espresso);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--color-stone);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-sand);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-espresso);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-terracotta);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--color-stone);
  padding-bottom: 1.25rem;
  margin: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  width: calc(100% - 2.5rem);
  max-width: var(--container-max);
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 33, 26, 0.55), rgba(43, 33, 26, 0.8));
  z-index: -1;
}

.cta-banner-content {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-banner h2 {
  color: var(--color-cream);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
}

.cta-banner p {
  color: var(--color-sand);
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Lead form
   ========================================================================== */
.lead-form-section {
  background: var(--color-espresso);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  width: calc(100% - 2.5rem);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem);
}

.lead-form-wrap {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
}

.lead-form-intro h2 {
  color: var(--color-cream);
}

.lead-form-intro p {
  color: var(--color-sand);
}

.lead-form-intro ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-form-intro li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--color-sand);
  font-size: 0.95rem;
}

.lead-form-intro li::before {
  content: "✓";
  color: var(--color-terracotta);
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-cream);
  color: var(--color-espresso);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field input:invalid[data-touched="true"],
.form-field select:invalid[data-touched="true"] {
  outline: 2px solid var(--color-terracotta);
}

.form-error {
  color: #E8A87C;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-sand);
}

.form-consent input {
  margin-top: 0.2rem;
}

.form-consent a {
  text-decoration: underline;
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status.success {
  color: #A9C89A;
}

/* honeypot field — hidden from real users, catches bots */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .lead-form-wrap {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-sand);
  padding-block: 3rem 1.5rem;
  margin-top: var(--space-section);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.footer-social a:hover {
  background: var(--color-cream);
  opacity: 0.7;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.footer-col address {
  color: var(--color-stone);
  font-size: 0.95rem;
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(43, 33, 26, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-stone);
}

@media (max-width: 767px) {
  .footer-col {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* ==========================================================================
   Pricing tiers (Services page)
   ========================================================================== */
.pricing {
  background: var(--color-sand);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--color-espresso);
  color: var(--color-cream);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-stone);
}

.pricing-card.featured .pricing-price span {
  color: var(--color-sand);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--color-stone);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-tagline {
  color: var(--color-sand);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.pricing-list li::before {
  content: "✓";
  color: var(--color-terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1.04);
  }
}

/* ==========================================================================
   Guarantee block
   ========================================================================== */
.guarantee {
  text-align: center;
}

.guarantee-card {
  max-width: 560px;
  margin-inline: auto;
  padding: 2.5rem;
  background: var(--color-sand);
  border-radius: var(--radius-md);
}

.guarantee-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.guarantee-card p {
  color: var(--color-stone);
  margin-bottom: 0;
}

/* ==========================================================================
   Story (About page)
   ========================================================================== */
.story .container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.story-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.story-copy p {
  color: var(--color-stone);
}

@media (min-width: 900px) {
  .story .container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Team / Expertise (About page)
   ========================================================================== */
.team {
  background: var(--color-sand);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.team-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  color: var(--color-terracotta);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.9rem;
}

.team-card p.bio {
  color: var(--color-stone);
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Credentials strip (About page)
   ========================================================================== */
.credentials {
  background: var(--color-espresso);
  color: var(--color-cream);
}

.credentials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.credential-item img {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
}

.credential-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.credential-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-sand);
}

@media (min-width: 768px) {
  .credentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-form-card {
  background: var(--color-sand);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-form-card h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  display: block;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item address {
  color: var(--color-stone);
  font-style: normal;
}

.contact-hours {
  background: var(--color-sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.contact-hours strong {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-hours p {
  color: var(--color-stone);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ==========================================================================
   Thank-you page
   ========================================================================== */
.thankyou-icon {
  margin: 0 auto 1.5rem;
}

.hero-actions-center {
  justify-content: center;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero {
  padding-bottom: 0;
}

.legal-updated {
  color: var(--color-stone);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 820px;
  margin-inline: auto;
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.4rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.legal-content p {
  color: var(--color-stone);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1em 1.25rem;
  padding: 0;
  color: var(--color-stone);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--color-espresso);
}

.legal-note {
  background: var(--color-sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.legal-note p {
  margin-bottom: 0;
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--color-espresso);
  color: var(--color-cream);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
}

.consent-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-sand);
}

.consent-inner a {
  text-decoration: underline;
  color: var(--color-cream);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.consent-actions .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .consent-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
