/* Make Space - Brand Styles */

:root {
  --color-cream: #FAF7F2;
  --color-warm-white: #FEFCF9;
  --color-taupe: #9B8576;
  --color-taupe-light: #C4B5A8;
  --color-taupe-dark: #6B5B4E;
  --color-blush: #E8CFC4;
  --color-blush-light: #F3E5DE;
  --color-mauve: #C5A8BF;
  --color-mauve-light: #E4D4E0;
  --color-text: #4A3B32;
  --color-text-light: #7A6B62;
  --color-text-muted: #A89888;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-taupe-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  max-width: 65ch;
  line-height: 1.75;
}

a {
  color: var(--color-taupe);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-taupe-dark);
}

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

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background-color: var(--color-warm-white);
}

.section--blush {
  background-color: var(--color-blush-light);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(155, 133, 118, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(74, 59, 50, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  height: 72px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 400;
  position: relative;
  cursor: pointer;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-taupe);
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--color-taupe-dark);
}

.nav__cta {
  background: var(--color-taupe);
  color: var(--color-warm-white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease !important;
}

.nav__cta:hover {
  background: var(--color-taupe-dark);
  color: var(--color-warm-white) !important;
}

.nav__cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-taupe-dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 86px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.7) 0%,
    rgba(250, 247, 242, 0.5) 40%,
    rgba(250, 247, 242, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px 40px;
}

.hero__logo {
  width: 476px;
  max-width: 90%;
  margin: -40px auto -80px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color: var(--color-taupe-dark);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero__subtitle {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn--primary {
  background: var(--color-taupe);
  color: var(--color-warm-white);
  border-radius: 4px;
}

.btn--primary:hover {
  background: var(--color-taupe-dark);
  color: var(--color-warm-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 91, 78, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--color-taupe);
  border: 1px solid var(--color-taupe);
  border-radius: 4px;
}

.btn--outline:hover {
  background: var(--color-taupe);
  color: var(--color-warm-white);
}

/* Section headers */
.section__header {
  text-align: center;
  margin-bottom: 30px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin: 0 auto;
}

.section__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mauve);
  margin-bottom: 12px;
  font-weight: 700;
}

/* What is Make Space */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-split__image {
  border-radius: 8px;
  overflow: hidden;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__content h2 {
  margin-bottom: 24px;
}

.about-split__content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* Experience steps */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.experience-card {
  text-align: center;
  padding: 40px 24px;
}

.experience-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-blush-light);
}

.experience-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-taupe);
}

.experience-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.experience-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 0 auto;
}

/* What's included strip */
.included-strip {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 0;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.included-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-mauve);
  flex-shrink: 0;
}

/* Shop Kits */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kit-card {
  background: var(--color-warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(155, 133, 118, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 59, 50, 0.1);
}

.kit-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.kit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kit-card:hover .kit-card__image img {
  transform: scale(1.05);
}

.kit-card__body {
  padding: 24px;
  text-align: center;
}

.kit-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--color-taupe-dark);
}

.kit-card__people {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.kit-card__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-taupe-dark);
  margin-bottom: 4px;
}

.kit-card__shipping {
  font-size: 0.75rem;
  color: var(--color-mauve);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.kit-card .btn {
  width: 100%;
  padding: 12px 24px;
}

.kits-custom {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--color-blush-light);
  border-radius: 12px;
}

.kits-custom p {
  margin: 0 auto 16px;
  color: var(--color-text-light);
}

/* Events */
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.events-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.events-types li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-taupe-dark);
}

.pencil-star {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-mauve);
  transform: rotate(-4deg);
}

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

.events-image {
  border-radius: 12px;
  overflow: hidden;
}

.events-image img {
  width: 100%;
  object-fit: cover;
}

/* About Fiore */
.founder-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content h2 {
  margin-bottom: 24px;
}

.founder-content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.founder-content .founder-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-taupe-dark);
  margin-top: 24px;
  font-style: italic;
}

/* Gallery */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-tab {
  padding: 10px 24px;
  background: none;
  border: 1px solid var(--color-taupe-light);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-tab:hover,
.gallery-tab--active {
  background: var(--color-taupe);
  border-color: var(--color-taupe);
  color: var(--color-warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 59, 50, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(74, 59, 50, 0.1);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blush-light);
  color: var(--color-taupe);
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-social a:hover {
  background: var(--color-taupe);
  color: var(--color-warm-white);
}

.contact-social a svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid rgba(155, 133, 118, 0.25);
  border-radius: 6px;
  background: var(--color-warm-white);
  color: var(--color-text);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-taupe);
  box-shadow: 0 0 0 3px rgba(155, 133, 118, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239B8576' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form .btn {
  align-self: flex-start;
}

/* Footer */
.footer {
  background: var(--color-taupe-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 120px;
  width: auto;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__nav h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
}

.footer__nav a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox--open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .kits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-layout {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(155, 133, 118, 0.1);
    box-shadow: 0 8px 24px rgba(74, 59, 50, 0.1);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .nav__toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle--open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-split,
  .events-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .kits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero__logo {
    width: 340px;
  }

  .included-strip {
    gap: 16px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .kits-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .gallery-tabs {
    flex-wrap: wrap;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Trust Strip */
.trust-strip {
  background: var(--color-blush-light);
  border-bottom: 1px solid rgba(155, 133, 118, 0.12);
  padding: 14px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--color-taupe-dark);
  font-weight: 400;
}

.trust-strip__item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-mauve);
  flex-shrink: 0;
}

.trust-strip__divider {
  color: var(--color-taupe-light);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .trust-strip__divider { display: none; }
  .trust-strip__inner { gap: 10px; }
}

/* Kit card enhancements */
.kit-card--featured {
  position: relative;
  border-color: var(--color-mauve);
  box-shadow: 0 0 0 1px var(--color-mauve);
}

.kit-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-mauve);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

.kit-card__desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: left;
}

/* Events pricing */
.events-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  border: 1px solid rgba(155,133,118,0.15);
}

.events-pricing__rate {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-taupe-dark);
}

.events-pricing__min {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(155, 133, 118, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-taupe-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-family: var(--font-body);
  color: var(--color-mauve);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item--open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  padding-bottom: 20px;
}

/* Email Capture */
.email-capture {
  background: var(--color-taupe-dark);
  padding: 52px 0;
}

.email-capture__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.email-capture__text h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
}

.email-capture__text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.email-capture__fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.email-capture__fields input[type="email"] {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: white;
  outline: none;
  min-width: 240px;
  transition: border-color 0.2s ease;
}

.email-capture__fields input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.email-capture__fields input[type="email"]:focus {
  border-color: rgba(255,255,255,0.5);
}

.email-capture__fields .btn--primary {
  background: var(--color-blush);
  color: var(--color-taupe-dark);
  white-space: nowrap;
}

.email-capture__fields .btn--primary:hover {
  background: var(--color-blush-light);
  color: var(--color-taupe-dark);
}

@media (max-width: 768px) {
  .email-capture__inner { flex-direction: column; align-items: flex-start; }
  .email-capture__fields input[type="email"] { min-width: 100%; }
  .email-capture__fields { width: 100%; flex-direction: column; }
  .email-capture__fields .btn { width: 100%; }
}

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

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

  .kit-card,
  .kit-card__image img,
  .gallery-item img {
    transition: none;
  }

  .kit-card:hover {
    transform: none;
  }

  .kit-card:hover .kit-card__image img,
  .gallery-item:hover img {
    transform: none;
  }
}
