@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Jost:wght@400;500;600&display=swap');

.astro-page {
  /* ---- Design tokens ---- */
  --white: #FFFFFF;
  --orange: #F57C00;
  --orange-deep: #C4620A;
  --orange-tint: #FDECD9;
  --ink: #222222;
  --ink-soft: #5B5955;
  --surface: #FAFAFA;
  --line: #ECE7E1;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  color: var(--ink);
  font-family: var(--font-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.astro-page * {
  box-sizing: border-box;
}

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

.astro-page a {
  color: inherit;
  text-decoration: none;
}

/* Shared type utilities ---------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.eyebrow--center {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 1.4rem;
  color: var(--ink);
  position: relative;
}

.section-title--center {
  text-align: center;
}

.glyph {
  color: var(--orange);
  font-size: .95em;
}

/* Buttons -------------------------------------------------------------- */
.btn {
  --btn-h: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  height: var(--btn-h);
  padding: 0 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(245, 124, 0, .55);
}

.btn--primary .btn__arrow {
  transition: transform .35s var(--ease);
}

.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(196, 98, 10, .55);
}

.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--outline {
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
  border-color: rgba(34, 34, 34, .16);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
  transform: translateY(-3px);
  background: var(--white);
}

/* ==========================================================================
   SECTION 1 — BREADCRUMB BANNER
   ========================================================================== */
.banner {
  position: relative;
  min-height: 350px;
  height: 42vw;
  max-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.banner__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: -2;
}

/* very light shadow only — original image colours stay intact */
.banner__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, 0) 75%);
}

.banner__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 3rem;
  color: var(--white);
}

.banner__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .9rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.banner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  margin: 0 0 1.1rem;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .35);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: 0;
  font-size: .92rem;
  font-weight: 500;
}

.breadcrumb a {
  opacity: .85;
  transition: opacity .25s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb li[aria-current] {
  color: var(--orange);
  font-weight: 600;
}

.breadcrumb__sep {
  color: var(--orange);
  font-size: .7rem;
  opacity: .9;
}

/* ==========================================================================
   SECTION 2 — CONTENT SPLIT
   ========================================================================== */
.story {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
}

.story__container {
  max-width: var(--container);
  margin: 0 auto;
 /* display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;*/
}

.story__media {
  position: relative;
  padding: 1.6rem 1.2rem 1.6rem 0;
}

.story__ring {
  position: absolute;
  top: -1.4rem;
  left: -1.6rem;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid var(--orange);
  opacity: .35;
  border-radius: 50%;
  z-index: 0;
}

.story__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -25px rgba(34, 34, 34, .35), 0 0 0 8px var(--white);
}

.story__img--float {
  animation: float 6s ease-in-out infinite;
}

.story__badge {
  position: absolute;
  bottom: .6rem;
  right: -1rem;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow: 0 20px 40px -18px rgba(34, 34, 34, .4);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  border-bottom: 3px solid var(--orange);
}

.story__badge strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--orange-deep);
}

.story__badge em {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story__content p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0 0 1.1rem;
  max-width: 130ch;
}

.feature-list {
  list-style: none;
  margin: 1.6rem 0 2.1rem;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .98rem;
  color: var(--ink);
}

.feature-list__mark {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-deep);
  font-size: .68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .15rem;
}

@keyframes float {

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

  50% {
    transform: translateY(-14px);
  }
}



/* ==========================================================================
   SECTION 4 — WHY CHOOSE US
   ========================================================================== */
.choose {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(5rem, 9vw, 8rem);
  background: var(--white);
}

.choose__head {
  max-width: var(--container);
  margin: 0 auto 3rem;
}

.choose__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem 2.1rem;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease, background .4s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -25px rgba(34, 34, 34, .28);
  border-color: transparent;
  background: var(--white);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__ring {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  opacity: .18;
  transition: transform .5s var(--ease);
}

.card:hover .card__ring {
  transform: scale(1.25) rotate(20deg);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-deep);
  margin-bottom: 1.3rem;
  transition: background .35s ease, color .35s ease, transform .35s var(--ease);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card:hover .card__icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0 0 .6rem;
  color: var(--ink);
}

.card p {
  margin: 0;
  font-size: .93rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATION (JS toggles .in-view)
   ========================================================================== */
[data-animate] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-animate="rise"] {
  transform: translateY(28px);
}

[data-animate="fade-up"] {
  transform: translateY(20px);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .story__img--float {
    animation: none;
  }

  .banner__bg {
    transform: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .story__container {
    grid-template-columns: 1fr;
  }

  .story__media {
    padding: 0 0 2.5rem;
    max-width: 460px;
    margin: 0 auto;
  }

  .story__img {
    height: 380px;
  }

  
}

@media (max-width: 640px) {
  .banner {
    min-height: 320px;
    height: auto;
    padding-top: 30vw;
  }

  .breadcrumb ol {
    font-size: .82rem;
  }

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



  .story__badge {
    right: 0;
    bottom: -1rem;
  }
}