/* ============================================================
   마리스토리 협동조합 — Global Styles
   ============================================================ */

:root {
  --wood-dark:    #3B2314;
  --wood-mid:     #6B4226;
  --wood-warm:    #A0522D;
  --wood-light:   #C8935A;
  --wood-pale:    #E8D5B7;
  --wood-cream:   #F7F0E6;
  --gold:         #C9A84C;
  --gold-light:   #E8CB7A;
  --green-forest: #3D5A3E;
  --text-dark:    #1E1208;
  --text-mid:     #5C3D1E;
  --text-light:   #8B6544;
  --text-muted:   #B0946E;
  --white:        #FFFFFF;
  --off-white:    #FDFAF5;

  --font-serif:   'Noto Serif KR', 'Playfair Display', serif;
  --font-sans:    'Noto Sans KR', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 2px 8px rgba(59,35,20,.10);
  --shadow-md:    0 8px 30px rgba(59,35,20,.15);
  --shadow-lg:    0 20px 60px rgba(59,35,20,.20);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wood-dark);
  color: var(--gold-light);
  border-color: var(--wood-dark);
}
.btn-primary:hover {
  background: var(--wood-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,35,20,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-wood {
  background: var(--wood-cream);
  color: var(--wood-dark);
  border-color: var(--wood-light);
  font-weight: 700;
}
.btn-wood:hover {
  background: var(--wood-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-warm);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--wood-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }
.section-header--light .section-label { color: var(--gold-light); }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-desc { color: rgba(255,255,255,.75); }

/* ===== NAVIGATION ===== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav-header.scrolled {
  background: rgba(247,240,230,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: .75; }
.logo-kr {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wood-dark);
}
.logo-en {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--wood-warm);
  text-transform: lowercase;
}
.nav-header:not(.scrolled) .logo-kr,
.nav-header:not(.scrolled) .logo-en { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}
.nav-header.scrolled .nav-link { color: var(--text-mid); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.nav-header.scrolled .nav-link:hover { color: var(--wood-warm); }
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-header.scrolled .nav-menu-btn span { background: var(--wood-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  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;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg-img { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,5,.5) 0%,
    rgba(30,18,8,.65) 50%,
    rgba(20,10,5,.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll-down {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== HERO ANIMATIONS ===== */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: animUp 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.65s; }
.delay-4 { animation-delay: 0.85s; }
@keyframes animUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== INTRO VIDEO ===== */
.intro-video {
  padding: 120px 0;
  background: var(--wood-cream);
}
.intro-video .section-header {
  margin-bottom: 36px;
}
.intro-video-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(59,35,20,.08);
  background: var(--text-dark);
}
.intro-video-media {
  display: block;
  width: 100%;
  max-height: 680px;
  background: #000;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-label { display: block; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-features { display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--wood-cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--wood-warm);
  transition: transform var(--transition);
}
.feature-item:hover { transform: translateX(4px); }
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wood-dark);
  margin-bottom: 2px;
}
.feature-item span {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 120px 0;
  background: var(--wood-cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--wood-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-info {
  padding: 24px;
}
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wood-dark);
  margin-bottom: 10px;
}
.product-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.product-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--wood-pale);
  color: var(--wood-mid);
  margin-right: 4px;
  margin-top: 2px;
}

/* ===== PROCESS ===== */
.process {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
}
.process-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35);
}
.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,35,20,.85) 0%, rgba(30,18,8,.9) 100%);
}
.process > .container { position: relative; z-index: 2; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 200px;
  padding: 32px 24px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.process-connector {
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: .4;
  align-self: center;
  flex-shrink: 0;
}

/* ===== WHY WOOD ===== */
.why-wood {
  padding: 120px 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-text .section-label { display: block; }
.why-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.why-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  padding: 12px 18px;
  background: var(--wood-cream);
  border-radius: var(--radius-md);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green-forest);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0 80px;
  background: var(--wood-cream);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin: 0 32px;
  max-width: 1400px;
  margin: 0 auto 48px;
  padding: 0 32px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.gallery-more {
  display: flex;
  justify-content: center;
  padding: 16px 0 40px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info .section-label { display: block; }
.contact-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--wood-cream);
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}
.contact-item:hover { transform: translateX(4px); }
.contact-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wood-warm);
  margin-bottom: 3px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--wood-warm); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}
.required { color: var(--wood-warm); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--wood-pale);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wood-warm);
  box-shadow: 0 0 0 3px rgba(160,82,45,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-forest);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--wood-dark);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--wood-dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-kr {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-logo-en {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,.5);
  font-family: var(--font-serif);
}
.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--gold-light); }
.footer-social h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.social-btn:hover {
  background: rgba(201,168,76,.2);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 350px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; }
  .process-connector { width: 2px; height: 30px; align-self: auto; margin-left: 42px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0 !important; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--off-white);
    padding: 24px 32px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open .nav-link { color: var(--text-mid); font-size: 1rem; }
  .nav-menu-btn { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    padding: 0 20px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-images { height: 300px; }
  .process-connector { margin-left: 38px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item--wide, .gallery-item--tall { grid-column: auto; grid-row: auto; }
  .about-img-sub { display: none; }
  .about-images { height: 300px; }
  .about-img-main { width: 100%; }
  .why-img { aspect-ratio: 3/2; }
}
