/* =========================================
   HARY'S BONSAI
   Natural / Earthy / Modern
========================================= */

:root {
  --olive-dark: #263326;
  --olive: #495a3d;
  --olive-light: #72805f;
  --sage: #98a487;

  --cream: #f1eee4;
  --cream-dark: #e4dfd1;
  --sand: #cbc0a8;

  --brown: #6b5542;
  --charcoal: #22251f;
  --white: #ffffff;

  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;

  --container: 1200px;

  --shadow:
    0 22px 60px rgba(34, 37, 31, 0.12);
}


/* Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}


/* =========================================
   Header
========================================= */

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-container {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 6px;
}


/* =========================================
   Hero
========================================= */

.hero {
  min-height: 820px;
  position: relative;
  background:
    linear-gradient(
      125deg,
      #1f2a20 0%,
      #34432e 48%,
      #46583b 100%
    );
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.eyebrow {
  color: var(--olive);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow.light {
  color: #bdc7ae;
}

.hero .eyebrow {
  color: #bac5a8;
}

.hero h1 {
  max-width: 720px;
  color: #f4f1e7;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: #bfc9ae;
}

.hero-text {
  max-width: 600px;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  margin-top: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}


/* Buttons */

.button {
  padding: 15px 24px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;

  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;

  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cream);
  color: var(--olive-dark);
}

.button-primary:hover {
  background: white;
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.34);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.09);
}

.button-light {
  background: var(--cream);
  color: var(--olive-dark);
  margin-top: 28px;
}


/* =========================================
   CSS Bonsai Artwork
========================================= */

.hero-art {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 0.92;
  position: relative;
  justify-self: center;

  border-radius:
    50% 50% 8px 8px /
    42% 42% 8px 8px;

  background:
    linear-gradient(
      160deg,
      rgba(255,255,255,0.1),
      rgba(255,255,255,0.025)
    );

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    inset 0 0 90px rgba(0,0,0,0.12),
    0 40px 100px rgba(0,0,0,0.12);
}

.sun {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(230, 218, 186, 0.13);
  top: 70px;
  right: 55px;
}

.bonsai-canopy {
  position: absolute;
  border-radius: 50%;
  background: #17271b;
  filter: drop-shadow(0 20px 20px rgba(0,0,0,.14));
}

.canopy-1 {
  width: 210px;
  height: 105px;
  top: 130px;
  left: 80px;
  transform: rotate(-8deg);
}

.canopy-2 {
  width: 205px;
  height: 110px;
  top: 195px;
  right: 57px;
}

.canopy-3 {
  width: 150px;
  height: 84px;
  top: 86px;
  right: 105px;
}

.canopy-4 {
  width: 135px;
  height: 75px;
  top: 250px;
  left: 85px;
}

.bonsai-trunk {
  position: absolute;
  width: 46px;
  height: 230px;
  background:
    linear-gradient(
      90deg,
      #49392e,
      #80674d,
      #443529
    );

  bottom: 85px;
  left: 52%;

  border-radius:
    70% 20% 55% 40% /
    20% 45% 60% 80%;

  transform:
    translateX(-50%)
    rotate(7deg);
}

.bonsai-trunk::before {
  content: "";
  position: absolute;
  width: 125px;
  height: 22px;
  background: #594635;
  border-radius: 50%;
  top: 30px;
  left: -75px;
  transform: rotate(-24deg);
}

.bonsai-trunk::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 18px;
  background: #594635;
  border-radius: 50%;
  top: 90px;
  left: 20px;
  transform: rotate(17deg);
}

.bonsai-pot {
  width: 230px;
  height: 68px;
  background: #9d7b57;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);

  clip-path:
    polygon(
      8% 0,
      92% 0,
      82% 100%,
      18% 100%
    );
}

.pot-rim {
  height: 15px;
  width: 245px;
  background: #72563f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-caption {
  position: absolute;
  right: 25px;
  bottom: 20px;
  color: rgba(255,255,255,.48);
  text-align: right;
}

.hero-caption span {
  display: block;
  font-size: .6rem;
  letter-spacing: .2em;
}

.hero-caption strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255,255,255,.45);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 35px;
  height: 1px;
  background: rgba(255,255,255,.35);
}


/* =========================================
   Intro Strip
========================================= */

.intro-strip {
  background: #e5e0d3;
  border-bottom: 1px solid rgba(70,80,58,.12);
}

.intro-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
}

.intro-items > div:not(.divider) {
  text-align: center;
  flex: 1;
}

.intro-items strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--olive-dark);
}

.intro-items span {
  color: #777467;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.divider {
  width: 1px;
  height: 38px;
  background: rgba(75,86,63,.17);
}


/* =========================================
   General Sections
========================================= */

.section {
  padding: 120px 0;
}

.section h2,
.philosophy-section h2,
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  color: var(--olive-dark);
}

.accent-line {
  width: 60px;
  height: 2px;
  background: var(--olive);
  margin-top: 28px;
}


/* =========================================
   About
========================================= */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 120px;
}

.about-copy {
  max-width: 680px;
  color: #69685f;
  font-size: 1rem;
}

.about-copy p {
  margin-bottom: 20px;
}

.about-copy .lead {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.4;
}

.about-copy blockquote {
  margin-top: 35px;
  border-left: 2px solid var(--olive);
  padding-left: 25px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}


/* =========================================
   Gallery
========================================= */

.gallery-section {
  background: #ded9cc;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.text-link {
  color: var(--olive-dark);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--olive-light);

  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 700;
}

.text-link span {
  transition: transform .25s;
}

.text-link:hover span {
  transform: translateX(5px);
}

.tree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tree-card {
  background: var(--cream);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.tree-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.tree-card.featured {
  margin-top: 45px;
}

.tree-placeholder {
  aspect-ratio: 4 / 4.4;
  position: relative;
  overflow: hidden;
}

.tree-placeholder::before,
.tree-placeholder::after {
  content: "";
  position: absolute;
}

.tree-placeholder::before {
  width: 65%;
  height: 42%;
  border-radius: 50%;
  background: rgba(29,48,30,.85);
  top: 25%;
  left: 18%;
  box-shadow:
    -50px 45px 0 -15px rgba(36,57,37,.76),
    45px 50px 0 -20px rgba(36,57,37,.8);
}

.tree-placeholder::after {
  width: 12px;
  height: 44%;
  bottom: 9%;
  left: 49%;
  background: #67513e;
  transform: rotate(4deg);
}

.tree-one {
  background:
    linear-gradient(145deg, #9aa88c, #65745e);
}

.tree-two {
  background:
    linear-gradient(145deg, #66765d, #344532);
}

.tree-three {
  background:
    linear-gradient(145deg, #c0b99f, #888a6d);
}

.tree-placeholder span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  color: rgba(255,255,255,.6);
  font-family: var(--serif);
}

.tree-card-content {
  padding: 26px;
}

.tree-card-content h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--olive-dark);
  margin-bottom: 8px;
}

.tree-card-content p:last-child {
  color: #737268;
  font-size: .9rem;
}

.tree-type {
  margin-bottom: 8px;
  color: var(--olive-light);
  font-size: .63rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
}


/* =========================================
   Philosophy
========================================= */

.philosophy-section {
  background: var(--olive-dark);
  color: white;
  padding: 120px 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 100px;
}

.philosophy-number {
  color: rgba(255,255,255,.07);
  font-family: var(--serif);
  font-size: clamp(8rem, 17vw, 15rem);
  line-height: 1;
}

.philosophy-section h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--cream);
  margin-bottom: 25px;
}

.philosophy-section p:last-child {
  color: rgba(255,255,255,.6);
  max-width: 650px;
}


/* =========================================
   Journey Cards
========================================= */

.center-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.center-heading > p:last-child {
  color: #77766e;
  margin-top: 18px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.journey-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(65,75,57,.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.17);
  transition: .3s;
}

a.journey-card:hover {
  background: var(--olive-dark);
  color: white;
  transform: translateY(-4px);
}

.journey-number {
  color: var(--olive-light);
  font-family: var(--serif);
}

.journey-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 10px;
}

.journey-card p {
  font-size: .9rem;
  color: #74736a;
}

a.journey-card:hover p {
  color: rgba(255,255,255,.6);
}

.arrow {
  font-size: 1.5rem;
}

.coming-soon {
  opacity: .65;
}

.soon-label {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(50,65,46,.3);
  font-size: .6rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}


/* =========================================
   CTA
========================================= */

.cta-section {
  padding: 0 0 100px;
}

.cta-box {
  padding: 80px;
  background:
    linear-gradient(
      125deg,
      #4b5d40,
      #283528
    );
  color: white;
}

.cta-box h2 {
  color: var(--cream);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.cta-box > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 25px;
  color: rgba(255,255,255,.62);
}


/* =========================================
   Footer
========================================= */

.site-footer {
  background: #1b231c;
  color: rgba(255,255,255,.5);
}

.footer-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: .75rem;
}

.footer-logo {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
}

.footer-logo span {
  margin-right: 8px;
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 900px) {

  .hero {
    min-height: auto;
    padding: 145px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 0;
  }

  .hero-art {
    max-width: 430px;
  }

  .scroll-hint {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 85px;
    left: 20px;
    right: 20px;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    background: #243025;
    padding: 15px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .about-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .tree-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .tree-card.featured {
    margin-top: 0;
  }

  .tree-placeholder {
    aspect-ratio: 16 / 10;
  }

  .intro-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }

  .intro-items > div:not(.divider) {
    padding: 20px;
  }

  .intro-items .divider {
    display: none;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .philosophy-number {
    display: none;
  }

  .cta-box {
    padding: 55px 35px;
  }

}


@media (max-width: 600px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-container {
    min-height: 82px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-text {
    font-size: .98rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    max-width: 350px;
  }

  .section,
  .philosophy-section {
    padding: 80px 0;
  }

  .about-copy .lead {
    font-size: 1.4rem;
  }

  .footer-inner {
    padding: 35px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

} /* closes @media (max-width: 600px) */


/* =========================================
   Hero Bonsai Photo
========================================= */

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  border-radius: 48% 48% 8px 8px / 38% 38% 8px 8px;
  background: #182219;

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    inset 0 0 70px rgba(0, 0, 0, 0.15),
    0 35px 80px rgba(0, 0, 0, 0.15);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  /* Adjust this later if we want the tree shifted */
  object-position: 56% center;

  filter:
    contrast(1.05)
    saturate(0.88)
    brightness(0.92);
}

/* subtle olive color blend */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(38, 51, 38, 0.04),
      rgba(38, 51, 38, 0.22)
    );

  pointer-events: none;
  z-index: 1;
}

/* Keep caption above overlay */
.hero-photo .hero-caption {
  z-index: 2;
  right: 24px;
  bottom: 20px;
}

.hero-photo .hero-caption span {
  color: rgba(255, 255, 255, 0.65);
}

.hero-photo .hero-caption strong {
  color: #d5dcc7;
}

/* =========================================
   GALLERY PAGE
========================================= */

.gallery-page {
  background: var(--cream);
}


/* Header */

.gallery-header {
  position: absolute;
}


/* =========================================
   Gallery Hero
========================================= */

.gallery-hero {
  min-height: 620px;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #202c21 0%,
      #34452f 55%,
      #4a5b3e 100%
    );

  color: white;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(
      rgba(255,255,255,.17) 0.7px,
      transparent 0.7px
    );

  background-size: 8px 8px;
  opacity: .45;
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;

  padding-top: 100px;
}

.gallery-hero h1 {
  font-family: var(--serif);
  font-weight: 400;

  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .92;
  letter-spacing: -.045em;

  color: var(--cream);

  max-width: 900px;
}

.gallery-hero h1 span {
  color: #b8c3a8;
}

.gallery-hero-text {
  max-width: 610px;

  margin-top: 34px;

  color: rgba(255,255,255,.66);

  font-size: 1.05rem;
}

.gallery-hero-number {
  position: absolute;

  right: 3%;
  bottom: -65px;

  font-family: var(--serif);
  font-size: clamp(14rem, 30vw, 29rem);

  color: rgba(255,255,255,.035);

  line-height: 1;

  pointer-events: none;
}


/* =========================================
   Gallery Browser
========================================= */

.gallery-browser {
  padding: 110px 0 130px;
}

.gallery-browser-header {
  display: grid;

  grid-template-columns:
    1fr
    minmax(300px, 480px);

  gap: 80px;

  align-items: end;

  margin-bottom: 55px;
}

.gallery-browser-header h2 {
  font-family: var(--serif);
  font-weight: 400;

  font-size: clamp(3rem, 6vw, 5.5rem);

  color: var(--olive-dark);

  line-height: 1;
}

.gallery-browser-copy {
  color: #77766c;
}


/* =========================================
   Filters
========================================= */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  padding-bottom: 35px;

  border-bottom:
    1px solid rgba(54, 67, 48, .15);

  margin-bottom: 45px;
}

.filter-button {
  appearance: none;

  border:
    1px solid rgba(47, 63, 43, .2);

  background: transparent;

  color: var(--olive-dark);

  cursor: pointer;

  padding:
    11px
    18px;

  font-size: .68rem;
  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  transition:
    background .25s,
    color .25s,
    border-color .25s;
}

.filter-button:hover,
.filter-button.active {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  color: var(--cream);
}


/* =========================================
   Gallery Grid
========================================= */

.bonsai-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    70px
    30px;
}

.bonsai-gallery-card {
  transition:
    opacity .3s,
    transform .3s;
}

.bonsai-gallery-card.is-hidden {
  display: none;
}


/* Image */

.gallery-image-wrap {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #d7d3c5;

  margin-bottom: 25px;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .65s ease,
    filter .65s ease;
}

.bonsai-gallery-card:hover
.gallery-image-wrap img {
  transform: scale(1.035);
}


/* Placeholders */

.gallery-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  position: relative;

  color: rgba(255,255,255,.75);
}

.gallery-placeholder::before {
  content: "";

  position: absolute;

  width: 45%;
  height: 35%;

  border-radius: 50%;

  background:
    rgba(24, 43, 27, .72);

  top: 23%;
  left: 27%;

  box-shadow:
    -70px 65px 0 -25px rgba(24,43,27,.58),
    70px 80px 0 -30px rgba(24,43,27,.65);
}

.gallery-placeholder::after {
  content: "";

  position: absolute;

  width: 12px;
  height: 38%;

  background: #725d48;

  left: 50%;
  bottom: 10%;

  transform:
    translateX(-50%)
    rotate(4deg);
}

.gallery-placeholder span,
.gallery-placeholder strong {
  position: relative;
  z-index: 3;
}

.gallery-placeholder span {
  position: absolute;

  top: 20px;
  left: 22px;

  font-family: var(--serif);
}

.gallery-placeholder strong {
  margin-top: auto;
  margin-bottom: 20px;

  font-size: .65rem;

  text-transform: uppercase;
  letter-spacing: .14em;
}


.placeholder-dark {
  background:
    linear-gradient(
      145deg,
      #263728,
      #141d15
    );
}

.placeholder-sage {
  background:
    linear-gradient(
      145deg,
      #9ba88e,
      #56664f
    );
}

.placeholder-warm {
  background:
    linear-gradient(
      145deg,
      #b9ad8e,
      #706c52
    );
}

.placeholder-earth {
  background:
    linear-gradient(
      145deg,
      #8b7157,
      #4e4939
    );
}

.placeholder-deep {
  background:
    linear-gradient(
      145deg,
      #43543c,
      #202d21
    );
}

.placeholder-light {
  background:
    linear-gradient(
      145deg,
      #c5c0ad,
      #879078
    );
}


/* Species Tag */

.species-tag {
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 5;

  background:
    rgba(241, 238, 228, .92);

  color: var(--olive-dark);

  padding:
    7px
    11px;

  font-size: .6rem;

  text-transform: uppercase;
  letter-spacing: .13em;

  font-weight: 700;
}


/* Card Info */

.gallery-card-info {
  display: grid;

  grid-template-columns:
    1fr
    auto;

  gap:
    10px
    25px;

  align-items: start;
}

.tree-category {
  color: var(--olive-light);

  font-size: .62rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .15em;

  margin-bottom: 5px;
}

.gallery-card-info h3 {
  font-family: var(--serif);
  font-size: 2.1rem;

  font-weight: 400;

  color: var(--olive-dark);

  line-height: 1.1;
}

.gallery-arrow {
  font-size: 1.35rem;

  color: var(--olive-light);

  transition:
    transform .25s;
}

.bonsai-gallery-card:hover
.gallery-arrow {
  transform:
    translate(
      4px,
      -4px
    );
}

.tree-description {
  grid-column: 1 / -1;

  max-width: 520px;

  margin-top: 5px;

  color: #77766c;

  font-size: .9rem;
}


/* =========================================
   Gallery CTA
========================================= */

.gallery-cta {
  background: var(--olive-dark);

  color: white;

  padding: 110px 0;
}

.gallery-cta-inner {
  display: grid;

  grid-template-columns:
    1.2fr
    .8fr;

  gap: 100px;

  align-items: end;
}

.gallery-cta h2 {
  font-family: var(--serif);
  font-weight: 400;

  font-size: clamp(3rem, 6vw, 5rem);

  color: var(--cream);

  line-height: 1;

  letter-spacing: -.035em;
}

.gallery-cta-inner > p {
  max-width: 520px;

  color:
    rgba(255,255,255,.57);
}


/* =========================================
   Gallery Responsive
========================================= */

@media (max-width: 900px) {

  .gallery-hero {
    min-height: 570px;
  }

  .gallery-browser-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bonsai-gallery-grid {
    gap:
      55px
      20px;
  }

  .gallery-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}


@media (max-width: 650px) {

  .gallery-hero {
    min-height: 520px;
  }

  .gallery-hero h1 {
    font-size:
      clamp(
        3.8rem,
        19vw,
        6rem
      );
  }

  .gallery-browser {
    padding:
      80px
      0;
  }

  .gallery-filters {
    gap: 7px;
  }

  .filter-button {
    flex-grow: 1;
  }

  .bonsai-gallery-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .gallery-image-wrap {
    aspect-ratio: 4 / 3.2;
  }

  .gallery-cta {
    padding:
      80px
      0;
  }

}

