/* ============================================
   HENRY HAUS — Stylesheet
   Handmade · Kansas City
   Palette: Prairie (plum, forest green, olive, mauve, sky)
   ============================================ */

:root {
  /* Prairie palette — coolors.co/palette/558b6e-7b8739-bdd5ea-b88c9e-2c1320 */
  --cream:        #f4f0e8;
  --cream-mid:    #ebe5da;
  --cream-dark:   #d8d0c4;
  --sand:         #ddc9b4;   /* warm neutral — backgrounds */
  --primary:      #558b6e;   /* forest green — main color */
  --primary-mid:  #3d6652;   /* darker green for body text */
  --primary-light:#8dbdaa;   /* lighter green for labels */
  --plum:         #2c1320;   /* deep plum — dark accent */
  --plum-mid:     #5a3a4a;   /* mid plum */
  --plum-light:   #b09aaa;   /* light plum */
  --green:        #558b6e;   /* kept for compatibility */
  --olive:        #7b8739;   /* olive — secondary accent */
  --olive-light:  #c8d49e;
  --mauve:        #b88c9e;   /* dusty mauve */
  --mauve-light:  #d4b5c4;
  --sky:          #bdd5ea;   /* powder blue */
  --sky-light:    #bdd5ea;
  --white:        #fff;
  --radius-sm:    6px;
  --radius:       12px;
  --change: true;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    );
  color: var(--primary);
  font-family: 'Cabin', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 400;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

@font-face {
  font-family: 'ADayInRome';
  src: url('fonts/a-day-in-rome/ADayInRome-1GA8M.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MerryGoRound';
  src: local('LMS Merry-Go-Round'),
       local('LmsMerryGoRound'),
       url('fonts/lms-merry-go-round/LmsMerryGoRound-oM7A.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ChalgaFolk';
  src: url('fonts/chalga-folk/ChalgaFolkDemo-qZDyV.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3 {
  font-family: 'ADayInRome', serif;
  line-height: 1.2;
  font-weight: 400;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'ADayInRome', serif;
  font-size: 1.4rem;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.2;
  display: block;
}

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

.nav-links a {
  font-family: 'ADayInRome', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-mid);
  transition: color 0.2s;
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.08) 14px,
      rgba(44, 19, 32, 0.08) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.08) 14px,
      rgba(44, 19, 32, 0.08) 16px
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.7);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(5.5rem, 15vw, 11rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.75rem;
  line-height: 0.92;
}

.hero-title em {
  color: var(--mauve-light);
  font-style: italic;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(244, 240, 232, 0.82);
  margin-bottom: 2.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  max-width: 380px;
}

/* ============================================
   STICKERS
   ============================================ */

.sticker {
  position: absolute;
  z-index: 3;
}

.sticker span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--mauve-light);
  border: 1.5px solid var(--mauve);
  font-family: 'ChalgaFolk', sans-serif;
  font-size: 0.88rem;
  color: var(--mauve);
  line-height: 1.4;
  box-shadow: 3px 4px 0 rgba(44, 19, 32, 0.12);
  padding: 0.5rem;
}

.sticker-1 {
  top: 410px;
  left: 28px;
  transform: rotate(-8deg);
  z-index: 10;
}

.sticker-2 {
  top: 3.5rem;
  right: 3rem;
  transform: rotate(6deg);
}

.sticker-2 span {
  background: rgba(44, 19, 32, 0.80);
  border-color: rgba(244, 240, 232, 0.55);
  color: var(--cream);
  backdrop-filter: blur(4px);
}

.sticker-3 {
  bottom: -20px;
  right: -16px;
  transform: rotate(8deg);
}

.sticker-3 span {
  width: 90px;
  height: 90px;
  font-size: 0.82rem;
  background: var(--olive-light);
  border-color: var(--olive);
  color: var(--olive);
  box-shadow: 2px 3px 0 rgba(44, 19, 32, 0.10);
}

/* ============================================
   BUTTON
   ============================================ */

.btn {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  padding: 0.75rem 2.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--primary);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-green {
  border-color: var(--green);
  color: var(--green);
}

.btn-green:hover {
  background: var(--green);
  color: var(--cream);
}

.btn-cream {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-cream:hover {
  background: var(--cream);
  color: var(--plum);
}

/* ============================================
   PROSE BOX — light background behind paragraph text
   so it's legible on any section color
   ============================================ */

.prose-box {
  background: rgba(244, 240, 232, 0.82);
  backdrop-filter: blur(2px);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */

.page-hero {
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.08) 14px,
      rgba(44, 19, 32, 0.08) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.08) 14px,
      rgba(44, 19, 32, 0.08) 16px
    );
}

.page-hero-green  { background-color: var(--primary); }
.page-hero-olive  { background-color: var(--olive); }
.page-hero-mauve  { background-color: var(--mauve); }
.page-hero-sky    { background-color: var(--sky); }
.page-hero-plum   { background-color: var(--plum); }

.page-hero-title {
  font-family: 'ADayInRome', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}

.page-hero-sky .page-hero-title,
.page-hero-sky .page-hero-eyebrow,
.page-hero-sky .page-hero-sub {
  color: var(--plum);
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.65);
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(244, 240, 232, 0.78);
  max-width: 480px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

/* ============================================
   PAGE INTRO SPLIT
   ============================================ */

.page-intro {
  padding: 7rem 0;
}

.page-intro-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.page-intro-img {
  flex-shrink: 0;
  width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 5px 7px 0 rgba(44, 19, 32, 0.12);
  display: block;
}

.page-intro-text {
  flex: 1;
}

.page-intro-text .section-title {
  margin-bottom: 1.25rem;
}

.page-intro-text p {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Cabin', sans-serif;
  line-height: 1.85;
}

/* ============================================
   QUOTE BAND
   ============================================ */

.quote-band {
  background-color: var(--plum);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(244, 240, 232, 0.04) 14px,
      rgba(244, 240, 232, 0.04) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(244, 240, 232, 0.04) 14px,
      rgba(244, 240, 232, 0.04) 16px
    );
  padding: 5rem 2rem;
  text-align: center;
}

.quote-band blockquote {
  font-family: 'ADayInRome', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.55;
}

.quote-band cite {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-light);
  font-style: normal;
}

/* ============================================
   PAGE GALLERY (full-width, reuses .gallery-grid)
   ============================================ */

.page-gallery {
  padding: 7rem 0;
}

.page-gallery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  padding: 0 2rem;
}

/* ============================================
   LACE DIVIDER
   ============================================ */

.lace-divider {
  height: 22px;
  background-image: url('files/scallop-divider.svg');
  background-size: 120px 22px;
  background-repeat: repeat-x;
  background-position: center;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.lace-divider-plum {
  background-image: url('files/scallop-divider-plum.svg');
}

.lace-divider-flip {
  transform: scaleY(-1);
}

/* ============================================
   SECTION SHARED
   ============================================ */

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--primary);
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-sub {
  font-size: 0.9rem;
  color: var(--primary-light);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.section-eyebrow-tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

/* ============================================
   OFFERINGS
   ============================================ */

.offerings {
  padding: 7rem 0;
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    );
}

.offerings .section-header {
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Three equal cards on row 1; two equal cards centered on row 2 (same width as above) */
.cards .card {
  min-width: 0;
}

.cards .card:nth-child(1) {
  grid-column: 1 / 3;
}

.cards .card:nth-child(2) {
  grid-column: 3 / 5;
}

.cards .card:nth-child(3) {
  grid-column: 5 / 7;
}

.cards .card:nth-child(4) {
  grid-column: 2 / 4;
}

.cards .card:nth-child(5) {
  grid-column: 4 / 6;
}

.card {
  background: #faf8f4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  border-top: 4px solid transparent;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,19,32,0.10);
}

.card-green  { border-top-color: var(--green); }
.card-olive  { border-top-color: var(--olive); }
.card-mauve  { border-top-color: var(--mauve); }
.card-sky    { border-top-color: var(--sky); }
.card-plum   { border-top-color: var(--plum); }

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

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.card-body h3,
.card-body p {
  align-self: stretch;
}


.card h3 {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--primary);
  font-weight: 400;
}

.card p {
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.75;
  font-weight: 400;
  font-family: 'Cabin', sans-serif;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */

.marquee-strip {
  background: var(--plum);
  color: var(--cream-mid);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}

.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Horse divider marquee */
.horse-marquee-strip {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.horse-marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  align-items: center;
}

.horse-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.horse-marquee-unit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.2rem;
}

.horse-marquee-unit img {
  height: 44px;
  width: auto;
  display: block;
  opacity: 0.75;
}

.horse-marquee-unit .hm-text {
  font-family: 'MerryGoRound', serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--plum);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.horse-marquee-unit .hm-dot {
  font-size: 0.5rem;
  color: var(--mauve);
  line-height: 1;
}

/* ============================================
   BAKERY GALLERY
   ============================================ */

.bakery {
  padding: 7rem 0;
  background-color: var(--mauve-light);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    );
}

.bakery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}

.gallery-wide img {
  aspect-ratio: 16 / 9;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-label {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  background: rgba(44, 19, 32, 0.75);
  backdrop-filter: blur(4px);
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.bakery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 7rem 0;
  background-color: var(--sky-light);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    );
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-img-wrap {
  flex-shrink: 0;
  position: relative;
  width: 340px;
}

.about-photo {
  width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  box-shadow: 4px 6px 0 rgba(44, 19, 32, 0.12);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  background: var(--green);
  color: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-weight: 400;
}

.about-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.about-text .section-title {
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: 'ADayInRome', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.7;
  border-left: 2.5px solid var(--mauve);
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}

.about-text p {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 400;
  font-family: 'Cabin', sans-serif;
}

.about-sign {
  font-family: 'ChalgaFolk', sans-serif;
  font-size: 1.3rem !important;
  color: var(--mauve) !important;
  margin-top: 0.5rem;
  font-weight: 400 !important;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding: 7rem 0;
  background-color: var(--olive-light);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(44, 19, 32, 0.065) 14px,
      rgba(44, 19, 32, 0.065) 16px
    );
}

.contact-inner {
  max-width: 680px;
}

.contact-inner .section-header {
  margin-bottom: 2.5rem;
}

.instagram-link {
  color: var(--green);
  font-weight: 400;
  border-bottom: 1px solid var(--primary-light);
  transition: border-color 0.2s;
}

.instagram-link:hover {
  border-bottom-color: var(--green);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.form-field input,
.form-field textarea {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--primary);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  resize: vertical;
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary-light);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--primary-light);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-success {
  display: none;
  color: var(--olive);
  font-size: 0.88rem;
  font-style: italic;
}

.form-error {
  display: none;
  color: #a23b3b;
  font-size: 0.88rem;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--plum);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'ADayInRome', serif;
  font-size: 1.4rem;
  color: var(--cream-mid);
  font-weight: 400;
  line-height: 1.2;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--plum-light);
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 3rem 2rem;
  }

  .sticker-1 {
    top: auto;
    left: 1rem;
    bottom: 2rem;
  }

  .sticker-2 {
    right: 1rem;
    top: 2rem;
  }
}

@media (max-width: 820px) {
  .page-intro-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .page-intro-img {
    width: 100%;
    height: 380px;
  }

  .about-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .about-img-wrap {
    width: 100%;
  }

  .about-photo {
    width: 100%;
    height: 380px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 0.4rem;
  }

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

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards .card:nth-child(n) {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

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

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

  .gallery-wide {
    grid-column: span 1;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 1.25rem;
  }
}
