.elementor-11579 .elementor-element.elementor-element-0f4e370{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-685a4d9 *//* =================================================================
   INSPO — About Us
   Design tokens + component styles
   ================================================================= */

:root {
  /* Brand colors */
  --color-primary: #7B1FA2;      /* Royal Purple */
  --color-secondary: #9C27B0;    /* Elegant Purple */
  --color-gold: #D4AF37;         /* Royal Gold — accent only */
  --color-gold-soft: #E6C76B;    /* Soft Gold */

  /* Backgrounds */
  --bg-ivory: #FFFDF8;
  --bg-warm: #F8F7F4;
  --bg-lavender: #F7F2FB;

  /* Text */
  --text-dark: #2D2235;
  --text-muted: #6F6678;
  --text-on-dark: #FFFDF8;

  /* Type */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container-width: 1320px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.6s;
  --dur-slow: 1s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
}

p { line-height: 1.75; color: var(--text-muted); margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
em { color: var(--color-primary); font-style: normal; font-weight: 600; }

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

button { font-family: var(--font-body); cursor: pointer; }

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

/* Respect reduced-motion preference across the whole page */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------------------
   Eyebrow / section heading helpers
   ----------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 14px;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }

/* -----------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--text-on-dark);
  box-shadow: 0 8px 22px rgba(123, 31, 162, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(123, 31, 162, 0.36), 0 0 0 1px var(--color-gold-soft);
}
.btn-primary svg { transition: transform var(--dur-fast) var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(45, 34, 53, 0.25);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.18);
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------
   Header
   ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 34, 53, 0.08);
  transition: box-shadow var(--dur-fast) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(45, 34, 53, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.logo-mark { width: 26px; height: 26px; display: inline-flex; }
.logo-word {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.main-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: right var(--dur-fast) var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.icon-btn:hover { background: var(--bg-lavender); color: var(--color-primary); }
.bag-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--text-dark);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  padding: 0;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  margin-inline: auto;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -----------------------------------------------------------------
   Section 1 — About Hero
   ----------------------------------------------------------------- */
.about-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(45, 34, 53, 0.82) 0%, rgba(123, 31, 162, 0.55) 45%, rgba(247, 242, 251, 0.25) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 140px 100px;
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 253, 248, 0.75);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255, 253, 248, 0.75); }
.breadcrumb a:hover { color: var(--color-gold-soft); }
.breadcrumb [aria-current] { color: var(--bg-ivory); }

.about-hero .eyebrow { color: var(--color-gold-soft); }

.about-hero__title {
  color: var(--bg-ivory);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  margin-bottom: 22px;
}

.about-hero__intro {
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.05rem;
  max-width: 540px;
}

/* Signature gem motif — soft glow, echoes through the page */
.about-hero__gem {
  position: absolute;
  right: clamp(-10px, 4vw, 60px);
  bottom: clamp(-20px, -2vw, 20px);
  width: clamp(90px, 12vw, 150px);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
.gem-line {
  fill: none;
  stroke: var(--color-gold-soft);
  stroke-width: 1;
  filter: drop-shadow(0 0 6px rgba(230, 199, 107, 0.55));
  animation: gemGlow 4.5s ease-in-out infinite;
}
@keyframes gemGlow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

/* -----------------------------------------------------------------
   Section 2 — Our Story
   ----------------------------------------------------------------- */
.our-story {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--bg-ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.story-media:hover img { transform: scale(1.045); }
.story-media__frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  pointer-events: none;
}

.story-content h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 22px; }
.story-content p { margin-bottom: 1.3em; }
.story-content .btn { margin-top: 12px; }

/* -----------------------------------------------------------------
   Section 3 — Why Choose Inspo
   ----------------------------------------------------------------- */
.why-inspo {
  padding-block: clamp(80px, 10vw, 130px);
  background: var(--bg-lavender);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(45, 34, 53, 0.07);
  border-radius: 10px;
  padding: 40px 28px;
  text-align: left;
  transition: transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 31, 162, 0.14);
  border-color: var(--color-gold-soft);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 22px;
  background: var(--bg-lavender);
  color: var(--color-primary);
  transition: background var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--color-gold-soft), var(--color-gold));
  color: var(--text-dark);
}

.feature-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.92rem; margin-bottom: 0; }

/* -----------------------------------------------------------------
   Section 4 — Craftsmanship & CTA
   ----------------------------------------------------------------- */
.craft-cta {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--bg-warm);
}

.craft-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.craft-media {
  border-radius: 4px;
  overflow: hidden;
}
.craft-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.craft-media:hover img { transform: scale(1.045); }

.craft-content h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 22px; }
.craft-content p { margin-bottom: 1.3em; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

/* -----------------------------------------------------------------
   Footer
   ----------------------------------------------------------------- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 253, 248, 0.7);
  padding-block: 56px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand .logo-word { color: var(--bg-ivory); font-size: 1.4rem; }
.footer-brand p { color: rgba(255, 253, 248, 0.55); font-size: 0.88rem; margin-top: 6px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 0.88rem; color: rgba(255, 253, 248, 0.75); }
.footer-links a:hover { color: var(--color-gold-soft); }
.footer-copy { font-size: 0.8rem; color: rgba(255, 253, 248, 0.45); width: 100%; text-align: center; margin-top: 8px; }

/* -----------------------------------------------------------------
   Reveal-on-scroll animation (fade + slide up)
   ----------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children within a section slightly */
.about-hero__content .reveal:nth-child(2) { transition-delay: 0.05s; }
.about-hero__content .reveal:nth-child(3) { transition-delay: 0.15s; }
.about-hero__content .reveal:nth-child(4) { transition-delay: 0.25s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */

/* Laptop / small desktop */
@media (max-width: 1180px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: var(--bg-ivory);
    border-bottom: 1px solid rgba(45, 34, 53, 0.08);
    box-shadow: 0 16px 30px rgba(45, 34, 53, 0.08);
  }
  .main-nav.is-open ul {
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 20px;
  }
  .main-nav.is-open li { border-bottom: 1px solid rgba(45, 34, 53, 0.06); }
  .main-nav.is-open a { display: block; padding: 14px 0; }

  .story-grid,
  .craft-grid {
    grid-template-columns: 1fr;
  }
  .craft-grid .craft-media { order: -1; }

  .about-hero { min-height: 560px; }
  .about-hero__content { padding-block: 120px 80px; }
}

/* Mobile */
@media (max-width: 640px) {
  .header-inner { height: 72px; }
  .logo-word { font-size: 1.35rem; }
  .icon-btn:nth-child(2) { display: none; } /* trim to essentials on very small screens */

  .about-hero { min-height: 520px; }
  .about-hero__content { padding-block: 100px 64px; }
  .about-hero__intro { font-size: 0.98rem; }

  .section-heading { margin-bottom: 40px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px 24px; }

  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }

  .about-hero__gem { width: 70px; opacity: 0.4; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

/* Extra small */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
  .about-hero__title { font-size: 2rem; }
  .btn { padding: 0 22px; font-size: 0.88rem; }
}/* End custom CSS */