/* =============================================
   Sustainability Ceramic & Sanitary Ware
   Premium Luxury Showroom Website
   ============================================= */

:root {
  --primary: #E91B20;
  --secondary: #7B7A82;
  --dark: #111111;
  --light: #F7F7F7;
  --white: #FFFFFF;

  --font-ar: 'IBM Plex Sans Arabic', sans-serif;
  --font-en: 'Montserrat', sans-serif;

  --header-h: clamp(80px, 10vw, 104px);
  --header-logo-h: clamp(58px, 8vw, 82px);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ar);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

body.lang-en {
  font-family: var(--font-en);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition:
    background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-home .header {
  background: transparent;
  box-shadow: none;
}

.page-home .header.header--scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
}

.page-inner .header,
.header--solid {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(1rem, 2vw, 2rem);
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.header__logo img {
  height: var(--header-logo-h);
  width: auto;
  max-width: min(280px, 42vw);
  object-fit: contain;
  filter: none;
  transition:
    height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity var(--transition-fast);
}

.header__logo:hover img {
  opacity: 0.88;
}

.page-home .header:not(.header--scrolled) .nav__link {
  color: var(--white);
}

.page-home .header:not(.header--scrolled) .lang-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.page-home .header:not(.header--scrolled) .menu-toggle__line {
  background: var(--white);
}

.header--scrolled .nav__link,
.page-inner .header .nav__link,
.header--solid .nav__link {
  color: var(--dark);
  opacity: 0.72;
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link.active,
.page-inner .header .nav__link:hover,
.page-inner .header .nav__link.active,
.header--solid .nav__link:hover,
.header--solid .nav__link.active {
  color: var(--dark);
  opacity: 1;
}

.header--scrolled .lang-toggle,
.page-inner .header .lang-toggle,
.header--solid .lang-toggle {
  color: var(--dark);
  border-color: rgba(17, 17, 17, 0.2);
}

.header--scrolled .lang-toggle:hover,
.page-inner .header .lang-toggle:hover,
.header--solid .lang-toggle:hover {
  border-color: var(--primary);
  background: rgba(233, 27, 32, 0.06);
}

.header--scrolled .menu-toggle__line,
.page-inner .header .menu-toggle__line,
.header--solid .menu-toggle__line {
  background: var(--dark);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  list-style: none;
}

.nav__link {
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  position: relative;
  padding-block: 0.25rem;
  white-space: nowrap;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  opacity: 1;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.75rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.lang-toggle:hover {
  border-color: var(--primary);
  background: rgba(233, 27, 32, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.menu-toggle__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.55) 0%,
    rgba(17, 17, 17, 0.7) 50%,
    rgba(17, 17, 17, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding-block: calc(var(--header-h) + 1.5rem) 4rem;
  max-width: 960px;
}

.hero__brand {
  display: block;
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  line-height: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroLogoIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero__brand-logo {
  width: clamp(180px, 38vw, 380px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: none;
}

@keyframes heroLogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-text {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: #c9161b;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ---- Sections ---- */
.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 640px;
}

.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--secondary);
  line-height: 1.8;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 720px;
}

/* ---- About ---- */
.about {
  background: var(--white);
  padding-top: 0;
}

.about__hero {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 520px);
  overflow: hidden;
}

.about__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.45) 100%);
}

.about__body {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.about__content {
  max-width: 820px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about__lead {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__content p {
  color: var(--secondary);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__banner {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}

.about__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__banner:hover img {
  transform: scale(1.02);
}

/* ---- Products / Collections ---- */
.products {
  background: var(--white);
  padding-block: clamp(4rem, 10vw, 7rem);
}

.products > .container:first-child {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.collection {
  padding-block: clamp(1rem, 3vw, 2rem);
}

.collection--alt {
  background: var(--light);
}

.collection__header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-block: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(123, 122, 130, 0.2);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.collection__index {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary);
}

.collection__name {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.showcase {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.showcase:last-child {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.showcase__media {
  position: relative;
  width: 100%;
  height: clamp(320px, 55vw, 680px);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}

.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
}

.showcase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.showcase__media:hover img {
  transform: scale(1.04);
}

.showcase__media:hover::after {
  opacity: 1;
}

.showcase__content {
  padding-block: clamp(1.25rem, 3vw, 2rem);
  max-width: var(--container);
}

.showcase__title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.showcase__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--secondary);
  line-height: 1.75;
  max-width: 560px;
}

@media (min-width: 1024px) {
  .showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .showcase--reverse .showcase__content {
    order: -1;
  }

  .showcase__content.container {
    padding-inline: var(--gutter);
  }
}

/* ---- Gallery ---- */
.gallery {
  background: var(--dark);
  color: var(--white);
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.gallery .section__header {
  margin-inline: auto;
}

.gallery .section__title {
  color: var(--white);
}

.gallery .section__desc {
  color: rgba(255, 255, 255, 0.6);
}

.gallery__showcase {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-inline: clamp(1rem, 3vw, 2rem);
  max-width: 1440px;
  margin-inline: auto;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery__row--hero {
  grid-template-columns: 1fr;
}

.gallery__row--hero .gallery__cell {
  aspect-ratio: 21/9;
}

.gallery__row--duo {
  grid-template-columns: repeat(2, 1fr);
}

.gallery__cell {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
}

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}

.gallery__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(233, 27, 32, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}

.gallery__cell:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}

.gallery__cell:hover::after {
  background: rgba(17, 17, 17, 0.12);
}

/* ---- News ---- */
.news {
  background: var(--light);
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow var(--transition);
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.08);
}

.news-card--featured {
  grid-column: 1 / -1;
}

.news-card__title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.news-card__title a:hover {
  color: var(--primary);
}

.news-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.news-card--featured .news-card__image {
  aspect-ratio: 21/9;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.03);
}

.news-card__body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.news-card__date {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.news-card__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.news-card__excerpt {
  font-size: 0.9375rem;
  color: var(--secondary);
  line-height: 1.7;
}

/* ---- Contact ---- */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
}

.contact__desc {
  color: var(--secondary);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.contact__detail-value {
  font-size: 1.0625rem;
  color: var(--dark);
  transition: color var(--transition-fast);
}

a.contact__detail-value:hover {
  color: var(--primary);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid rgba(123, 122, 130, 0.3);
  background: var(--light);
  color: var(--dark);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form__input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer__brand img {
  height: 36px;
  width: auto;
  margin-inline: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.footer__nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer__info a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer__info a:hover {
  color: var(--white);
}

/* ---- Inner Pages ---- */
.page-hero {
  padding-top: var(--header-h);
  background: var(--dark);
  color: var(--white);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.page-hero .section__title {
  color: var(--white);
}

.page-hero .section__desc {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero__inner {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.nav__link.active {
  opacity: 1;
}

/* ---- News Listing ---- */
.news-page {
  background: var(--light);
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.news-list__item {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.news-list__item:hover {
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
}

.news-list__item--featured {
  border-inline-start: 3px solid var(--primary);
}

.news-list__media {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-list__item--featured .news-list__media {
  aspect-ratio: 21/9;
}

.news-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-list__item:hover .news-list__media img {
  transform: scale(1.03);
}

.news-list__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.news-list__date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.news-list__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--dark);
}

.news-list__excerpt {
  color: var(--secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.news-list__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.15rem;
  transition: opacity var(--transition-fast);
}

.news-list__link:hover {
  opacity: 0.75;
}

/* ---- Article ---- */
.article-page {
  background: var(--white);
}

.article__hero {
  width: 100%;
  max-height: clamp(280px, 50vw, 560px);
  overflow: hidden;
  background: var(--dark);
}

.article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article__body {
  max-width: 780px;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.article__back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 2rem;
  transition: color var(--transition-fast);
}

.article__back:hover {
  color: var(--primary);
}

.article__date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.article__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.article__intro {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(123, 122, 130, 0.2);
}

.article__content p {
  color: var(--secondary);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 2.5rem;
}

.article__gallery img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ---- Contact Page ---- */
.contact-page {
  background: var(--light);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.btn--facebook {
  background: #1877F2;
  color: var(--white);
}

.btn--facebook:hover {
  background: #1464d0;
  transform: translateY(-2px);
}

.contact-map {
  width: 100%;
  aspect-ratio: 16/10;
  border: none;
  background: var(--light);
  min-height: 280px;
}

.contact-map-wrap {
  overflow: hidden;
  background: var(--white);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .news-list__item {
    grid-template-columns: 1.1fr 1fr;
  }

  .news-list__item--featured {
    grid-template-columns: 1.3fr 1fr;
  }

  .news-list__item--featured .news-list__media {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .article__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    text-align: start;
    align-items: start;
    gap: 2rem;
  }

  .footer__brand,
  .footer__info {
    text-align: start;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__copy {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17, 17, 17, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__toolbar {
  position: absolute;
  top: 0;
  inset-inline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  z-index: 2;
}

.lightbox__counter {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.lightbox__actions {
  display: flex;
  gap: 0.75rem;
}

.lightbox__btn {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.lightbox__btn:hover {
  border-color: var(--primary);
  background: rgba(233, 27, 32, 0.12);
}

.lightbox__btn--close {
  border-color: rgba(255, 255, 255, 0.15);
}

.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4.5rem 4rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox.active .lightbox__img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  z-index: 2;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.lightbox__nav:hover {
  color: var(--white);
}

.lightbox__nav--prev {
  inset-inline-start: clamp(0.25rem, 2vw, 1rem);
}

.lightbox__nav--next {
  inset-inline-end: clamp(0.25rem, 2vw, 1rem);
}

.lightbox:fullscreen .lightbox__stage {
  padding: 3rem 2rem;
}

.lightbox:fullscreen .lightbox__img {
  max-width: 100vw;
  max-height: 100vh;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(2) { transition-delay: 0.35s; }
.hero .reveal:nth-child(3) { transition-delay: 0.5s; }
.hero .reveal:nth-child(4) { transition-delay: 0.65s; }
.hero .reveal:nth-child(5) { transition-delay: 0.8s; }

/* ---- Responsive ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__brand-logo {
    width: clamp(220px, 34vw, 320px);
  }
}

@media (min-width: 1024px) {
  .header__logo img {
    max-width: 300px;
  }

  .hero__brand-logo {
    width: clamp(280px, 32vw, 420px);
  }
}

@media (max-width: 767px) {
  .header__logo img {
    max-width: min(220px, 52vw);
  }

  .hero__brand-logo {
    width: clamp(180px, 56vw, 250px);
  }
}

@media (min-width: 768px) {
  .about__hero {
    height: clamp(360px, 40vw, 560px);
  }

  .gallery__row--hero .gallery__cell {
    aspect-ratio: 2.4/1;
  }

  .news__grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card--featured {
    grid-template-columns: 1.2fr 1fr;
  }

  .news-card--featured .news-card__image {
    aspect-ratio: auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none !important;
  }

  .nav {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem var(--gutter);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .header--scrolled .nav,
  .page-inner .header .nav,
  .header--solid .nav {
    background: var(--white);
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  }

  .header--scrolled .nav .nav__link,
  .page-inner .header .nav .nav__link,
  .header--solid .nav .nav__link {
    color: var(--dark);
    opacity: 0.85;
    border-bottom-color: rgba(17, 17, 17, 0.08);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 767px) {
  .gallery__row,
  .gallery__row--duo {
    grid-template-columns: 1fr;
  }

  .gallery__row--hero .gallery__cell,
  .gallery__cell {
    aspect-ratio: 4/3;
  }

  .lightbox__nav {
    font-size: 2rem;
    padding: 0.5rem;
  }

  .lightbox__stage {
    padding: 4rem 1rem;
  }

  .news-card--featured {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__brand {
    opacity: 1;
    transform: none;
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
