/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --color-forest: #263d2d;
  --color-forest-dark: #19301f;
  --color-cream: #f8f3e8;
  --color-cream-light: #fffdf8;
  --color-brown: #5a3828;
  --color-gold: #c79a45;
  --color-gold-light: #e7d2a0;
  --color-text: #30271f;
  --color-muted: #746a5e;
  --color-border: #ded3be;
  --color-white: #ffffff;

  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1280px;
  --page-padding: 40px;
  --section-space: 96px;
  --card-gap: 24px;
  --radius-card: 16px;
  --radius-pill: 999px;
  --button-height: 52px;

  --shadow-card: 0 8px 24px rgba(38, 61, 45, 0.1);
  --shadow-soft: 0 4px 14px rgba(38, 61, 45, 0.08);

  --transition-fast: 200ms ease-out;
}

@media (max-width: 1024px) {
  :root {
    --page-padding: 28px;
    --section-space: 72px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-padding: 18px;
    --section-space: 56px;
    --card-gap: 16px;
    --radius-card: 14px;
  }
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream-light);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-forest);
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.01em;
}

.section-subtext {
  text-align: center;
  color: var(--color-muted);
  max-width: 620px;
  margin: 12px auto 0;
  font-size: 1rem;
}

.section-intro {
  margin-bottom: 48px;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--button-height);
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn[data-zalo-cta] {
  gap: 6px;
}

.btn[data-zalo-cta]:not(.btn-sm) {
  gap: 9px;
  padding: 0 26px;
}

.btn[data-zalo-cta]:not(.btn-sm) .btn-icon {
  width: 30px;
  height: 30px;
}

.btn-primary {
  background: var(--color-forest);
  color: var(--color-cream-light);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-forest-dark);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-forest-dark);
}

.btn-gold:hover {
  background: #b78a37;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-forest);
  color: var(--color-forest);
}

.btn-outline:hover {
  background: var(--color-forest);
  color: var(--color-cream-light);
}

.btn-brown {
  background: var(--color-brown);
  color: var(--color-cream-light);
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
}

.btn-brown:hover {
  background: #46281c;
}

.btn-sm {
  height: 42px;
  padding: 0 20px;
  font-size: 0.85rem;
}

.btn-sm .btn-icon {
  width: 28px;
  height: 28px;
}

.btn-sm[data-zalo-cta] {
  gap: 8px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-cream-light);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(38, 61, 45, 0.08);
  border-color: var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-forest);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand__tagline {
  font-size: 0.65rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav__list a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.main-nav__list a:hover {
  color: var(--color-forest);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-forest);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

.nav-scrim,
.nav-panel {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--color-cream);
  padding-top: 64px;
  padding-bottom: 72px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-forest);
  font-size: clamp(2.5rem, 1.9rem + 2.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-brown);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  letter-spacing: 0.03em;
  margin-top: 14px;
}

.hero__text {
  color: var(--color-muted);
  max-width: 480px;
  margin-top: 18px;
  font-size: 1rem;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__contact {
  margin-top: 16px;
}

.hero__contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__contact-label {
  letter-spacing: 0.06em;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: opacity 900ms ease;
}

.hero__media img.is-active {
  opacity: 1;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 4px;
}

.hero__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hero__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.55);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.hero__dot.is-active::before {
  background: var(--color-gold);
  transform: scale(1.35);
}

/* ==========================================================================
   Quality / trust features
   ========================================================================== */
.features {
  background: var(--color-cream-light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 8px 12px;
}

.feature-item__icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--color-cream);
  box-shadow: 0 6px 18px rgba(38, 61, 45, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item__title {
  font-weight: 700;
  color: var(--color-forest);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.feature-item__desc {
  color: var(--color-muted);
  font-size: 0.88rem;
}

/* ==========================================================================
   Products
   ========================================================================== */
.products {
  background: var(--color-cream-light);
}

.products__panel {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 48px;
}

.products__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.products__viewport {
  width: 100%;
  max-width: 460px;
  overflow: hidden;
}

.products__track {
  display: flex;
  transition: transform var(--transition-fast);
}

.products__track > .product-card {
  flex: 0 0 100%;
  width: 100%;
}

.products__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-forest);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), opacity var(--transition-fast);
}

.products__arrow svg {
  width: 20px;
  height: 20px;
}

.products__arrow:hover:not(:disabled) {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-cream-light);
}

.products__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.products__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.products__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.products__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.products__dot.is-active::before {
  background: var(--color-forest);
  transform: scale(1.35);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.product-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card__name {
  font-family: "Cormorant Garamond", var(--font-heading);
  font-weight: 700;
  color: var(--color-forest);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

.product-card__desc {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-card__price {
  font-weight: 700;
  color: var(--color-brown);
  font-size: 1.15rem;
}

.product-card__price span {
  font-weight: 500;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.product-note {
  margin-top: 32px;
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  text-align: center;
}

.product-note__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-forest);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-note__text {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   Story
   ========================================================================== */
.story {
  background: var(--color-cream-light);
}

.story__inner,
.press__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--color-cream);
  border-radius: 20px;
  overflow: hidden;
}

.story__media img,
.press__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.story__content {
  padding: 40px 48px 40px 0;
}

.story__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-forest);
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  line-height: 1.2;
}

.story__text {
  color: var(--color-muted);
  margin-top: 16px;
  max-width: 460px;
}

.story__actions {
  margin-top: 24px;
}

.press__content {
  padding: 40px 48px 40px 0;
}

.press__eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.press__quote {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-forest);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  line-height: 1.45;
}

/* ==========================================================================
   Store / Map
   ========================================================================== */
.store {
  background: var(--color-cream-light);
}

.store__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--card-gap);
  align-items: start;
}

.store-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.store-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.store-info__icon {
  width: 22px;
  height: 22px;
  color: var(--color-forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.store-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-forest);
  text-transform: uppercase;
}

.store-info__value {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-top: 2px;
}

.store-map {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.store-map__frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.store-map__frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.store-map__actions {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-forest-dark);
  color: var(--color-cream-light);
  position: relative;
  overflow: hidden;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .brand__name,
.footer-brand .brand__tagline {
  color: var(--color-cream-light);
}

.footer-brand .brand__tagline {
  opacity: 0.75;
}

.footer-brand__desc {
  color: rgba(248, 243, 232, 0.75);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-heading {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin-bottom: 18px;
  color: var(--color-gold-light);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact li {
  color: rgba(248, 243, 232, 0.85);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 243, 232, 0.15);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(248, 243, 232, 0.6);
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-footer__leaves {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 220px;
  opacity: 0.14;
  pointer-events: none;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}




/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    height: 76px;
  }

  .store__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    order: -1;
  }

  .features__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .feature-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .feature-item__icon {
    width: 84px;
    height: 84px;
  }

  .products__panel {
    padding: 28px 20px;
  }

  .products__carousel {
    gap: 10px;
  }

  .products__arrow {
    width: 38px;
    height: 38px;
  }

  .products__viewport {
    max-width: 100%;
  }

  .story__inner,
  .press__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .story__content,
  .press__content {
    padding: 28px 24px 32px;
  }

  .process__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-top: 48px;
  }

  
}

@media (max-width: 480px) {
  .site-header__inner {
    height: 68px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 0.92rem;
  }

  .brand__tagline {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .hero__inner {
    gap: 28px;
  }

  .products__panel {
    padding: 22px 16px;
  }

  .products__carousel {
    gap: 8px;
  }

  .products__arrow {
    width: 32px;
    height: 32px;
  }

  .product-card__body {
    padding: 18px 18px 20px;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card__footer .btn {
    width: 100%;
    height: auto;
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: normal;
    text-align: center;
  }

  .nav-panel .header-cta[data-zalo-cta] {
    gap: 8px;
    padding: 10px 18px;
    height: auto;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .nav-panel .header-cta .btn-icon {
    width: 24px;
    height: 24px;
  }

  .store-map__frame iframe {
    height: 240px;
  }
}

/* ==========================================================================
   Mobile navigation panel (overlay)
   ========================================================================== */
@media (max-width: 900px) {
  .nav-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--color-cream-light);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition-fast);
    z-index: 60;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .nav-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-panel__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .nav-panel__close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--color-forest);
    cursor: pointer;
  }

  .nav-panel__close svg {
    width: 24px;
    height: 24px;
  }

  .nav-panel .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-panel .main-nav__list a {
    font-size: 1rem;
  }

  .nav-panel .header-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  .nav-scrim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(25, 48, 31, 0.4);
    z-index: 55;
  }

  body.nav-open .nav-scrim {
    display: block;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-forest);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-item__answer {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Production process
   ========================================================================== */
.process__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--card-gap);
  margin-top: 40px;
}

.process-photo {
  margin: 0;
}

.process-photo__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.process-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-photo__caption {
  display: block;
  color: var(--color-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 10px;
}

.process__text {
  color: var(--color-muted);
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
}

.process__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

