:root {
  --teal-deep: #0a3530;
  --teal: #1a5c52;
  --teal-mid: #2a7a6e;
  --teal-soft: #3d9a8a;
  --gold: #b8944f;
  --gold-light: #d4b872;
  --gold-muted: #9a7a3c;
  --ink: #0c2e2a;
  --cream: #f4f1ea;
  --cream-dark: #e8e4db;
  --white: #ffffff;
  --muted: #5a7a72;
  --line: rgba(26, 92, 82, 0.12);
  --line-gold: rgba(184, 148, 79, 0.35);
  --wrap: min(1180px, calc(100% - 2.5rem));
  --header-h: 72px;
  --sidebar-w: min(320px, 88vw);
  --serif: "El Messiri", "Cormorant Garamond", Georgia, serif;
  --sans: "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 64px rgba(10, 53, 48, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Ambient glow */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(184, 148, 79, 0.09), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(26, 92, 82, 0.08), transparent);
}

.label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.label--light {
  color: rgba(255, 255, 255, 0.55);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
}

h2 em {
  font-style: normal;
  color: var(--teal);
}

.section-dark h2 em {
  color: var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(184, 148, 79, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 148, 79, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn--teal:hover {
  background: var(--teal-deep);
}

.btn--line {
  background: transparent;
  color: var(--teal);
  border-color: var(--line);
}

.btn--line:hover {
  border-color: var(--teal);
  background: rgba(26, 92, 82, 0.06);
}

/* Glass */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.glass-dark {
  background: rgba(10, 53, 48, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Masthead */
.masthead {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.masthead.is-scrolled {
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: var(--wrap);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.35rem 0.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 238, 0.9) 100%);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border: 1px solid rgba(184, 148, 79, 0.5);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(184, 148, 79, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.brand__logo-frame--sidebar {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(212, 184, 114, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 20px rgba(212, 184, 114, 0.12);
}

.brand__mark {
  width: auto;
  height: 40px;
  max-width: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}

.brand__tag {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.masthead__nav {
  display: flex;
  gap: 0.25rem;
}

.masthead__nav a {
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--muted);
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.masthead__nav a:hover {
  color: var(--teal);
  background: rgba(26, 92, 82, 0.06);
}

.masthead__cta {
  padding: 0.5rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s;
}

.masthead__cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.masthead__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  color: var(--teal);
}

/* App-style sidebar */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 35, 32, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.sidebar-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 210;
  width: var(--sidebar-w);
  height: 100dvh;
  background: linear-gradient(165deg, var(--teal-deep) 0%, #0e4a42 55%, var(--teal) 100%);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: 8px 0 48px rgba(0, 0, 0, 0.25);
}

.sidebar.is-open {
  transform: translateX(0);
}

.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.sidebar__brand img {
  width: auto;
  height: 38px;
  max-width: 42px;
  object-fit: contain;
  filter: brightness(1.05);
}

.sidebar__brand span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.sidebar__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1rem;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}

.sidebar__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateX(-4px);
}

[dir="rtl"] .sidebar__nav a:hover {
  transform: translateX(4px);
}

.sidebar__nav-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(184, 148, 79, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.sidebar__foot {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar__foot p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.5rem;
  letter-spacing: 0.1em;
}

.sidebar__foot a {
  display: block;
  font-size: 0.9rem;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 0.35rem;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-h);
  background: linear-gradient(155deg, var(--teal-deep) 0%, #0d4a44 45%, var(--teal) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero__orb--gold {
  width: 420px;
  height: 420px;
  top: -10%;
  inset-inline-end: -8%;
  background: rgba(184, 148, 79, 0.22);
}

.hero__orb--teal {
  width: 300px;
  height: 300px;
  bottom: 10%;
  inset-inline-start: -5%;
  background: rgba(61, 154, 138, 0.2);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: var(--wrap);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  background: rgba(184, 148, 79, 0.12);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  display: block;
}

.hero h1 .hero__accent {
  color: var(--gold-light);
  font-weight: 500;
}

.hero__desc {
  max-width: 28rem;
  font-size: 0.94rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone-ring {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 148, 79, 0.25);
  border-radius: 50%;
  animation: spinSlow 24s linear infinite;
}

.hero__phone-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.hero__phone-frame {
  position: relative;
  width: min(100%, 320px);
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__phone-frame img {
  border-radius: 20px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.hero__float-card {
  position: absolute;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero__float-card--top {
  top: 8%;
  inset-inline-start: -8%;
  color: var(--teal);
}

.hero__float-card--bottom {
  bottom: 12%;
  inset-inline-end: -6%;
  color: var(--gold);
  background: rgba(184, 148, 79, 0.2);
  border: 1px solid var(--line-gold);
}

/* Marquee */
.marquee {
  background: var(--teal-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2rem;
  padding-inline-end: 2rem;
}

.marquee__group span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee__sep {
  color: var(--gold);
  letter-spacing: 0;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Brands strip */
.brands {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-card {
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.brand-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 92, 82, 0.08);
}

.brand-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.brand-card span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Showcase */
.showcase {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.showcase__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.showcase__head p {
  max-width: 18rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.showcase__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.showcase__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.showcase__viewport::-webkit-scrollbar {
  display: none;
}

.showcase__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.showcase__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  cursor: pointer;
  transition: all 0.25s;
}

.showcase__nav:hover:not(:disabled) {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.showcase__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.showcase__slide {
  flex-shrink: 0;
  width: clamp(240px, 30vw, 300px);
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.showcase__slide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.showcase__slide-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}

.showcase__slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.showcase__slide:hover .showcase__slide-img img {
  transform: scale(1.06);
}

.showcase__slide-info {
  padding: 1rem 1.15rem;
}

.showcase__slide-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.showcase__slide-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.2rem;
}

.showcase__slide-info p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* Features bento */
.features {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features__bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.feature-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(184, 148, 79, 0.5);
}

.feature-card--large {
  grid-column: span 5;
}

.feature-card--mid {
  grid-column: span 4;
}

.feature-card--small {
  grid-column: span 3;
}

.feature-card__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.feature-card--dark {
  grid-column: span 7;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  border-color: transparent;
  color: var(--white);
}

.feature-card--dark h3 {
  color: var(--gold-light);
}

.feature-card--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card--dark .feature-card__num {
  color: var(--gold-light);
}

/* Gallery mosaic */
.gallery {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--a { grid-column: span 4; grid-row: span 2; }
.gallery__item--b { grid-column: span 3; }
.gallery__item--c { grid-column: span 5; }
.gallery__item--d { grid-column: span 3; }
.gallery__item--e { grid-column: span 4; }
.gallery__item--f { grid-column: span 5; }

.gallery__label {
  position: absolute;
  bottom: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(10, 53, 48, 0.75);
  border-radius: 100px;
}

/* Contact */
.contact {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.contact__panel::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -30%;
  inset-inline-end: -10%;
  border-radius: 50%;
  background: rgba(184, 148, 79, 0.12);
  pointer-events: none;
}

.contact__panel h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact__panel h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.contact__lead {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 24rem;
}

.contact__details {
  display: grid;
  gap: 1.25rem;
}

.contact__item span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.contact__item a,
.contact__item strong {
  font-size: 1rem;
  color: var(--gold-light);
  text-decoration: none;
}

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

.contact__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact__logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  margin: 0 auto 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(212, 184, 114, 0.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(212, 184, 114, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact__logo-wrap img {
  width: auto;
  height: clamp(100px, 22vw, 130px);
  max-width: min(160px, 40vw);
  margin: 0;
  object-fit: contain;
}

.contact__logo-wrap strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.contact__logo-wrap small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
}

.brand__logo-frame--footer {
  padding: 0.3rem 0.45rem;
}

.brand__logo-frame--footer .brand__mark {
  height: 34px;
  max-width: 38px;
}

.footer p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.footer a {
  color: var(--teal);
  text-decoration: none;
}

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

.footer__credit {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__credit:hover {
  color: var(--gold);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .masthead__nav,
  .masthead__cta {
    display: none;
  }

  .masthead__toggle {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    max-width: 280px;
    margin-inline: auto;
  }

  .hero__float-card--top {
    inset-inline-start: 0;
  }

  .hero__float-card--bottom {
    inset-inline-end: 0;
  }

  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .feature-card--large,
  .feature-card--mid,
  .feature-card--small,
  .feature-card--dark {
    grid-column: span 1;
  }

  .gallery__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery__item--a,
  .gallery__item--b,
  .gallery__item--c,
  .gallery__item--d,
  .gallery__item--e,
  .gallery__item--f {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item--a {
    grid-column: span 2;
  }

  .contact__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact__lead {
    margin-inline: auto;
  }

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

  .showcase__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: var(--shadow);
  }

  .showcase__nav--prev {
    left: 0.5rem;
  }

  .showcase__nav--next {
    right: 0.5rem;
  }

  .showcase__carousel {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__phone-ring {
    animation: none;
  }
}
