/* ===================================
   화윤 꽃집 - Style Sheet
   Color Palette: Warm naturals inspired by the flower arrangements
   =================================== */

:root {
  /* Core palette - warm, botanical tones */
  --color-cream: #faf8f5;
  --color-warm-white: #f5f0eb;
  --color-sand: #e8ddd1;
  --color-sage: #8a9a7b;
  --color-sage-light: #c5d4b8;
  --color-sage-dark: #5e7050;
  --color-blush: #d4a0a0;
  --color-blush-light: #f0dada;
  --color-peach: #e8b89d;
  --color-gold: #c4a265;
  --color-brown: #6b5c4c;
  --color-brown-light: #8a7a6a;
  --color-charcoal: #3a3632;
  --color-text: #4a4440;
  --color-text-light: #7a7470;
  --color-white: #ffffff;

  /* Typography */
  --font-serif: 'Noto Serif KR', Georgia, serif;
  --font-sans: 'Noto Sans KR', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ===================================
   Navigation
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 101;
}

.nav-logo-hanja {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  transition: color 0.3s;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-charcoal);
  position: relative;
  transition: color 0.3s;
}

.nav:not(.scrolled) .nav-links a {
  color: var(--color-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-sage);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav:not(.scrolled) .nav-links a::after {
  background: var(--color-white);
}

.nav-cta {
  padding: 8px 20px !important;
  border: 1.5px solid var(--color-sage);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--color-sage);
  color: var(--color-white) !important;
}

.nav:not(.scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.6);
}

.nav:not(.scrolled) .nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all 0.3s var(--ease-out);
}

.nav:not(.scrolled) .nav-toggle span {
  background: var(--color-white);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(58, 54, 50, 0.3) 0%,
    rgba(58, 54, 50, 0.15) 40%,
    rgba(58, 54, 50, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero-hanja {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  opacity: 0.7;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
}

.hero-desc {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 1s var(--ease-out) 0.8s both;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  opacity: 0.5;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn-primary {
  background: var(--color-sage-dark);
  color: var(--color-white);
  border-color: var(--color-sage-dark);
}

.btn-primary:hover {
  background: var(--color-sage);
  border-color: var(--color-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94, 112, 80, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

/* ===================================
   Sections Common
   =================================== */
.section {
  padding: var(--section-pad) 0;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-header .section-title {
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 300;
}

/* ===================================
   About Section
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--color-cream);
}

.about-img-sub img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-divider {
  width: 40px;
  height: 2px;
  background: var(--color-sage);
  margin: 20px 0 24px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--color-sand);
  border-bottom: 1px solid var(--color-sand);
}

.about-feature {
  text-align: center;
}

.about-feature-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  line-height: 1.2;
}

.about-feature-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.about-clients {
  font-size: 0.85rem !important;
  color: var(--color-brown-light) !important;
  font-style: italic;
}

/* ===================================
   Products Section
   =================================== */
.products {
  background: var(--color-warm-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.product-badge.best {
  background: var(--color-sage-dark);
  color: var(--color-white);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-sage-dark);
}

.product-card--best {
  border: 1.5px solid var(--color-sage-light);
}

.products-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px dashed var(--color-sand);
}

.products-note p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 50, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(58, 54, 50, 0.1);
}

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

.gallery-item--tall {
  grid-row: span 2;
}

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

/* ===================================
   Class Section
   =================================== */
.class-section {
  background: var(--color-warm-white);
}

.class-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.class-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}

.class-details {
  list-style: none;
  margin-bottom: 24px;
}

.class-details li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-sand);
  font-size: 0.9rem;
}

.class-details strong {
  min-width: 60px;
  font-weight: 500;
  color: var(--color-sage-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.class-notice {
  background: var(--color-blush-light);
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 28px;
}

.class-notice p {
  font-size: 0.82rem;
  color: var(--color-brown);
  line-height: 1.6;
}

.class-images {
  position: relative;
}

.class-img-main {
  width: 85%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.class-img-sub {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--color-warm-white);
}

/* ===================================
   Info Section
   =================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-map {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-sand);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-sand);
}

.info-item:first-child {
  padding-top: 0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage-light);
  border-radius: 10px;
  color: var(--color-sage-dark);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-item h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.6;
}

.info-item a {
  color: var(--color-sage-dark);
  font-weight: 500;
}

.info-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.hours-table {
  margin: 4px 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 200px;
  font-size: 0.85rem;
  padding: 2px 0;
}

.hours-closed span:last-child {
  color: var(--color-blush);
  font-weight: 500;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  background: var(--color-charcoal);
  color: var(--color-white);
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.contact-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease-out);
}

.contact-link svg {
  width: 18px;
  height: 18px;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.contact-link--kakao:hover {
  border-color: #fee500;
  color: #fee500;
}

.contact-link--instagram:hover {
  border-color: #e1306c;
  color: #e1306c;
}

.contact-link--naver:hover {
  border-color: #03c75a;
  color: #03c75a;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: #2e2a27;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo .nav-logo-hanja {
  color: var(--color-sage-light);
}

.footer-brand p {
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer-info p {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.footer-sns a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.footer-sns svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

/* ===================================
   Scroll Animations
   =================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a,
  .nav:not(.scrolled) .nav-links a {
    color: var(--color-charcoal) !important;
    font-size: 1.1rem;
  }

  .nav-links a::after,
  .nav:not(.scrolled) .nav-links a::after {
    background: var(--color-sage) !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about-grid,
  .class-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    max-width: 400px;
    margin: 0 auto;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

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

  .info-map {
    height: 300px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .class-images {
    max-width: 400px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

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

  .about-features {
    gap: 20px;
  }
}
