/* ==========================================================================
   shopX Corporate — static site stylesheet
   Converted from the React/Tailwind implementation. Organised by:
   1. Reset & base
   2. Design tokens
   3. Layout containers & buttons
   4. Header / navigation / mobile menu
   5. Hero
   6. Mission
   7. Services
   8. CTA
   9. About page
   10. Team page
   11. Partners page
   12. Contact hero / quick-contact cards
   13. Contact form
   14. FAQ
   15. Social + newsletter
   16. Footer
   17. Keyframe animations
   18. Utilities
   ========================================================================== */

/* 1. Reset & base -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Clash Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}

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

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

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

button,
input,
textarea {
  font-family: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

svg {
  display: block;
}

*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* 2. Design tokens -------------------------------------------------------- */
:root {
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --off-white: #faf9f8;
  --terracotta: #ff6a00;
  --deep-terracotta: #e55f00;
  --warm-gray: #8a8a8a;
  --light-gray: #e8e8e8;
  --mid-gray: #f0efee;

  --max-site: 1440px;
  --max-content: 1200px;
  --max-form: 800px;

  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;

  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-hero: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* 3. Layout containers & buttons ------------------------------------------ */
.container-site {
  max-width: var(--max-site);
  margin-inline: auto;
  padding-inline: 1rem;
}

.container-content {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: 1rem;
}

.container-form {
  max-width: var(--max-form);
  margin-inline: auto;
  padding-inline: 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--charcoal);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  z-index: 2000;
  transition: top 0.2s ease;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background: var(--terracotta);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: #fff;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  font-weight: 500;
}

.section-label.is-block {
  display: block;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.hero-word {
  display: inline-block;
}

/* 4. Header / navigation / mobile menu ------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: background-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  max-width: var(--max-site);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
}

.site-header__logo img {
  height: 72px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__link {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: color 0.25s;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--terracotta);
}

.site-nav__login {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.hamburger-btn {
  display: inline-flex;
  padding: 0.5rem;
}

.hamburger-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--charcoal);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__top img {
  height: 72px;
  width: auto;
}

.mobile-menu__close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--charcoal);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
}

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.25s;
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  color: var(--terracotta);
}

.mobile-nav .btn-primary {
  margin-top: 1rem;
}

/* 5. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}

.hero__watermark {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.hero__watermark svg {
  animation: slow-rotate 120s linear infinite;
  opacity: 0.03;
}

.hero__inner {
  max-width: var(--max-content);
  margin-inline: auto;
  padding: 8rem 1rem 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 10;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 54px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.hero__title-line {
  overflow: hidden;
  display: block;
}

.hero__title .text-terracotta {
  color: var(--terracotta);
}

.hero__subheadline {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 1.625;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.hero__image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.hero__scroll-indicator.is-hidden {
  opacity: 0;
}

.hero__scroll-indicator .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray);
}

.hero__scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__scroll-indicator svg {
  width: 1rem;
  height: 1rem;
  animation: bounce-subtle 2s ease-in-out infinite;
}

/* 6. Mission ---------------------------------------------------------------- */
.mission {
  width: 100%;
  padding: 5rem 0;
  background: #fff;
}

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

.mission__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.mission__text {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.625;
}

.mission__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* 7. Services --------------------------------------------------------------- */
.services {
  width: 100%;
  padding: 5rem 0;
  background: var(--charcoal);
}

.services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.services__grid-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.services__grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}

.service-card {
  background: #fff;
  color: var(--charcoal);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: var(--terracotta);
  color: #fff;
}

.service-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.25rem;
}

.service-card__logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-gray);
  letter-spacing: -0.025em;
  transition: color 0.3s;
}

.service-card:hover .service-card__logo span {
  color: rgba(255, 255, 255, 0.7);
}

.service-card__logo svg {
  width: 20px;
  height: 20px;
}

.shop-mark-rect {
  fill: var(--charcoal);
  transition: fill 0.3s;
}

.service-card:hover .shop-mark-rect {
  fill: #fff;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-card:hover .service-card__title {
  color: #fff;
}

.service-card__body {
  flex: 1;
  transition: color 0.3s;
}

.service-card:hover .service-card__body {
  color: rgba(255, 255, 255, 0.9);
}

.service-card__body p {
  font-size: 0.875rem;
  line-height: 1.625;
}

.service-card__body p.is-strong {
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.service-card__spacer {
  height: 0.75rem;
}

/* 8. CTA ---------------------------------------------------------------------- */
.cta {
  width: 100%;
  padding: 7rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.cta__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta__title .text-terracotta {
  color: var(--terracotta);
}

.cta__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta__stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #000000;
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  justify-content: flex-start;
}

.store-btn span {
  font-size: 10px;
  display: block;
  text-align: left;
  color: #fff;
  opacity: 70%;
  text-transform: uppercase;
  font-weight: 400;
}

.store-btn:hover {
  background: var(--terracotta);
  color: #fff;
}

.store-btn div {
  text-align: left;
}

.store-btn svg {
  width: 2.25rem;
  height: 2.25rem;
}

.cta__seller {
  text-align: center;
}

.seller-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--charcoal);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}

.seller-btn:hover {
  background: var(--terracotta);
  color: #fff;
}

/* 9. About page ----------------------------------------------------------------- */
.about-hero {
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: #fff;
}

.about-hero__inner {
  text-align: center;
}

.about-hero__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.about-hero__text {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.625;
}

.about-cards {
  width: 100%;
  padding-bottom: 5rem;
  background: #fff;
}

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

.about-card {
  background: var(--off-white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: left;
}

.about-card__label {
  display: block;
  margin-bottom: 1rem;
}

.about-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.3rem;
  position: relative;
}

.about-card__title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: #FF6A00;
}

.about-card__text {
  color: var(--warm-gray);
  line-height: 1.625;
  font-size: 1rem;
}

/* 10. Team page -------------------------------------------------------------------- */
.page-hero {
  padding: 8rem 0 5rem;
  background: #fff;
}

.page-hero__inner {
  text-align: center;
}

.page-hero__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.page-hero__text {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 640px;
  margin-inline: auto;
}

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

.team-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  background: #fff;
  transform: translate(0px, 0px) !important;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: var(--terracotta);
}

.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.05);
}

.team-card__info {
  padding: 1.5rem;
  transition: background-color 0.3s;
}

.team-card:hover .team-card__info {
  background: var(--terracotta);
}

.team-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}

.team-card:hover .team-card__name {
  color: #fff;
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.team-card:hover .team-card__role {
  color: rgba(255, 255, 255, 0.8);
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--warm-gray);
  margin-top: 0.75rem;
  line-height: 1.625;
  transition: color 0.3s;
}

.team-card:hover .team-card__bio {
  color: rgba(255, 255, 255, 0.9);
}

/* 11. Partners page ------------------------------------------------------------------ */
.partners-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.partner-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, border-color 0.3s;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.partner-card__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.partner-card__logo {
  flex-shrink: 0;
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card__content {
  flex: 1;
}

.partner-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.partner-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}

.partner-card:hover .partner-card__title {
  color: #fff;
}

.partner-card__title-row svg {
  width: 1rem;
  height: 1rem;
  color: var(--warm-gray);
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}

.partner-card:hover .partner-card__title-row svg {
  opacity: 1;
  color: #fff;
}

.partner-card__desc {
  color: var(--warm-gray);
  line-height: 1.625;
  transition: color 0.3s;
}

.partner-card:hover .partner-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

.become-partner {
  margin-top: 5rem;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: background-color 0.3s, border-color 0.3s;
}

.become-partner:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.become-partner__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.become-partner:hover .become-partner__title {
  color: #fff;
}

.become-partner__text {
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto 2rem;
  transition: color 0.3s;
}

.become-partner:hover .become-partner__text {
  color: rgba(255, 255, 255, 0.9);
}

.become-partner:hover .btn-primary {
  background: #fff;
  color: var(--charcoal);
}

/* 12. Contact hero / quick-contact cards ------------------------------------------------ */
.contact-hero {
  width: 100%;
  padding: 8rem 0 3rem;
  background: #fff;
}

.contact-hero__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.contact-hero__text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.625;
  max-width: 640px;
  margin-inline: auto;
}

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

.quick-contact__card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.quick-contact__card .section-label {
  color: #8A8A8A;
}

.quick-contact__icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.quick-contact__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
}

.quick-contact__label {
  display: block;
  margin-bottom: 0.5rem;
}

.quick-contact__value {
  color: var(--charcoal);
  font-weight: 600;
  transition: color 0.2s;
}

a.quick-contact__value:hover {
  color: var(--terracotta);
}

/* 13. Contact form ------------------------------------------------------------------------- */
.contact-form-section {
  width: 100%;
  padding-bottom: 5rem;
  background: #fff;
}

.contact-form-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-form-section__subtitle {
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
}

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

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

.field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--charcoal);
}

.form-field br {
  display: none;
}

.form-field {
  margin-bottom: 20px;
}

.form-field input[type='text'],
.form-field input[type='email'],
.form-field textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
  color: var(--charcoal);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #f87171;
}

.field-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

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

.inquiry-option input[type='radio'] {
  accent-color: #ef4444;
  margin: 0;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.inquiry-option input[type='radio']:focus{
  border-color: #ef4444;
  box-shadow: none;
}

.inquiry-option label{
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1rem;
}

.inquiry-option .wpcf7-list-item{
  margin: 0;
  margin-right: 25px;
}

.contact-form .btn-primary {
  width: 100%;
}

.contact-form .btn-primary.is-loading {
  opacity: 0.9;
  cursor: progress;
}

.contact-form .btn-primary.is-success {
  background: #16a34a;
}

.contact-form .btn-primary:disabled {
  cursor: not-allowed;
}

.btn-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: spin 0.6s linear infinite;
}

.btn-check {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

/* 14. FAQ ----------------------------------------------------------------------------------- */
.faq {
  width: 100%;
  padding: 5rem 0;
  background: var(--off-white);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.faq-item__question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-right: 1rem;
}

.faq-item__chevron {
  flex-shrink: 0;
  display: flex;
  transition: transform 0.3s;
  color: var(--warm-gray);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__chevron svg {
  width: 1rem;
  height: 1rem;
}

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

.faq-item__panel-inner {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__panel-inner p {
  color: var(--warm-gray);
  line-height: 1.625;
}

/* 15. Social + newsletter ---------------------------------------------------------------------- */
.social-subscribe {
  width: 100%;
  padding: 5rem 0;
  background: var(--off-white);
}

.social-subscribe__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.social-subscribe__block {
  text-align: center;
}

.social-subscribe__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.social-subscribe__text {
  color: var(--warm-gray);
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-inline: auto;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.social-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  font-size: 1rem;
}

.newsletter-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.newsletter-form input[type="submit"]:hover {
  background: var(--terracotta);
  color: #fff;
}


.newsletter-form input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.newsletter-form button {
  white-space: nowrap;
}

/* 16. Footer -------------------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: #fff;
}

.site-footer__inner {
  max-width: var(--max-site);
  margin-inline: auto;
  padding: 4rem 1rem 2rem;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__brand img {
  height: 3.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

.site-footer__brand p {
  font-size: 0.875rem;
  color: var(--warm-gray);
}

.site-footer__brand p+p {
  margin-top: 0.25rem;
}

.site-footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.site-footer__col .menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__col-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.site-footer__col a,
.site-footer__col button {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  transition: color 0.2s;
}

.site-footer__col a:hover,
.site-footer__col button:hover {
  color: #fff;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__copyright {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

.site-footer__contacts {
  display: flex;
  gap: 1.5rem;
}

.site-footer__contacts a {
  font-size: 0.75rem;
  color: var(--warm-gray);
  transition: color 0.2s;
}

.site-footer__contacts a:hover {
  color: #fff;
}

/* 17. Keyframe animations ------------------------------------------------------------------------------- */
@keyframes slow-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 18. Utilities ------------------------------------------------------------------------------------------ */
.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;
}

/* 16. Privacy Policy -------------------------------------------------------------------------------------- */
body.privacy-policy {padding: 0;}
.privacy-policy {
  padding: 4.5rem 0 5rem;
  background: #FAF9F8;
}
.privacy-policy br{display: none;}
.privacy-policy .top-small-title{
  font-size: 12px;
  color: #FF6A00;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.privacy-policy h1{
  font-size: 48px;
  color: #1A1A1A;
  font-weight: 600;
  margin-bottom: 15px;
}
.privacy-policy .backto-home a{
  color: #1A1A1A99;
  font-size: 14px;
  position: relative;
  font-weight: 400;
  opacity: 60%;
  display: inline-block;
  padding-left: 25px;
}
.privacy-policy .backto-home a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-image: url('../images/back-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.privacy-policy .backto-home a:hover{
  opacity: 100%;
}
.privacy-policy .backto-home {
  margin-bottom: 30px;
}
.privacy-policy .privacy-box{margin-bottom: 30px;}
.privacy-policy h2{
  color: #1A1A1A;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.privacy-policy h2::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 48px;
  background-color: #FF6A00;
}
.privacy-policy p{
  color: rgba(26, 26, 26, 0.7);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.privacy-policy p strong{
  color: rgba(26, 26, 26, 1);
  font-weight: 500;
}
.privacy-policy h3{
  color: rgba(26, 26, 26, 1);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.privacy-policy h4{
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.privacy-policy .info-officer-table{
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.privacy-policy .info-officer-table div{
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.privacy-policy .info-officer-table div strong{
  color: rgba(26, 26, 26, 1);
  font-weight: 500;
}
.privacy-policy .info-officer-table .w-50{width: 100%;}
.privacy-policy .info-officer-table .w-100{width: 100%;}
.privacy-policy h6{
  color: rgba(26, 26, 26, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}

.required-asterisk {
  color: #e02424;
  font-size: 20px;
  margin-left: 2px;
  line-height: 1;
  vertical-align: middle;
}

/* ==========================================================================
   Responsive breakpoints (mobile-first overrides)
   sm: 640px · md: 768px · lg: 1024px · xl: 1280px
   ========================================================================== */

/* ---- sm (>= 640px) ---- */
@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
  }

  .services__grid-top,
  .services__grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta__stores {
    flex-direction: row;
  }

  .store-btn {
    width: auto;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-options {
    flex-direction: row;
    gap: 1.5rem;
  }

  .contact-form .btn-primary {
    width: auto;
    min-width: 200px;
  }

  .newsletter-form {
    flex-direction: row;
  }

}

/* ---- md (>= 768px) ---- */
@media (min-width: 768px) {

  .container-site,
  .container-content,
  .container-form {
    padding-inline: 2rem;
  }

  .site-nav {
    display: flex;
  }

  .hamburger-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero__title {
    font-size: 80px;
  }

  .hero__subheadline {
    font-size: 1.25rem;
  }

  .mission {
    padding: 7rem 0;
  }

  .mission__title {
    font-size: 52px;
  }

  .mission__text {
    font-size: 1.125rem;
  }

  .services {
    padding: 7rem 0;
  }

  .services__header h2 {
    font-size: 1.875rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-card__logo span {
    font-size: 1.5rem;
  }

  .service-card__logo svg {
    width: 24px;
    height: 24px;
  }

  .service-card__title {
    font-size: 1.25rem;
  }

  .cta {
    padding: 9rem 0;
  }

  .cta__title {
    font-size: 52px;
  }

  .cta__subtitle {
    font-size: 1.25rem;
  }

  .about-cards {
    padding-bottom: 7rem;
  }

  .about-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card {
    padding: 2.5rem;
  }

  .about-card__title {
    font-size: 1.75rem;
  }

  .page-hero__title {
    font-size: 52px;
  }

  .quick-contact {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-form-section {
    padding-bottom: 7rem;
  }

  .contact-form-section__title {
    font-size: 1.75rem;
  }

  .partner-card {
    padding: 2.5rem;
  }

  .partner-card__inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }

  .partner-card__logo {
    width: 12rem;
  }

  .partner-card__title {
    font-size: 1.5rem;
  }

  .become-partner {
    padding: 3.5rem;
  }

  .become-partner__title {
    font-size: 1.875rem;
  }

  .contact-hero__text {
    font-size: 1.125rem;
  }

  .faq {
    padding: 7rem 0;
  }

  .faq__header h2 {
    font-size: 1.75rem;
  }

  .social-subscribe__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-subscribe__block {
    text-align: left;
  }

  .social-subscribe__title {
    font-size: 1.875rem;
  }

  .social-subscribe__text {
    margin-inline: 0;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .site-footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .privacy-policy .info-officer-table .w-50{width: 48%;}
}

/* ---- lg (>= 1024px) ---- */
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem;
  }

  .hero__content {
    grid-column: span 3;
  }

  .hero__image {
    grid-column: span 2;
  }

  .mission__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .services__grid-top {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .services__grid-bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

/* ---- xl (>= 1280px) ---- */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 114px;
  }

  .mission__title {
    font-size: 62px;
  }

  .cta__title {
    font-size: 62px;
  }

  .about-hero__title,
  .page-hero__title,
  .contact-hero__title {
    font-size: 62px;
  }
}