/* =========================================================
   AASHISH-TIMSINA.COM.NP — ROMANTIC LANDING PAGE
   ========================================================= */

:root {
  --bg: #fbf6f3;
  --bg-soft: #f7e9e8;
  --surface: rgba(255, 255, 255, 0.64);
  --surface-solid: #fffaf8;
  --text: #342a2d;
  --muted: #806f73;
  --accent: #b85c73;
  --accent-dark: #8e4056;
  --accent-soft: #edd0d7;
  --gold: #a98558;
  --border: rgba(120, 78, 88, 0.14);
  --shadow: 0 25px 70px rgba(91, 48, 61, 0.10);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  --radius: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(237, 208, 215, 0.55), transparent 25rem),
    radial-gradient(circle at 90% 25%, rgba(234, 222, 207, 0.42), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

button {
  font: inherit;
}

::selection {
  background: var(--accent-soft);
  color: var(--text);
}

/* ---------- Loader ---------- */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: var(--bg);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-heart {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  animation: heartbeat 1.1s infinite;
}

.page-loader p {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Global ---------- */

.section {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  padding: 130px 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-number {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 65px;
}

.section-heading h2,
.section-narrow h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.heading-note {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: right;
}

.section-narrow {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-narrow h2 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.section-narrow em,
.letter-body em {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
}

.large-copy {
  max-width: 650px;
  margin: 38px auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.45;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 42px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding-block: 16px;
  background: rgba(251, 246, 243, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(74, 43, 52, 0.06);
}

.logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.logo span {
  color: var(--accent);
  font-size: 0.75em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 100vh;
  padding-top: 160px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 600;
  line-height: 0.74;
  letter-spacing: -0.065em;
}

.hero h1 .script-name {
  color: var(--accent);
  font-style: italic;
}

.hero h1 .soft {
  color: #756368;
  font-size: 0.58em;
  font-weight: 500;
}

.hero-text {
  max-width: 470px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 16px 21px 16px 24px;
  border: 0;
  border-radius: 100px;
  background: var(--text);
  color: white;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(52, 42, 45, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 38px rgba(52, 42, 45, 0.2);
}

.btn-heart {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1.1rem;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 80px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-hint .line {
  width: 60px;
  height: 1px;
  background: var(--accent-soft);
}

.hero-polaroid {
  position: relative;
  justify-self: center;
  width: min(390px, 80%);
  transform: rotate(5deg);
}

.polaroid-inner {
  padding: 14px 14px 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.polaroid-inner p {
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 1.3rem;
  text-align: center;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 92, 115, 0.12), rgba(169, 133, 88, 0.14)),
    #eadcdf;
  color: rgba(80, 57, 64, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-polaroid .placeholder-photo {
  min-height: 390px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  top: 15%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: rgba(236, 208, 214, 0.42);
}

.orb-two {
  bottom: 3%;
  left: -12%;
  width: 300px;
  height: 300px;
  background: rgba(228, 216, 198, 0.34);
}

/* ---------- Story ---------- */

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

.story-card {
  position: relative;
  min-height: 380px;
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(15px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.story-card.featured {
  background: linear-gradient(145deg, #f3dce1, #f9e9e7);
  transform: translateY(-25px);
}

.story-card.featured:hover {
  transform: translateY(-33px);
}

.story-icon {
  margin-bottom: 65px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 2.1rem;
}

.card-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
}

.story-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.date-label {
  position: absolute;
  right: 35px;
  bottom: 32px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
}

/* ---------- Memories ---------- */

.memories {
  position: relative;
}

.memory-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.memory {
  margin: 0;
}

.memory-large {
  grid-row: span 2;
}

.memory-wide {
  grid-column: span 2;
}

.memory .placeholder-photo {
  min-height: 280px;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.memory-large .placeholder-photo {
  height: 100%;
  min-height: 580px;
}

.memory-wide .placeholder-photo {
  min-height: 240px;
}

.memory:hover .placeholder-photo {
  transform: scale(1.015);
}

.photo-1 {
  background: linear-gradient(145deg, #ead4d9, #e5d7c5);
}

.photo-2 {
  background: linear-gradient(145deg, #dfd0dc, #f0ddd7);
}

.photo-3 {
  background: linear-gradient(145deg, #eadfcf, #e7ced6);
}

.photo-4 {
  background: linear-gradient(145deg, #ded4ca, #edd5db);
}

.memory figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 5px;
}

.memory figcaption strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.memory figcaption span {
  color: var(--muted);
  font-size: 0.68rem;
}

/* ---------- Little Things ---------- */

.little-things {
  max-width: 1100px;
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--border);
}

.thing {
  min-height: 270px;
  padding: 30px 25px;
  border-right: 1px solid var(--border);
}

.thing:last-child {
  border-right: 0;
}

.thing-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.thing h3 {
  margin: 70px 0 12px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
}

.thing p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

/* ---------- Timeline ---------- */

.timeline-section {
  max-width: 900px;
}

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 55px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 1px;
  background: var(--accent-soft);
  content: "";
}

.timeline-item {
  position: relative;
  padding-bottom: 75px;
}

.timeline-dot {
  position: absolute;
  top: 5px;
  left: -50px;
  width: 21px;
  height: 21px;
  border: 5px solid var(--bg);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.timeline-content span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.timeline-content h3 {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: 2.4rem;
}

.timeline-content p {
  max-width: 550px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---------- Letter ---------- */

.letter {
  max-width: 900px;
  padding-bottom: 160px;
}

.letter-card {
  position: relative;
  padding: clamp(45px, 8vw, 90px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 208, 215, 0.48), transparent 25rem),
    var(--surface-solid);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.letter-decoration {
  position: absolute;
  top: 25px;
  right: 45px;
  color: var(--accent-soft);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.letter-card h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 600;
}

.letter-body {
  max-width: 650px;
  margin-top: 35px;
}

.letter-body p {
  margin-bottom: 25px;
  color: #66575b;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.65;
}

.letter-body .signature {
  margin-top: 50px;
  color: var(--text);
}

.signature span {
  color: var(--accent);
  font-size: 2rem;
  font-style: italic;
}

.letter-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.footer {
  padding: 55px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p:first-child {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.footer p:first-child span {
  color: var(--accent);
}

.footer-small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

/* ---------- Surprise ---------- */

.surprise-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(48, 34, 39, 0.58);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.surprise-overlay.open {
  opacity: 1;
  visibility: visible;
}

.surprise-card {
  position: relative;
  width: min(560px, 100%);
  padding: 65px 45px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 34px;
  background: #fff9f6;
  text-align: center;
  box-shadow: 0 35px 100px rgba(30, 20, 24, 0.28);
  transform: translateY(25px) scale(0.97);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.surprise-overlay.open .surprise-card {
  transform: translateY(0) scale(1);
}

.close-surprise {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.7rem;
  cursor: pointer;
}

.big-heart {
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  animation: heartbeat 1.4s infinite;
}

.surprise-card h2 {
  margin: 15px auto;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
}

.surprise-card > p:not(.eyebrow) {
  max-width: 410px;
  margin: 20px auto;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Floating hearts ---------- */

.floating-hearts {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  bottom: -30px;
  color: var(--accent);
  opacity: 0;
  animation: floatUp linear forwards;
}

/* ---------- Cursor ---------- */

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(237, 208, 215, 0.17);
  filter: blur(20px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* ---------- Animations ---------- */

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.12); }
  30% { transform: scale(1); }
  45% { transform: scale(1.07); }
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) scale(0.8);
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) rotate(35deg) scale(1.2);
  }
}

/* ---------- Responsive ---------- */

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

  .site-header {
    padding: 18px 24px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 75px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 250, 248, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 140px;
  }

  .hero h1 {
    font-size: clamp(5rem, 19vw, 8rem);
  }

  .hero-polaroid {
    width: min(350px, 82%);
  }

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

  .story-card {
    min-height: 330px;
  }

  .story-card.featured,
  .story-card.featured:hover {
    transform: none;
  }

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

  .memory-large {
    grid-row: span 1;
  }

  .memory-large .placeholder-photo {
    min-height: 420px;
  }

  .memory-wide {
    grid-column: span 2;
  }

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

  .thing:nth-child(2) {
    border-right: 0;
  }

  .thing:nth-child(3),
  .thing:nth-child(4) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .section {
    width: min(100% - 32px, var(--container));
    padding: 75px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .heading-note {
    margin-top: 25px;
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 24vw;
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .scroll-hint {
    margin-top: 55px;
  }

  .hero-polaroid {
    width: 86%;
  }

  .hero-polaroid .placeholder-photo {
    min-height: 320px;
  }

  .section-heading h2,
  .section-narrow h2 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .memory-grid {
    display: block;
  }

  .memory {
    margin-bottom: 25px;
  }

  .memory-large .placeholder-photo,
  .memory .placeholder-photo,
  .memory-wide .placeholder-photo {
    min-height: 320px;
    height: auto;
  }

  .memory figcaption {
    display: block;
  }

  .memory figcaption span {
    display: block;
    margin-top: 5px;
  }

  .things-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .thing {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .thing:nth-child(2),
  .thing:nth-child(3),
  .thing:nth-child(4) {
    border-top: 0;
  }

  .thing:last-child {
    border-bottom: 0;
  }

  .thing h3 {
    margin-top: 45px;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline-dot {
    left: -35px;
  }

  .letter-card {
    padding: 45px 27px;
    border-radius: 27px;
  }

  .letter-decoration {
    right: 20px;
    font-size: 6rem;
  }

  .letter-body p {
    font-size: 1.18rem;
  }

  .surprise-card {
    padding: 55px 25px 45px;
  }

  .cursor-glow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ---------- Real photo integration ---------- */

.placeholder-photo {
  position: relative;
  overflow: hidden;
}

.placeholder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.hero-polaroid .placeholder-photo img {
  min-height: 390px;
}

.memory:hover .placeholder-photo img,
.hero-polaroid:hover .placeholder-photo img {
  transform: scale(1.035);
}

.timeline-photo {
  width: min(100%, 420px);
  height: 250px;
  margin: 18px 0 22px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(91, 48, 61, 0.10);
}

.timeline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.timeline-item:hover .timeline-photo img {
  transform: scale(1.025);
}

.little-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 18px;
  margin-top: 30px;
}

.little-photo {
  height: 270px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(91, 48, 61, 0.09);
}

.little-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.little-photo:hover img {
  transform: scale(1.035);
}

@media (max-width: 900px) {
  .timeline-photo {
    height: 230px;
  }

  .little-photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .little-photo:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .timeline-photo {
    width: 100%;
    height: 230px;
  }

  .little-photo-strip {
    grid-template-columns: 1fr;
  }

  .little-photo,
  .little-photo:last-child {
    grid-column: auto;
    height: 260px;
  }
}
