:root {
  --forest: #2c541d;
  --sage: #74a84a;
  --sage-light: #e3efd9;
  --cream: #f6f8f5;
  --white: #ffffff;
  --black: #000000;
  --gray-text: #5a5f56;
  --border: #dbe4d3;
  --error: #b3261e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'DM Sans', Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lexend', 'DM Sans', sans-serif;
  color: var(--forest);
  margin: 0 0 12px;
  font-weight: 600;
}

h1 { font-size: 2.75rem; letter-spacing: 0.02em; }
h2 { font-size: 2rem; }
p { margin: 0 0 16px; }
a { color: inherit; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: #1d3a13; }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* --- Header --- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
/* Flex items default to a content-based min-width floor, which silently
   forces the whole header (and the page, since nothing here scrolls
   independently) wider than the viewport on narrow screens - caught by
   actually screenshotting a mobile viewport, not assumed fine. */
.header-inner > * { min-width: 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  color: var(--forest);
  font-size: 1.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* height-constrained, width auto so the logo's real (roughly square,
   rounded-corner) shape shows in full - a forced 40x40 + border-radius:50%
   was cropping it into a circle and cutting off its own corners. */
.logo img { flex-shrink: 0; height: 44px; width: auto; object-fit: contain; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  text-decoration: none;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--sage); }
.header-actions { display: flex; align-items: center; gap: 16px; }

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest);
  padding: 6px;
}
.cart-toggle svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--forest); display: block; }

@media (max-width: 820px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: 90px 24px 70px;
  background: url('assets/images/SplashScreen_Main.jpeg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 36, 14, 0.72) 0%, rgba(20, 36, 14, 0.55) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { display: block; margin-bottom: 10px; color: var(--sage-light); }
.hero h1 { font-size: 3rem; margin-bottom: 6px; overflow-wrap: break-word; color: var(--white); }
.hero-tagline {
  font-family: 'Lexend', sans-serif;
  color: var(--sage-light);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero-tagline { font-size: 1rem; }
}

/* --- Section bands --- */
.section { padding: 64px 0; }
.section-band { background: var(--sage-light); }
.section-title { text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--forest); max-width: 560px; margin: 0 auto 40px; }

/* --- Product grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(44, 84, 29, 0.08); }
.product-card img { width: 110px; height: 110px; object-fit: contain; margin-bottom: 16px; }
.product-card .category-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-card .price { font-weight: 700; color: var(--forest); margin-bottom: 16px; font-size: 1.05rem; }
.product-card .price::before { content: "$"; }
.product-card a.card-link { text-decoration: none; display: block; }

/* --- Process steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.process-step .step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lexend', sans-serif; font-weight: 600;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1.15rem; }
.process-step p { color: var(--gray-text); font-size: 0.92rem; }

@media (max-width: 720px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.testimonial-card p { font-size: 0.92rem; color: var(--gray-text); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.9rem;
}
.testimonial-author .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--forest); font-weight: 700;
}

/* --- Trust badges --- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-badge .badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-light); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
/* Plain inline SVGs, not emoji - a flag emoji (regional indicator
   sequence) silently fell back to two separate boxed letters on at least
   one real system this was tested on; SVGs render identically everywhere. */
.trust-badge .badge-icon svg { width: 22px; height: 22px; }
.trust-badge h4 { font-family: 'Lexend', sans-serif; color: var(--forest); font-size: 0.95rem; margin-bottom: 4px; }
.trust-badge p { font-size: 0.82rem; color: var(--gray-text); margin: 0; }

/* --- Instagram feed (static recreation - see Mero_Website_Requirements.md,
   no live API/embed, this uses real photos supplied for the site) --- */
.insta-feed {
  background: var(--sage-light);
  border-radius: 24px;
  padding: 32px;
}
.insta-feed-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.insta-feed-header img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--white); flex-shrink: 0; }
.insta-feed-header h3 { margin: 0 0 4px; font-size: 1rem; }
.insta-feed-header p { margin: 0; font-size: 0.85rem; color: var(--forest); }
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.insta-feed-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.4s ease; }
.insta-feed-tile { position: relative; display: block; overflow: hidden; }
.insta-feed-tile:hover img { transform: scale(1.08); }
.insta-feed-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 84, 29, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.insta-feed-tile:hover .insta-feed-tile-overlay { opacity: 1; }
.insta-feed-tile-overlay svg { width: 28px; height: 28px; }
@media (prefers-reduced-motion: reduce) {
  .insta-feed-grid img, .insta-feed-tile-overlay { transition: none; }
}
.insta-feed-actions { text-align: center; }

@media (max-width: 720px) {
  .trust-badges { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.site-footer { background: var(--cream); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.footer-col h4 {
  font-family: 'Lexend', sans-serif;
  color: var(--forest);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--forest); }
.footer-contact-email { font-size: 0.88rem; color: var(--gray-text); margin: 0 0 20px; }
.footer-contact-email a { color: var(--forest); text-decoration: none; }
.footer-bottom { color: var(--gray-text); font-size: 0.78rem; margin: 0; }

@media (max-width: 720px) {
  .footer-columns { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

/* --- Form --- */
.form-field { margin-bottom: 18px; text-align: left; }
.form-field label {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--sage); outline-offset: 1px; }
.form-field textarea { resize: vertical; }
.form-status { font-size: 0.88rem; margin-top: 8px; min-height: 1.2em; }
.form-status.ok { color: var(--sage); font-weight: 600; }
.form-status.err { color: var(--error); font-weight: 600; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-info-block { background: var(--sage-light); border-radius: 18px; padding: 32px; }
.contact-info-item { margin-bottom: 20px; }
.contact-info-item .label {
  font-family: 'Lexend', sans-serif; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--sage); margin-bottom: 4px;
}
/* --- Cart drawer --- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  z-index: 200;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.15);
}
[hidden] { display: none !important; }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-drawer-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--forest); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--gray-text); padding: 40px 0; }
.cart-line {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-line-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 56px; height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sage-light);
  flex-shrink: 0;
}
.cart-line-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-thumbs img:only-child { grid-column: 1 / -1; grid-row: 1 / -1; }
.cart-line-photocount { font-size: 0.78rem; color: var(--sage-dark, var(--sage)); margin: 0 0 6px; }
.cart-line-info { flex: 1; }
.cart-line-info h4 { font-size: 0.9rem; margin: 0 0 4px; color: var(--forest); font-family: 'Lexend', sans-serif; }
.cart-line-qty { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.cart-line-remove { background: none; border: none; color: var(--gray-text); cursor: pointer; font-size: 0.8rem; text-decoration: underline; margin-top: 4px; }
.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--forest); margin-bottom: 16px; }
.cart-discount-input { width: 100%; padding: 10px 12px; margin-bottom: 12px; border: 1px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; box-sizing: border-box; }
.cart-checkout-note { font-size: 0.78rem; color: var(--gray-text); margin-top: 10px; text-align: center; }

/* --- Photo upload grid (product detail page) --- */
.upload-section { margin: 24px 0; }
.upload-label { font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--forest); margin-bottom: 2px; }
.upload-required { color: var(--sage); font-weight: 500; font-size: 0.8rem; text-transform: none; letter-spacing: 0; }
.upload-sub { font-size: 0.85rem; color: var(--gray-text); margin-bottom: 12px; }
.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  max-width: 420px;
}
.upload-slot {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  position: relative;
  display: flex;
  cursor: pointer;
  overflow: hidden;
}
.upload-slot.empty {
  border: 2px dashed var(--sage);
  background: var(--sage-light);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--forest);
}
.upload-slot-plus { font-size: 1.4rem; line-height: 1; font-family: 'Lexend', sans-serif; }
.upload-slot-label { font-size: 0.68rem; font-family: 'Lexend', sans-serif; }
.upload-slot.filled { border: 2px solid var(--sage); cursor: default; }
.upload-slot.filled img { width: 100%; height: 100%; object-fit: cover; }
.upload-slot-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}

/* --- Product detail page --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.product-detail-image {
  background: var(--sage-light);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Click-through gallery - icon first, then the real product photo. Only
   one image shown at a time; "Previous"/"Next" buttons swap which is
   visible. No swipe/scroll involved. */
.detail-gallery {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}
.detail-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.detail-gallery-img.active { opacity: 1; }
.detail-gallery-img.card-image-photo { border-radius: 16px; object-fit: cover; }
@media (prefers-reduced-motion: reduce) {
  .detail-gallery-img { transition: none; }
}
.detail-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--forest);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44, 84, 29, 0.15);
}
.detail-gallery-nav.prev { left: -8px; }
.detail-gallery-nav.next { right: -8px; }
.detail-gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.detail-gallery-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: background 0.2s ease;
}
.detail-gallery-dots .dot.active { background: var(--sage); }
.product-detail-price { font-family: 'Lexend', sans-serif; font-size: 1.6rem; color: var(--forest); font-weight: 600; margin-bottom: 20px; }
.qty-stepper { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-stepper button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); cursor: pointer; font-size: 1.1rem;
}
.qty-stepper span { font-family: 'Lexend', sans-serif; font-weight: 600; min-width: 20px; text-align: center; }

@media (max-width: 760px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* --- Shop page --- */
.shop-intro {
  position: relative;
  background: url('assets/images/SplashScreen_Main.jpeg') center / cover no-repeat;
}
.shop-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 36, 14, 0.72) 0%, rgba(20, 36, 14, 0.55) 100%);
}
.shop-intro-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px;
}
.shop-intro-inner h1 { color: var(--white); }
.shop-intro-inner .eyebrow { color: var(--sage-light); }
.shop-intro-inner p { color: var(--sage-light); max-width: 520px; margin: 0 auto; }

.page-hero {
  text-align: center;
  padding: 64px 24px 40px;
  background: var(--sage-light);
}

/* --- FAQ accordion --- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--sage-light);
  border-radius: 14px;
  padding: 0 20px;
}
.faq-item summary {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  padding: 16px 32px 16px 0;
  list-style: none;
  position: relative;
}

/* --- Photo crop modal --- */
.crop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 20, 0.6);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.crop-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}
.crop-modal h3 { margin: 0 0 4px; color: var(--forest); font-family: 'Lexend', sans-serif; }
.crop-hint { color: var(--gray-text); font-size: 0.85rem; margin: 0 0 16px; }
.crop-viewport {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sage-light);
  touch-action: none;
  cursor: grab;
}
.crop-viewport.dragging { cursor: grabbing; }
.crop-viewport img {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.crop-zoom-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.crop-zoom-row svg { width: 18px; height: 18px; color: var(--forest); flex-shrink: 0; }
.crop-zoom-row input[type="range"] { flex: 1; accent-color: var(--sage); }
.crop-actions { display: flex; gap: 12px; justify-content: center; }
.faq-item summary::-webkit-details-marker { display: none; }

/* --- Gallery page grid --- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-page-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-page-grid img:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(44, 84, 29, 0.1); }
@media (prefers-reduced-motion: reduce) {
  .gallery-page-grid img { transition: none; }
}

/* --- Home page scrollable gallery panel --- */
.gallery-scroll-wrap { position: relative; }
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll-item {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}
.gallery-scroll-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .gallery-scroll-item { flex: 0 0 calc((100% - 16px) / 2); }
}
.gallery-scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--forest);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(44, 84, 29, 0.12);
}
.gallery-scroll-nav.prev { left: -14px; }
.gallery-scroll-nav.next { right: -14px; }
@media (max-width: 640px) {
  .gallery-scroll-nav { display: none; }
}
.gallery-scroll-actions { text-align: center; margin-top: 32px; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--sage);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--gray-text); padding-bottom: 16px; margin: 0; }
.faq-item p + p { padding-top: 0; }

/* --- About page --- */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.about-photo img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 760px) {
  .about-layout { grid-template-columns: 1fr; }
}
