/* ============================================================
   TRAVESSEIRO REAL — Brand Stylesheet
   Silent Luxury | Sintra, Portugal
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* — Colours — */
  --color-bg:           #F9F8F5;
  --color-bg-warm:      #F4F1EC;
  --color-surface:      #FFFFFF;
  --color-text:         #2C302E;
  --color-text-light:   #7A7D79;
  --color-text-muted:   #A8ABA6;
  --color-border:       #E2DDD5;
  --color-border-light: #EDEBE6;

  /* — Accents — */
  --color-moss:         #3D5A47;
  --color-moss-light:   #4E7260;
  --color-bronze:       #8B7355;
  --color-bronze-light: #A08B6B;
  --color-gold:         #C4A882;

  /* — Typography — */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  /* — Type Scale — */
  --text-xs:   0.6875rem;   /* 11px */
  --text-sm:   0.8125rem;   /* 13px */
  --text-base: 0.9375rem;   /* 15px */
  --text-lg:   1.25rem;     /* 20px */
  --text-xl:   1.5rem;      /* 24px */
  --text-2xl:  2rem;        /* 32px */
  --text-3xl:  2.75rem;     /* 44px */
  --text-4xl:  3.75rem;     /* 60px */

  /* — Spacing — */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* — Motion — */
  --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:    all 0.35s var(--ease-out);
  --transition-slow: all 0.6s var(--ease-out);

  /* — Shadows — */
  --shadow-sm: 0 1px 8px rgba(44,48,46,0.06);
  --shadow-md: 0 4px 24px rgba(44,48,46,0.08);
  --shadow-lg: 0 12px 48px rgba(44,48,46,0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

/* Offset automático para navbar fixa em todos os alvos de scroll */
#inicio, #sobre, #produtos, #encomendas, #contactos {
  scroll-margin-top: 4.75rem;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

p { font-weight: 300; color: var(--color-text-light); }

a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--color-text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease,
              background 0.25s ease, opacity 0.25s ease;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 0.5px solid var(--color-text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease,
              border-color 0.4s ease, opacity 0.4s ease;
  opacity: 0.45;
}

.cursor.is-hovering        { width: 6px; height: 6px; background: var(--color-moss); }
.cursor-ring.is-hovering   { width: 52px; height: 52px; border-color: var(--color-moss); opacity: 0.25; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.label-sans {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--color-bronze);
  display: block;
  margin: var(--space-md) auto;
}
.divider--left { margin-left: 0; }

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section     { padding: var(--space-xl) 0; }
.section--lg { padding: var(--space-2xl) 0; }

/* ============================================================
   SCROLL REVEAL (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out),
              transform 0.85s var(--ease-out);
}
.reveal.is-visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1             { transition-delay: 0.1s; }
.reveal-delay-2             { transition-delay: 0.22s; }
.reveal-delay-3             { transition-delay: 0.34s; }
.reveal-delay-4             { transition-delay: 0.46s; }

/* ============================================================
   GHOST BUTTON
   ============================================================ */
.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 0.5px solid var(--color-text);
  padding: 1rem 2.75rem;
  background: transparent;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: var(--transition);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-text);
  transform: translateY(101%);
  transition: transform 0.42s var(--ease-out);
  z-index: 0;
}

.btn-ghost span           { position: relative; z-index: 1; transition: color 0.42s ease; }
.btn-ghost:hover::before  { transform: translateY(0); }
.btn-ghost:hover span     { color: var(--color-bg); }

/* Moss variant */
.btn-ghost--moss          { color: var(--color-moss); border-color: var(--color-moss); }
.btn-ghost--moss::before  { background: var(--color-moss); }
.btn-ghost--moss:hover span { color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.625rem 0;
  background: transparent;
  transition: var(--transition-slow);
}

.navbar-main.scrolled {
  background: rgba(249,248,245,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.navbar-brand-text {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-bg);
  transition: color 0.4s ease;
}
.navbar-brand-text span { color: var(--color-gold); transition: color 0.4s ease; }

/* Scrolled state — brand reverts to dark */
.navbar-main.scrolled .navbar-brand-text       { color: var(--color-text); }
.navbar-main.scrolled .navbar-brand-text span  { color: var(--color-bronze); }

.navbar-nav-custom {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-custom {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249,248,245,0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 0.5px;
  background: var(--color-gold);
  transition: width 0.35s ease, background 0.4s ease;
}
.nav-link-custom:hover::after { width: 100%; }

/* Scrolled state — links revert to dark */
.navbar-main.scrolled .nav-link-custom         { color: var(--color-text); }
.navbar-main.scrolled .nav-link-custom::after  { background: var(--color-bronze); }

.navbar-toggler-custom {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.toggler-bar {
  width: 22px;
  height: 0.5px;
  background: var(--color-bg);
  display: block;
  transition: var(--transition);
}

/* Scrolled state — toggler bars revert to dark */
.navbar-main.scrolled .toggler-bar { background: var(--color-text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-text); /* #2C302E — antracite */
}


.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--color-bg);
}
.hero-title em { font-style: italic; color: var(--color-gold); }

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(249,248,245,0.55);
  max-width: 380px;
  margin: 1.5rem auto 3rem;
}

/* Ghost button — light variant inside dark hero */
.hero .btn-ghost {
  color: var(--color-bg);
  border-color: rgba(249,248,245,0.35);
}
.hero .btn-ghost::before  { background: var(--color-bg); }
.hero .btn-ghost:hover span { color: var(--color-text); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.4;
}
.hero-scroll .label-sans {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: var(--color-bg);
}

.scroll-line {
  width: 0.5px;
  height: 44px;
  background: var(--color-bg);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.18); }
}

/* ============================================================
   ABOUT STRIP (Statistics)
   ============================================================ */
.about-strip {
  background: var(--color-bg-warm);
  padding: var(--space-xl) 0;
  border-top: 0.5px solid var(--color-border-light);
  border-bottom: 0.5px solid var(--color-border-light);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 0.35rem;
}
.stat-divider {
  width: 0.5px;
  background: var(--color-border);
  align-self: stretch;
  margin: 0 auto;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header   { text-align: center; margin-bottom: var(--space-xl); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.section-title em { font-style: italic; color: var(--color-bronze); }

.section-sub {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  position: relative;
  background: var(--color-surface);
  border: 0.5px solid var(--color-border-light);
  transition: var(--transition);
  cursor: none;
  height: 100%;
}
.product-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out), filter 0.5s ease;
  filter: saturate(0.88) brightness(0.97);
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.product-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background: var(--color-moss);
  padding: 0.3rem 0.8rem;
}

.product-card__body    { padding: 1.5rem; }

.product-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 0.5px solid var(--color-border-light);
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
}
.product-card__price span {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-left: 2px;
}

.product-card__link {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-moss);
  border-bottom: 0.5px solid var(--color-moss);
  padding-bottom: 1px;
}
.product-card__link:hover { color: var(--color-bronze); border-color: var(--color-bronze); }

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  background: var(--color-bg-warm);
  border-top: 0.5px solid var(--color-border-light);
  border-bottom: 0.5px solid var(--color-border-light);
}

/* Elegant Form */
.form-elegant label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.form-elegant input,
.form-elegant select,
.form-elegant textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--color-border);
  padding: 0.6rem 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-elegant input:focus,
.form-elegant select:focus,
.form-elegant textarea:focus   { border-bottom-color: var(--color-moss); }
.form-elegant input::placeholder,
.form-elegant textarea::placeholder { color: var(--color-text-muted); font-weight: 300; }

.form-elegant select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7D79' stroke-width='1'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
}

.form-elegant textarea { resize: none; min-height: 80px; }

/* Order item rows */
.order-items-list        { display: flex; flex-direction: column; gap: 1.25rem; }

.order-item-row {
  display: grid;
  grid-template-columns: 1fr 90px auto;
  gap: 1rem;
  align-items: end;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--color-border-light);
}
.order-item-row:last-child { border-bottom: none; }

.qty-input { text-align: center; }

.remove-item-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: none;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.remove-item-btn:hover { color: #C0392B; }

.add-item-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-moss);
  cursor: none;
  padding: 0;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}
.add-item-btn:hover { color: var(--color-moss-light); }

/* Summary panel */
.order-summary {
  background: var(--color-bg);
  border: 0.5px solid var(--color-border-light);
  padding: 2rem;
}
.order-summary h4 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-light);
  padding: 0.5rem 0;
  border-bottom: 0.5px solid var(--color-border-light);
}
.summary-line.total {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 400;
  border-bottom: none;
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

.info-block {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 0.5px solid var(--color-border-light);
}
.info-block-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.info-block-row + .info-block-row { margin-top: 1rem; }
.info-block-row i { font-size: 1.1rem; color: var(--color-bronze); flex-shrink: 0; margin-top: 2px; }
.info-block-row p { font-size: var(--text-sm); margin: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--color-bg); }
.about-section .text-block p + p { margin-top: 1.25rem; }

.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-text);
  padding-left: 1.75rem;
  border-left: 1px solid var(--color-bronze);
}

.about-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  margin-top: 2rem;
}
.about-img-box {
  overflow: hidden;
  border: 0.5px solid var(--color-border-light);
  background: var(--color-bg-warm);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.5s ease;
}
.about-img-box:hover img { filter: saturate(1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-text);
  color: rgba(249,248,245,0.65);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-bg);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-bronze);
}
.footer-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(249,248,245,0.1);
  margin: var(--space-lg) 0 var(--space-md);
}
.footer-nav-title {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(249,248,245,0.35);
  margin-bottom: 1.25rem;
}
.footer-nav-list          { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav-list a        { font-size: var(--text-sm); font-weight: 300; color: rgba(249,248,245,0.65); }
.footer-nav-list a:hover  { color: var(--color-gold); }

.footer-address {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.95;
  color: rgba(249,248,245,0.65);
  font-style: normal;
}
.footer-address a:hover { color: var(--color-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 0.5px solid rgba(249,248,245,0.08);
  padding-top: 1.5rem;
  margin-top: var(--space-md);
}
.footer-copy { font-size: var(--text-xs); color: rgba(249,248,245,0.28); letter-spacing: 0.04em; }

.footer-legal      { display: flex; gap: 1.5rem; }
.footer-legal a    { font-size: var(--text-xs); color: rgba(249,248,245,0.28); letter-spacing: 0.04em; }
.footer-legal a:hover { color: var(--color-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .navbar-nav-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(249,248,245,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 0.5px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .navbar-nav-custom.is-open   { display: flex; }
  .navbar-toggler-custom       { display: flex; }

  /* Links dentro do menu mobile aberto — sempre escuros (fundo claro) */
  .navbar-nav-custom.is-open .nav-link-custom { color: var(--color-text); }
}

@media (max-width: 767.98px) {
  :root {
    --space-xl:  4rem;
    --space-2xl: 6rem;
  }

  .about-strip .stat-divider { display: none; }
  .footer-bottom              { flex-direction: column; align-items: flex-start; }
  .order-item-row             { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: 900;

  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-text);
  border: 0.5px solid rgba(249,248,245,0.18);
  color: rgba(249,248,245,0.7);
  font-size: 1.1rem;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease,
              background 0.25s ease, color 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-bronze);
  color: #fff;
  border-color: transparent;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring { display: none !important; }

  body { cursor: auto; }
}

@media (max-width: 575.98px) {
  .about-images { grid-template-columns: 1fr; }
}
