/*
  Graato Exports Website
  Main stylesheet: base styles, design tokens, and shared components.
*/

:root {
  /* Colors — Trust Blue system */
  --color-bg: #ffffff;
  --color-text: #1c2b3a;
  --color-accent: #1e5f8e;
  --color-accent-dark: #174a70;
  --color-secondary: #b8c4cc;
  --color-section-alt: #eaeeef2;
  --color-cta: #1e5f8e;
  --color-cta-hover: #174a70;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1fb855;
  --color-muted: #55606b;
  --color-border: #dde3e9;
  --color-error: #c0392b;
  --color-success: #1f8f4d;

  /* Fonts */
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-sub: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(28, 43, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 43, 58, 0.08);
  --shadow-lg: 0 12px 32px rgba(28, 43, 58, 0.12);
  --shadow-cta: 0 8px 24px rgba(30, 95, 142, 0.28);

  /* Layout */
  --container-max: 1200px;
  --navbar-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

a:hover {
  color: var(--color-accent);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h1,
h2 {
  color: var(--color-text);
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-family: var(--font-sub);
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid rgba(74, 98, 116, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -120px;
  z-index: 2000;
  background: var(--color-text);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-sub);
  font-weight: 700;
  padding: var(--space-sm) var(--space-md);
}

.skip-link:focus {
  top: var(--space-md);
}

.container {
  width: min(100% - 48px, var(--container-max));
  margin-inline: auto;
}

.section {
  padding: var(--space-4xl) 0;
}

.section-grey {
  background: var(--color-section-alt);
}

.section-dark {
  background: var(--color-text);
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #ffffff;
}

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

.text-muted {
  color: var(--color-muted);
}

.eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--color-secondary);
}

.intro-text {
  max-width: 860px;
  color: var(--color-text);
  font-size: 1.05rem;
}

.intro-text p + p {
  margin-top: var(--space-md);
}

/* Buttons */
.btn {
  align-items: center;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  display: inline-flex;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 700;
  gap: var(--space-sm);
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1.2;
  min-height: 48px;
  padding: 15px var(--space-xl);
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--color-cta);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: #ffffff;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--color-text);
}

.btn-light:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.btn:disabled,
.btn[aria-disabled='true'] {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.text-link {
  align-items: center;
  color: var(--color-accent);
  display: inline-flex;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  gap: var(--space-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--color-text);
}

.hero-actions,
.section-cta,
.cta-banner__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.section-cta {
  justify-content: center;
  margin-top: var(--space-2xl);
  text-align: center;
}

/* Header and navigation */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.navbar {
  min-height: var(--navbar-height);
}

.navbar__inner {
  align-items: center;
  display: flex;
  gap: var(--space-xl);
  min-height: var(--navbar-height);
}

.navbar__brand,
.footer-brand {
  align-items: center;
  color: var(--color-text);
  display: inline-flex;
  gap: var(--space-sm);
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.navbar__brand:hover,
.footer-brand:hover {
  color: var(--color-accent);
}

.navbar__brand-mark {
  align-items: center;
  background: var(--color-text);
  border-radius: var(--radius-md);
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.navbar__brand-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.navbar__toggle {
  background: transparent;
  border: 0;
  display: none;
  margin-left: auto;
  padding: var(--space-sm);
}

.navbar__toggle span {
  background: var(--color-text);
  border-radius: var(--radius-full);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 26px;
}

.navbar__menu {
  align-items: center;
  display: flex;
  flex: 1;
  gap: var(--space-lg);
  justify-content: flex-end;
}

.navbar__links {
  align-items: center;
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.navbar__links a,
.dropdown__toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-text);
  display: inline-flex;
  font-family: var(--font-sub);
  font-size: 0.92rem;
  font-weight: 600;
  gap: 6px;
  letter-spacing: 0.02em;
  padding: var(--space-sm) 0;
  position: relative;
}

.navbar__links a::after,
.dropdown__toggle::after {
  background: var(--color-accent);
  bottom: 2px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.navbar__links a:hover::after,
.navbar__links a[aria-current='page']::after,
.dropdown__toggle:hover::after {
  transform: scaleX(1);
}

.navbar__links a[aria-current='page'] {
  color: var(--color-accent);
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  left: 0;
  list-style: none;
  min-width: 250px;
  opacity: 0;
  padding: var(--space-sm);
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.dropdown__menu::before {
  content: '';
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  top: -12px;
}

.dropdown:hover > .dropdown__menu,
.dropdown:focus-within > .dropdown__menu,
.dropdown.is-open > .dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown__menu a {
  border-radius: var(--radius-md);
  display: block;
  padding: 10px 12px;
  width: 100%;
}

.dropdown__menu a::after {
  display: none;
}

.dropdown__menu a:hover,
.dropdown__menu a[aria-current='page'] {
  background: var(--color-section-alt);
  color: var(--color-accent);
}

.navbar__whatsapp {
  min-height: 42px;
  padding: 12px 18px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.875rem;
  padding: 14px 0;
}

.breadcrumbs__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs__list li:not(:last-child)::after {
  color: var(--color-secondary);
  content: '/';
  margin-left: 8px;
}

.breadcrumbs a {
  color: var(--color-accent);
}

/* Heroes */
.hero,
.page-hero,
.guide-header,
.product-header {
  background: #ffffff;
}

.hero {
  padding: var(--space-5xl) 0 var(--space-4xl);
}

.hero__grid,
.product-header__grid,
.spotlight-grid,
.contact-grid {
  align-items: center;
  display: grid;
  gap: var(--space-3xl);
}

.hero__content p,
.page-hero__text,
.guide-header p {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 680px;
}

.hero__media img,
.product-header__media img,
.spotlight__media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
}

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

.page-hero {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.page-hero__inner,
.guide-header__inner {
  margin-inline: auto;
  max-width: 860px;
}

.page-hero__text,
.guide-header p {
  margin-inline: auto;
}

.guide-header {
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
}

.guide-meta {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.guide-meta span {
  align-items: center;
  display: inline-flex;
  gap: var(--space-sm);
}

/* Section headers */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header--center {
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.section-header--left {
  max-width: 760px;
  text-align: left;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* Grids and cards */
.card-grid {
  display: grid;
  gap: var(--space-xl);
}

.feature-card,
.product-card,
.category-card,
.guide-card,
.contact-panel,
.inquiry-form,
.toc {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-card,
.guide-card {
  padding: var(--space-xl);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover,
.product-card:hover,
.category-card:hover,
.guide-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon {
  align-items: center;
  background: var(--color-section-alt);
  border-radius: var(--radius-lg);
  color: var(--color-accent);
  display: inline-flex;
  font-size: 1.5rem;
  height: 54px;
  justify-content: center;
  margin-bottom: var(--space-lg);
  width: 54px;
}

.feature-card p,
.product-card p,
.category-card p,
.guide-card p {
  color: var(--color-muted);
}

.category-card,
.product-card {
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.category-card__image,
.product-card__image {
  background: var(--color-section-alt);
  display: block;
  overflow: hidden;
}

.category-card__image img,
.product-card__image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

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

.category-card__content,
.product-card__content {
  padding: var(--space-xl);
}

.product-card__meta,
.guide-card__meta,
.tag {
  color: var(--color-accent);
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.trust-bar__grid {
  display: grid;
  gap: var(--space-md);
}

.trust-item {
  align-items: center;
  color: var(--color-text);
  display: flex;
  font-family: var(--font-sub);
  font-weight: 600;
  gap: var(--space-sm);
}

.trust-item i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

/* Lists and product details */
.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: var(--space-lg) 0;
}

.check-list li {
  color: var(--color-text);
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  color: var(--color-accent);
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.product-facts {
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
}

.product-facts p + p {
  margin-top: var(--space-sm);
}

/* Process timeline */
.process-timeline {
  display: grid;
  gap: var(--space-xl);
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  position: relative;
}

.process-step__number {
  color: var(--color-accent);
  display: block;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

/* CTA sections */
.cta-banner {
  padding: var(--space-4xl) 0;
}

.cta-banner__inner {
  align-items: center;
  display: grid;
  gap: var(--space-xl);
}

.cta-banner__content {
  max-width: 820px;
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.inquiry-note {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.inquiry-note__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
}

.inquiry-note p {
  color: var(--color-text);
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

/* Guide pages */
.toc {
  margin: 0 auto var(--space-3xl);
  max-width: 920px;
  padding: var(--space-xl);
}

.toc h2 {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.toc ol {
  display: grid;
  gap: var(--space-sm);
  padding-left: 1.25rem;
}

.toc a {
  color: var(--color-accent);
  font-weight: 600;
}

.guide-body {
  padding-bottom: var(--space-4xl);
}

.guide-body__inner {
  max-width: 860px;
}

.guide-body section + section {
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
}

.guide-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.disclaimer {
  background: var(--color-section-alt);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
}

/* Forms and contact */
.contact-grid {
  align-items: start;
}

.inquiry-form,
.contact-panel {
  padding: var(--space-xl);
}

.inquiry-form h2,
.contact-panel h2 {
  font-family: var(--font-sub);
  font-size: 1.35rem;
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  gap: var(--space-lg);
}

.form-group {
  border: 0;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

label,
legend {
  color: var(--color-text);
  display: block;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.required {
  color: var(--color-error);
}

.optional {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

input,
select,
textarea {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  min-height: 48px;
  padding: 12px var(--space-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 98, 116, 0.15);
  outline: none;
}

.checkbox-grid {
  display: grid;
  gap: var(--space-sm);
}

.checkbox-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: var(--space-sm);
  margin: 0;
}

.checkbox-item input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.checkbox-custom {
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.checkbox-item input:checked + .checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.checkbox-item input:checked + .checkbox-custom::after {
  color: #ffffff;
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-size: 0.75rem;
  font-weight: 900;
}

.checkbox-item input:focus-visible + .checkbox-custom {
  outline: 3px solid rgba(74, 98, 116, 0.45);
  outline-offset: 3px;
}

.form-submit {
  width: 100%;
}

.form-submit__loading {
  display: none;
}

.form-message {
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: var(--space-lg);
  padding: var(--space-md);
}

.form-message:empty {
  display: none;
}

.form-message--success {
  background: rgba(31, 143, 77, 0.1);
  border: 1px solid rgba(31, 143, 77, 0.35);
  color: var(--color-success);
}

.form-message--error {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: var(--color-error);
}

.contact-list,
.footer-contact {
  display: grid;
  gap: var(--space-md);
  list-style: none;
}

.contact-list li {
  align-items: flex-start;
  display: flex;
  gap: var(--space-sm);
}

.contact-list i {
  color: var(--color-accent);
  margin-top: 5px;
}

.contact-panel__cta {
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.site-footer__grid {
  display: grid;
  gap: var(--space-xl);
}

.site-footer h2 {
  color: #ffffff;
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: var(--space-sm);
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .footer-brand {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: var(--space-md);
}

.footer-note {
  color: var(--color-secondary);
  font-family: var(--font-sub);
  font-weight: 600;
}

.site-footer__bottom {
  border-top: 1px solid rgba(184, 196, 204, 0.2);
  color: var(--color-secondary);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
}

/* Floating WhatsApp */
.floating-whatsapp {
  align-items: center;
  background: var(--color-whatsapp);
  border-radius: var(--radius-full);
  bottom: 24px;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  display: inline-flex;
  font-size: 1.65rem;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 58px;
  z-index: 999;
}

.floating-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: #ffffff;
  transform: translateY(-2px) scale(1.04);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

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

.gallery-item__label {
  background: linear-gradient(transparent, rgba(28, 43, 58, 0.85));
  bottom: 0;
  color: #ffffff;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  left: 0;
  padding: var(--space-2xl) var(--space-md) var(--space-sm);
  position: absolute;
  right: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  gap: var(--space-sm);
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-placeholder i {
  font-size: 2rem;
  opacity: 0.35;
}

/* Gallery on dark sections */
.section-dark .gallery-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .gallery-placeholder i {
  opacity: 0.25;
}

/* Utility spacing */
.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
