/* outside.css */

/* Section color tokens */
:root {
  --alpine: 210 60% 55%;     /* blue */
  --forest: 145 45% 45%;    /* green */
  --graphite: 220 10% 50%;  /* neutral */
}

/* Colors For Sections */

.outside-hero {
  background: linear-gradient(
    180deg,
    hsl(var(--graphite) / 0.10),
    transparent
  );
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
}

.concept:first-of-type {
  background: linear-gradient(
    180deg,
    hsl(var(--alpine) / 0.14),
    hsl(var(--alpine) / 0.04)
  );
}

.concept:last-of-type {
  background: linear-gradient(
    180deg,
    hsl(var(--forest) / 0.14),
    hsl(var(--forest) / 0.04)
  );
}

.bridge {
  background: linear-gradient(
    180deg,
    hsl(var(--graphite) / 0.10),
    hsl(var(--graphite) / 0.03)
  );
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
}



/* Colors For Sections */


.outside {
  padding: clamp(28px, 4vw, 56px) 0;
}

.outside-hero__content {
  margin: 0 50px;
}


.outside-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 44px);
}


.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 10px;
}

.outside-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.lede {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0 0 18px;
  max-width: 60ch;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 0.9rem;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.outside-hero__visual {
  position: sticky;
  top: 90px;
}

.hero-card {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.hero-card__top {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}

.hero-card__body {
  padding: 16px 16px 18px;
}

.mini-title {
  margin: 0 0 10px;
  opacity: 0.85;
  font-size: 0.95rem;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
  opacity: 0.95;
}



/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.polaroid {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
  padding: 10px 10px 12px;
  transform-origin: center;
}

.polaroid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.polaroid figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.tilt-1 { transform: rotate(-2deg); }
.tilt-2 { transform: rotate(1.5deg); }
.tilt-3 { transform: rotate(-1deg); }
.tilt-4 { transform: rotate(2deg); }

/* Concepts */
.concepts {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: clamp(28px, 4vw, 54px);
}

.concept {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
}

.concept h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.concept p {
  margin: 0 0 16px;
  line-height: 1.65;
  max-width: 75ch;
  opacity: 0.92;
}

.concept__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.concept__item {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 14px 14px 16px;
}

.concept__item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.concept__item p {
  margin: 0;
  opacity: 0.9;
}

/* Bridge section */
.bridge {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.bridge__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.bridge-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 14px 14px 16px;
}

.bridge-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.bridge-card p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.55;
}

.checklist {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: clamp(16px, 3vw, 22px);
  position: sticky;
  top: 90px;
}

.checklist h3 {
  margin: 0 0 10px;
}

.checklist__group {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.checklist__title {
  margin: 0 0 8px;
  font-weight: 600;
  opacity: 0.9;
}

.checklist ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
  opacity: 0.92;
}

/* Gallery */
.gallery__header {
  margin-bottom: 14px;
}

.gallery__header h2 {
  margin: 0 0 6px;
}

.gallery__header p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 70ch;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.gallery__item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  display: block;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make the grid feel “designed” */
.gallery__item:nth-child(1) { grid-column: span 7; aspect-ratio: 16 / 9; }
.gallery__item:nth-child(2) { grid-column: span 5; aspect-ratio: 4 / 5; }
.gallery__item:nth-child(3) { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery__item:nth-child(4) { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery__item:nth-child(5) { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery__item:nth-child(6) { grid-column: span 12; aspect-ratio: 21 / 9; }

/* Responsive */
@media (max-width: 900px) {
  .outside-hero,
  .bridge {
    grid-template-columns: 1fr;
  }

  .outside-hero__visual,
  .checklist {
    position: static;
  }

  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept__grid,
  .bridge__cards {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery__item:nth-child(1) { grid-column: span 6; }
  .gallery__item:nth-child(2) { grid-column: span 6; }
  .gallery__item:nth-child(3) { grid-column: span 3; }
  .gallery__item:nth-child(4) { grid-column: span 3; }
  .gallery__item:nth-child(5) { grid-column: span 6; }
  .gallery__item:nth-child(6) { grid-column: span 6; }
}

@media (max-width: 520px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .bridge__left h2 {
  margin: 0 50px;
}
.lede{
    margin: 20px 0px;
}
}
