/* ════════ FONTS ════════ */
/* Local WOFF2 fonts from Google Fonts
   Cormorant Garamond - Licensed under SIL Open Font License (OFL)
   Jost - Licensed under SIL Open Font License (OFL) */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ════════ ROOT & BASE ════════ */
:root {
  --sage: #4c5c40;
  --sage-light: #8a9a7b;
  --sage-pale: #b8c8a8;
  --sage-wash: #c0dcc2;
  --earth: #4e3c2c;
  --earth-light: #706050;
  --cream: #fffde8;         /* main background — warm yellow */
  --warm-white: #fffef5;    /* near-white yellow for cards */
  --petal: #d4a0a0;
  --petal-light: #e8c8c8;
  --petal-pale: #f5e8e8;
  --gold: #c4a265;
  --gold-light: #dcc9a0;
  --text: #3d3632;
  --text-light: #504540;
  --text-muted: #6a5e56;
  /* Yellow palette */
  --bg-hero:       #fffde8;   /* lightest warm yellow — body base */
  --bg-ueber:      #fef9cb;   /* Über mich */
  --bg-energetik:  #fef3a3;   /* Energetik */
  --bg-malerei:    #fef6b8;   /* Malerei */
  --bg-garten:     #fde97e;   /* Garten — golden */
  --bg-quote:      #fffde8;   /* Quote — near-white yellow */
  /* Contact / bottom */
  --pink-contact:  #bd4f7d;
}

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

html { scroll-behavior: smooth; }

button,
a[href][style*="border-radius"] {
  position: relative;
  z-index: 9999;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg-hero);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Flower watermark ─── */
/* Uses mom's own flower painting (image002) as a fixed background watermark.
   Sits just below the grain overlay (z-index 9999) and above all sections.
   pointer-events:none means it never blocks clicks. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url('images/bgrose.jpg') center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* ─── Decorative Grain Overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── Typography ─── */
h1, h2, h3, .nav-link {
  font-family: 'Cormorant Garamond', serif;
}

h1, h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--earth);
  letter-spacing: 0.03em;
}

p {
  font-size: 1.05rem;
  max-width: 60ch;
  color: var(--text-light);
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(255, 253, 232, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(196, 162, 65, 0.1);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--earth);
  text-decoration: none;
  text-transform: uppercase;
}

.logo span {
  color: var(--sage);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.4s ease;
}

.nav-link:hover { color: var(--sage); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--earth);
  transition: all 0.3s;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, #fde97e 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, #fde9a8 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 50%, #fef3a3 0%, transparent 60%),
    var(--cream);
  opacity: 0.8;
}

/* Floating botanical shapes */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float 18s ease-in-out infinite;
}

.hero-bg::before {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -5%;
  background: radial-gradient(circle, var(--sage-pale), transparent 70%);
  animation-delay: -4s;
}

.hero-bg::after {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -3%;
  background: radial-gradient(circle, var(--petal-pale), transparent 70%);
  animation-delay: -9s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

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

.hero-greeting {
  /* font-family: 'Cormorant Garamond', serif; */
  /* font-size: clamp(0.95rem, 1.5vw, 1.15rem); */
  font-weight: 400;
  /* letter-spacing: 0.5em; */
  text-transform: uppercase;
  /*color: var(--earth);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
  text-align: center;
  padding-left: 0.3em; */
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.5em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--earth);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}

.hero-divider {
  width: 50px;
  height: 1px;
  background: var(--sage-light);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
}

.hero-scroll {
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
  color: var(--text);
}

.hero-scroll a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sage-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Section Shared ─── */
section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 5rem);
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
  font-weight: 800;
}

/* ─── Intro / Über mich ─── */
#ueber {
  background: var(--bg-ueber);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text p {
  margin-bottom: 1.5rem;
}

.intro-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.intro-visual-inner {
  position: absolute;
  inset: 20px;
  border-radius: 190px 190px 30px 30px;
  background:
    linear-gradient(180deg, var(--sage-wash) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2rem;
}

/* ─── Services / Energetik ─── */
.services {
  background: var(--bg-energetik);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-pale), transparent);
}

.services-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.services-header p {
  margin: 1.5rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: #F0FFDE;
  color: var(--earth);
  padding: 2.5rem 2rem;
  border-radius: 28px;
  border: 1px solid rgba(78, 60, 44, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(78, 60, 44, 0.2);
}

.service-card:hover::before { opacity: 1; }

.service-card a[href] {
  background: var(--sage) !important;
  color: white !important;
  border: 1px solid rgba(76, 92, 64, 0.3);
  position: relative;
  z-index: 10000;
}

.service-icon { display: none; }

.service-card h3 { margin-bottom: 0.8rem; color: var(--earth); }

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--earth-light);
}

/* ─── Gallery / Malerei ─── */
#malerei {
  background: var(--bg-malerei);
  position: relative;
  z-index: 9999;
}

.gallery {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-header p {
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
.gallery-item:nth-child(3) { grid-column: 1; grid-row: 3; }

.gallery-item:nth-child(4) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 1; }

.gallery-item:nth-child(6) {
  grid-column: 2;
  grid-row: 2 / 4;
  aspect-ratio: auto;
}

.gallery-item:nth-child(7) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(8) { grid-column: 3; grid-row: 3; }

.gallery-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.gallery-item:nth-child(1) .gallery-item-bg {
  background: linear-gradient(135deg, #a8c090 0%, #7a9468 40%, #5c7a4a 100%);
}
.gallery-item:nth-child(2) .gallery-item-bg {
  background: linear-gradient(135deg, #d4a0a0 0%, #c07878 60%, #a85050 100%);
}
.gallery-item:nth-child(3) .gallery-item-bg {
  background: linear-gradient(135deg, #c4a265 0%, #a88840 60%, #8a6e30 100%);
}
.gallery-item:nth-child(4) .gallery-item-bg {
  background: linear-gradient(135deg, #7ba0b8 0%, #5a8098 60%, #3a6078 100%);
}
.gallery-item:nth-child(5) .gallery-item-bg {
  background: linear-gradient(135deg, #b8a0c0 0%, #9878a0 60%, #785088 100%);
}
.gallery-item:nth-child(6) .gallery-item-bg {
  background: linear-gradient(135deg, #a0b8a0 0%, #789878 60%, #507850 100%);
}

.gallery-item:hover { transform: scale(0.98); }
.gallery-item:hover .gallery-item-bg { transform: scale(1.05); }

.gallery-item-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  z-index: 1;
}

/* ─── Garden ─── */
.garden {
  background: var(--bg-garten);
  position: relative;
  overflow: hidden;
}

.garden-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.garden-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.garden-tile {
  aspect-ratio: 1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.garden-tile:nth-child(1) {
  background: linear-gradient(135deg, #8aad72, #6b9050);
}
.garden-tile:nth-child(2) {
  background: linear-gradient(135deg, #d4b8d0, #b890b0);
  margin-top: 2rem;
}
.garden-tile:nth-child(3) {
  background: linear-gradient(135deg, #e8c870, #d4a830);
  margin-top: -2rem;
}
.garden-tile:nth-child(4) {
  background: linear-gradient(135deg, #c87878, #b05858);
}

.garden-tile-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.garden-text h2 {
  margin-bottom: 1.5rem;
}

.garden-text p {
  margin-bottom: 1.2rem;
}

/* ─── Quote / Reiki ─── */
.quote-section {
  text-align: center;
  padding: clamp(5rem, 10vw, 10rem) 2rem;
  position: relative;
  background: var(--bg-quote);
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  opacity: 0.4;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--sage-light);
  line-height: 1;
  position: relative;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--earth);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  position: relative;
}

.quote-attr {
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

/* ─── Contact ─── */
.contact {
  background: var(--pink-contact);
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.contact h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact p {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 2.5rem;
  max-width: 50ch;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-item-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.contact-item-value a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: border-color 0.3s;
}

.contact-item-value a:hover {
  border-color: #ffffff;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 2rem;
}

.contact-note {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
}

.zitat {
  background-color: var(--sage);
  color: white;
  padding: 2rem; 
  border-radius: 12px; 
  margin: 2rem 0;
}

.zitat p {
  color: white;
}

.zitat span {
  color: white;
}

.bereit {
  margin-top: 3rem; 
  padding: 2rem; 
  background:  var(--bg-energetik); 
  border-radius: 12px; 
  text-align: center;
}

.bereit p {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.disclaimer {
  color: var(--text-muted); 
  font-size: 1.05rem; 
  margin-top: 2rem; 
  font-style: italic;
  text-align: center;
}

/* ─── Footer ─── */
footer {
  background: var(--sage);
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

footer a {
  color: white;
  text-decoration: none;
}

footer p {
  color: white;
  text-decoration: none;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; }
  .intro-visual { max-width: 400px; margin: 0 auto; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
  .garden-inner { grid-template-columns: 1fr; }
  .garden-visual { order: -1; }
  .garden-tile:nth-child(2),
  .garden-tile:nth-child(3) { margin-top: 0; }
}

@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 253, 232, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .nav-links.open { display: flex; z-index: 101; }
  .nav-link { font-size: 1.4rem; }
  .hamburger { display: flex; z-index: 102; }
  .contact-details { gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .garden-visual { grid-template-columns: 1fr; }
  .garden-tile { aspect-ratio: 3/4; }
}
