/* Wiets Inc. — Brand Stylesheet */
:root {
  --forest: #2C4A3E;
  --forest-dark: #1E3329;
  --bark: #4A3728;
  --earth: #8B6914;
  --amber: #C87941;
  --amber-light: #E8A66A;
  --cream: #F7F3ED;
  --cream-dark: #EDE6DA;
  --sage: #6B8F71;
  --charcoal: #2A2A2A;
  --gray: #6B6B6B;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(44, 74, 62, 0.12);
  --shadow-lg: 0 12px 48px rgba(44, 74, 62, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 74, 62, 0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest-dark);
}

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

.logo-link img { height: 72px; width: 72px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-text .tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--amber);
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: rgba(44, 74, 62, 0.08);
  color: var(--forest);
}

.nav-desktop .nav-cta {
  background: var(--forest);
  color: var(--white);
  margin-left: 0.5rem;
}

.nav-desktop .nav-cta:hover {
  background: var(--forest-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  color: var(--forest);
  min-width: 44px;
  min-height: 44px;
}

.menu-toggle svg { width: 28px; height: 28px; }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(44, 74, 62, 0.1);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-mobile.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--bark);
  border-bottom: 1px solid rgba(44, 74, 62, 0.06);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile .nav-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
  border: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 121, 65, 0.35);
}

.btn-primary:hover {
  background: var(--amber-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 121, 65, 0.4);
}

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

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

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

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 51, 41, 0.88) 0%,
    rgba(44, 74, 62, 0.72) 50%,
    rgba(74, 55, 40, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 1.5rem;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero-content .lead {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(200, 121, 65, 0.25);
  border: 1px solid rgba(200, 121, 65, 0.5);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}

/* ── Sections ── */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

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

.bg-white { background: var(--white); }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h2, .bg-forest h3 { color: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 74, 62, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 62, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  color: var(--forest);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p { color: var(--gray); font-size: 0.9375rem; }

/* ── Cycle Section ── */
.cycle-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.cycle-step {
  text-align: center;
  position: relative;
}

.cycle-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.cycle-step h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.cycle-step p { color: var(--gray); font-size: 0.9375rem; }

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* ── Gallery Preview ── */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
}

.gallery-preview-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-preview-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-preview-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(30, 51, 41, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-preview-item:hover .overlay { opacity: 1; }

.gallery-preview-item .overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery-preview-item .play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(200, 121, 65, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ── Gallery Page ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--bark);
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: rgba(44, 74, 62, 0.15);
}

.filter-btn.active {
  background: var(--forest);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-item.hidden { display: none; }

.gallery-item-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item-info {
  padding: 1rem 1.25rem;
}

.gallery-item-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.gallery-item-info p {
  font-size: 0.8125rem;
  color: var(--gray);
  margin: 0;
}

.gallery-item .type-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: rgba(30, 51, 41, 0.75);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.gallery-item .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(200, 121, 65, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}

.gallery-item:hover .play-icon { transform: translate(-50%, -50%) scale(1.1); }

/* ── GLightbox (gallery viewer) ── */
.goverlay {
  background: rgba(30, 51, 41, 0.96) !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(247, 243, 237, 0.15);
  opacity: 1;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: rgba(200, 121, 65, 0.75);
}

.glightbox-clean .gclose svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
  fill: #fff;
}

.glightbox-clean .gslide-image img {
  border-radius: var(--radius-sm);
}

.glightbox-clean .gslide-media {
  box-shadow: none;
}

@media (max-width: 768px) {
  .glightbox-clean .gclose,
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    width: 44px;
    height: 44px;
  }

  .glightbox-clean .gslide-image img {
    max-height: 78dvh;
  }
}

/* ── Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.product-card:hover { transform: translateY(-4px); }

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

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body { padding: 1.5rem; }

.product-card-body h3 { margin-bottom: 0.5rem; }

.product-card-body p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.product-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(200, 121, 65, 0.12);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── About ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(200, 121, 65, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.about-feature-icon svg { width: 22px; height: 22px; }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}

.contact-main .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.contact-main h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.contact-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.contact-phone-large {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-phone-large:hover { color: var(--amber); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 74, 62, 0.06);
}

.contact-list {
  margin: 0;
  padding: 0;
}

.contact-list-item {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(44, 74, 62, 0.08);
}

.contact-list-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-list-item:first-of-type {
  padding-top: 0;
}

.contact-list dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.contact-list dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
}

.contact-list a:hover { color: var(--amber); }

.contact-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 74, 62, 0.08);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: var(--cream);
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }

.cta-banner p {
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.125rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero h1 { margin-bottom: 1rem; }

.page-hero .lead {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer {
  background: var(--forest-dark);
  color: rgba(247, 243, 237, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 72px; width: 72px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: rgba(247, 243, 237, 0.7);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 237, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-preview-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-preview {
    grid-template-columns: 1fr;
  }
  .gallery-preview-item:first-child {
    grid-column: span 1;
    min-height: 240px;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .hero { min-height: 85vh; }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-contact a {
  color: var(--amber-light);
}

.footer-contact a:hover {
  color: var(--white);
}

.nav-mobile a.active {
  background: rgba(44, 74, 62, 0.08);
  color: var(--forest);
}

.nav-mobile .nav-cta.active {
  background: var(--forest);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.hero-bg img {
  object-position: center 40%;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .about-image {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .gallery-filters { gap: 0.375rem; }
  .filter-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
  }
  .contact-actions .btn { flex: 1; min-width: 0; }
}