:root {
  --champagne: #fff5e8;
  --olive: #8c8559;
  --gold-caramel: #c8854b;
  --rose-nude: #d8b8ae;
  --sand: #b7afa0;
  --terracotta: #8f2f1e;
  --ink: #2d211b;
  --muted: #766c62;
  --cream: var(--champagne);
  --linen: #f2e6d8;
  --porcelain: #fffcf7;
  --clay: var(--gold-caramel);
  --cacao: var(--terracotta);
  --palm: var(--olive);
  --gold: var(--gold-caramel);
  --line: rgba(143, 47, 30, 0.14);
  --soft-line: rgba(140, 133, 89, 0.18);
  --shadow: 0 16px 42px rgba(45, 33, 27, 0.07);
  --serif: "Lovelace", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", "Trebuchet MS", sans-serif;
  --arabic: "Noto Naskh Arabic", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--champagne), #fffaf2 46%, var(--linen));
  overflow-x: hidden;
}

body::before {
  content: none;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--champagne);
  background: var(--terracotta);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(200, 133, 75, 0.75);
  outline-offset: 4px;
}

[data-lang="ar"] {
  display: none !important;
  font-family: var(--arabic);
}

html[data-language="ar"] [data-lang="en"] {
  display: none !important;
}

html[data-language="ar"] [data-lang="ar"] {
  display: revert !important;
}

html[data-language="ar"] body {
  font-family: var(--arabic);
}

html[data-language="ar"] h1,
html[data-language="ar"] h2,
html[data-language="ar"] h3 {
  font-family: var(--arabic);
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.05rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 245, 232, 0.92);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(16px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.75rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: rgba(255, 245, 232, 0.72);
}

.language-button {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: 700 0.82rem var(--sans);
}

.language-button.is-active {
  color: var(--champagne);
  background: var(--olive);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.brand span {
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 400;
  color: var(--terracotta);
}

.brand small {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.brand small::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: rgba(143, 47, 30, 0.36);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: #6f655c;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

nav a,
.text-link {
  position: relative;
}

nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold-caramel);
  transition: transform 240ms ease;
}

nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 3rem;
  padding: 0 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.sticky-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.65rem;
  align-items: center;
  min-width: 9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 245, 232, 0.22);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(143, 47, 30, 0.92);
  box-shadow: 0 14px 30px rgba(143, 47, 30, 0.16);
  backdrop-filter: blur(16px);
  animation: none;
}

.sticky-whatsapp small {
  grid-column: 2;
  color: rgba(255, 245, 232, 0.68);
  line-height: 0.8;
}

.whatsapp-dot {
  grid-row: 1 / span 2;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  background: #6edb83;
  box-shadow: none;
  animation: none;
}

.nav-cta,
.button.primary {
  color: var(--champagne);
  background: var(--terracotta);
  box-shadow: 0 12px 26px rgba(143, 47, 30, 0.13);
}

.button.secondary {
  color: var(--terracotta);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.6);
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5.5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(29rem, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  min-height: clamp(34rem, calc(100svh - 8rem), 46rem);
  overflow: hidden;
  isolation: isolate;
  color: var(--terracotta);
  background:
    radial-gradient(circle at 20% 18%, rgba(200, 133, 75, 0.14), transparent 28%),
    linear-gradient(115deg, var(--champagne) 0%, #fffaf2 44%, #ead8c8 100%);
  padding: 0;
  border-bottom: 1px solid var(--soft-line);
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 245, 232, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(45, 33, 27, 0.02), rgba(45, 33, 27, 0.32));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.08) contrast(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 245, 232, 0.98) 0%, rgba(255, 245, 232, 0.88) 40%, rgba(255, 245, 232, 0) 55%),
    linear-gradient(180deg, transparent 0%, rgba(45, 33, 27, 0.04) 100%);
}

html[data-language="ar"] .hero .eyebrow,
html[data-language="ar"] .hero .hero-text,
html[data-language="ar"] .hero-proof span {
  color: var(--muted);
  text-shadow: none;
}

html[data-language="ar"] .hero {
  grid-template-columns: minmax(29rem, 0.95fr) minmax(0, 1.05fr);
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 133, 75, 0.14), transparent 28%),
    linear-gradient(245deg, var(--champagne) 0%, #fffaf2 44%, #ead8c8 100%);
}

html[data-language="ar"] .hero-media {
  grid-column: 2;
}

html[data-language="ar"] .hero-media::after {
  background:
    linear-gradient(270deg, rgba(255, 245, 232, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(45, 33, 27, 0.02), rgba(45, 33, 27, 0.32));
}

html[data-language="ar"] .hero::before {
  background:
    linear-gradient(270deg, rgba(255, 245, 232, 0.98) 0%, rgba(255, 245, 232, 0.88) 40%, rgba(255, 245, 232, 0) 55%),
    linear-gradient(180deg, transparent 0%, rgba(45, 33, 27, 0.04) 100%);
}

html[data-language="ar"] .hero h1 {
  font-weight: 500;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 33, 27, 0.14) 58%,
    rgba(255, 245, 232, 0.42)
  );
  z-index: 1;
}

.hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  z-index: 2;
  isolation: isolate;
  max-width: 48rem;
  padding: clamp(2.25rem, 4.6vw, 4.6rem);
}

.hero .eyebrow {
  color: var(--olive);
}

.hero h1 {
  max-width: 13ch;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 4.65vw, 5.15rem);
  letter-spacing: 0;
}

.hero .hero-text {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

html[data-language="ar"] .hero-copy {
  grid-column: 1;
  justify-self: stretch;
  text-align: right;
}

html[data-language="ar"] .hero .hero-text {
  margin-inline-start: auto;
}

html[data-language="ar"] .hero-actions,
html[data-language="ar"] .booking-prep,
html[data-language="ar"] .booking-prep ul,
html[data-language="ar"] .hero-proof {
  justify-content: flex-end;
}

.hero .hero-actions {
  margin-top: 1.6rem;
}

.hero .button.secondary {
  color: var(--terracotta);
  border-color: var(--line);
  background: rgba(255, 252, 247, 0.58);
}

.hero .button.primary {
  color: var(--champagne);
  background: var(--terracotta);
  box-shadow: 0 14px 30px rgba(143, 47, 30, 0.14);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--olive);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--terracotta);
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4.6rem, 11vw, 10.5rem);
}

h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--terracotta);
}

.hero-text,
.story-copy,
.method-panel p,
.transform-copy p,
.visit-card p,
.arabic-note p {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  max-width: 46rem;
  margin-top: 1.15rem;
}

.hero-proof span {
  color: rgba(140, 133, 89, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof span:not(:last-child)::after {
  content: "/";
  margin-left: 0.75rem;
  color: rgba(200, 133, 75, 0.46);
}

.booking-prep {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  align-items: center;
  max-width: 45rem;
  margin-top: 1rem;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(140, 133, 89, 0.22);
}

.booking-prep p {
  margin: 0;
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-prep ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-prep li {
  border: 1px solid rgba(140, 133, 89, 0.22);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  color: var(--terracotta);
  background: rgba(255, 252, 247, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
}

.story {
  border-block: 1px solid var(--soft-line);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(183, 175, 160, 0.18), transparent 54%),
    rgba(255, 250, 242, 0.54);
}

.story::before,
.social-gallery::before {
  content: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.story-copy p + p {
  margin-top: 1.3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.timeline-item {
  position: relative;
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid var(--soft-line);
  border-radius: 0.5rem;
  background: rgba(255, 252, 247, 0.62);
  box-shadow: none;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 2.05rem;
  right: -1rem;
  width: 1rem;
  height: 1px;
  background: rgba(140, 133, 89, 0.34);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item span {
  color: var(--gold-caramel);
  font-weight: 700;
}

.timeline-item h3 {
  margin: 2rem 0 0.75rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.artist-card,
.method-panel,
.visit-card,
.arabic-note {
  border: 1px solid var(--soft-line);
  background: rgba(255, 252, 247, 0.68);
  box-shadow: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 0.5rem;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(200, 133, 75, 0.38);
  background: rgba(255, 252, 247, 0.94);
}

.service-card:hover .service-cta {
  transform: translateX(0.15rem);
}

.service-card > span {
  color: var(--gold-caramel);
  font-weight: 700;
}

.service-card p,
.service-card small,
.artist-card p,
.step p,
.gulf-list p,
.site-footer p,
.info-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card small {
  display: block;
  margin: 0 0 1.4rem;
  font-size: 0.86rem;
}

.service-details {
  margin: 0 0 1.2rem;
  border-block: 1px solid var(--soft-line);
  padding: 0.8rem 0;
}

.service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--olive);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.service-details summary::-webkit-details-marker {
  display: none;
}

.service-details summary::after {
  content: "+";
  color: var(--gold-caramel);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.service-details[open] summary::after {
  content: "-";
}

.service-details dl {
  display: grid;
  gap: 0.75rem;
  margin: 0.9rem 0 0;
}

.service-details dl > div {
  display: grid;
  gap: 0.16rem;
}

.service-details dt {
  color: var(--gold-caramel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: var(--champagne);
  background: var(--olive);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(140, 133, 89, 0.14);
  transition: transform 220ms ease, background 220ms ease;
}

.service-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 1rem;
  border-block: 1px solid var(--soft-line);
  padding: 1.2rem 0;
}

.service-note p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.method-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 0.65rem;
  background:
    linear-gradient(135deg, rgba(216, 184, 174, 0.2), transparent 58%),
    rgba(255, 252, 247, 0.78);
}

.method-steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--soft-line);
}

.step span {
  font-family: var(--serif);
  color: var(--olive);
  font-size: 2rem;
}

.step p {
  margin: 0;
}

.gulf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(140, 133, 89, 0.98), rgba(110, 106, 72, 0.96));
  color: var(--champagne);
  border-radius: 0;
}

.gulf .eyebrow,
.gulf-list p {
  color: rgba(255, 245, 232, 0.86);
}

.gulf-copy h2 {
  max-width: 10ch;
}

.gulf-list {
  display: grid;
  gap: 1rem;
}

.gulf-list p {
  margin: 0;
  padding: 1.1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 232, 0.22);
  border-radius: 0;
  background: transparent;
}

.trust {
  background:
    linear-gradient(180deg, rgba(255, 245, 232, 0.08), rgba(183, 175, 160, 0.18));
}

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

.trust-card {
  display: grid;
  align-content: space-between;
  min-height: 16rem;
  padding: 1.35rem;
  border: 1px solid var(--soft-line);
  border-top-color: rgba(200, 133, 75, 0.48);
  border-radius: 0.5rem;
  background: rgba(255, 252, 247, 0.66);
  box-shadow: none;
}

.trust-card strong {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.9;
}

.trust-card span {
  color: var(--muted);
  line-height: 1.45;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.artist-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(11rem, 0.82fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 26rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 0.65rem;
}

.artist-card::after {
  content: none;
}

.artist-portrait {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 22rem;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 1rem;
  color: var(--champagne);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 -7rem 5rem rgba(45, 33, 27, 0.22);
}

.artist-portrait::before {
  content: attr(data-image-slot);
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: rgba(255, 245, 232, 0.78);
  background: rgba(140, 133, 89, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.artist-portrait span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(255, 245, 232, 0.28);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 2.6rem;
  background: rgba(143, 47, 30, 0.34);
  backdrop-filter: blur(10px);
}

.mariele-photo {
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.02), rgba(36, 28, 24, 0.42)),
    url("./images/site/responsive/artist-process-720.jpg") 50% 42% / cover;
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.02), rgba(36, 28, 24, 0.42)),
    image-set(
      url("./images/site/responsive/artist-process-720.webp") type("image/webp"),
      url("./images/site/responsive/artist-process-720.jpg") type("image/jpeg")
    ) 50% 42% / cover;
}

.grazielle-photo {
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.02), rgba(36, 28, 24, 0.44)),
    url("./images/site/responsive/team-energy-720.jpg") 48% 35% / cover;
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.02), rgba(36, 28, 24, 0.44)),
    image-set(
      url("./images/site/responsive/team-energy-720.webp") type("image/webp"),
      url("./images/site/responsive/team-energy-720.jpg") type("image/jpeg")
    ) 48% 35% / cover;
}

.artist-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.artist-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.artist-meta h3 {
  margin-bottom: 0;
}

.artist-meta a {
  color: var(--gold-caramel);
  font-weight: 700;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.artist-tags span {
  border: 1px solid rgba(143, 47, 30, 0.13);
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  color: var(--terracotta);
  background: rgba(255, 245, 232, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.transformations {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.social-gallery {
  overflow: hidden;
}

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

.social-gallery-heading h2 {
  max-width: 12ch;
}

.reel-track {
  display: grid;
  grid-auto-columns: minmax(15rem, 22vw);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.3rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.reel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 29rem;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 232, 0.28);
  border-radius: 0.65rem;
  margin: 0;
  padding: 1rem;
  color: var(--champagne);
  text-shadow: 0 2px 18px rgba(36, 28, 24, 0.5);
  scroll-snap-align: start;
  box-shadow: none;
  transition: transform 260ms ease;
  isolation: isolate;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(36, 28, 24, 0.04), rgba(36, 28, 24, 0.54));
}

.reel-card picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.reel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card:hover {
  transform: translateY(-0.45rem) rotate(-0.4deg);
}

.reel-card span {
  width: max-content;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(140, 133, 89, 0.5);
  backdrop-filter: blur(8px);
}

.reel-card strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 0.95;
}

.info-card {
  border: 1px solid var(--soft-line);
  border-radius: 0.5rem;
  padding: 1.4rem;
  background: rgba(255, 252, 247, 0.68);
  box-shadow: none;
}

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

.info-card p {
  margin-bottom: 0;
}

.faq {
  background:
    linear-gradient(180deg, rgba(255, 245, 232, 0.4), rgba(216, 184, 174, 0.16)),
    rgba(255, 250, 242, 0.4);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  display: grid;
  align-content: start;
  min-height: 15rem;
  border: 1px solid var(--soft-line);
  border-radius: 0.5rem;
  padding: 1.35rem;
  background: rgba(255, 252, 247, 0.7);
  box-shadow: none;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--clay);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(8rem, 1fr));
  gap: 0.8rem;
  min-height: 34rem;
}

.gallery-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 22rem;
  overflow: hidden;
  margin: 0;
  padding: 1rem;
  border-radius: 0.65rem;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(36, 28, 24, 0.54);
  box-shadow: none;
  isolation: isolate;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(36, 28, 24, 0.02), rgba(36, 28, 24, 0.5));
}

.gallery-card picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  position: relative;
  z-index: 1;
}

.gallery-card:nth-child(even) {
  align-self: end;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 1rem;
  align-items: stretch;
}

.info {
  background:
    linear-gradient(90deg, rgba(183, 175, 160, 0.18), transparent 45%),
    rgba(255, 250, 242, 0.18);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.visit-card,
.arabic-note {
  border-radius: 0.65rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.arabic-note {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 24rem;
  color: var(--champagne);
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.06), rgba(140, 133, 89, 0.74)),
    url("./images/site/responsive/sheikha-tower-720.jpg") center / cover;
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.06), rgba(140, 133, 89, 0.74)),
    image-set(
      url("./images/site/responsive/sheikha-tower-720.webp") type("image/webp"),
      url("./images/site/responsive/sheikha-tower-720.jpg") type("image/jpeg")
    ) center / cover;
}

.arabic-note span {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.arabic-note p {
  color: rgba(255, 245, 232, 0.82);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 5vw, 5.5rem);
  border-top: 1px solid var(--soft-line);
  background: rgba(255, 245, 232, 0.45);
}

.site-footer span {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.site-footer a {
  color: var(--terracotta);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.not-found {
  width: min(44rem, calc(100% - 2rem));
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--soft-line);
  background: rgba(255, 252, 247, 0.72);
}

.not-found .brand {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.not-found h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 10vw, 7.5rem);
}

.not-found p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}

.reveal {
  animation: rise-in 760ms ease both;
}

.delay-1 {
  animation-delay: 90ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 270ms;
}

.delay-4 {
  animation-delay: 360ms;
}

@keyframes booking-pulse {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-0.22rem) scale(1.035);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 219, 131, 0.45);
  }

  70% {
    box-shadow: 0 0 0 0.65rem rgba(110, 219, 131, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(110, 219, 131, 0);
  }
}

@keyframes rise-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
    animation: none;
  }

  .sticky-whatsapp,
  .whatsapp-dot {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero,
  .story-grid,
  .method,
  .gulf,
  .transformations,
  .visit {
    grid-template-columns: 1fr;
  }

  .timeline,
  .trust-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-rows: minmax(15.5rem, 32svh) auto;
    min-height: auto;
    background:
      radial-gradient(circle at 70% 22%, rgba(200, 133, 75, 0.2), transparent 34%),
      linear-gradient(135deg, var(--champagne), #fffaf2 52%, var(--linen));
  }

  html[data-language="ar"] .hero {
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 70% 22%, rgba(200, 133, 75, 0.2), transparent 34%),
      linear-gradient(135deg, var(--champagne), #fffaf2 52%, var(--linen));
  }

  .hero-media,
  html[data-language="ar"] .hero-media {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: clamp(16rem, 34svh, 25rem);
  }

  .hero-media::after,
  html[data-language="ar"] .hero-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(45, 33, 27, 0.02),
        rgba(45, 33, 27, 0.24)
      );
  }

  .hero-copy,
  html[data-language="ar"] .hero-copy {
    grid-column: 1;
    grid-row: 2;
    max-width: 46rem;
    padding: clamp(2.25rem, 6vw, 4rem) clamp(1.25rem, 6vw, 4rem) clamp(2.6rem, 6vw, 4rem);
  }

  .hero::before,
  html[data-language="ar"] .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 245, 232, 0) 0%,
        rgba(255, 245, 232, 0.08) 48%,
        rgba(255, 245, 232, 0.82) 100%
      );
  }

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

  .artist-card {
    grid-template-columns: 1fr;
  }

  .artist-portrait {
    min-height: 18rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 0.9rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .language-switch {
    order: 2;
  }

  .language-button {
    padding: 0.4rem 0.5rem;
  }

  .nav-cta {
    min-height: 2.55rem;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

  .sticky-whatsapp {
    right: 1rem;
    bottom: 1rem;
    min-width: 7.8rem;
    padding: 0.72rem 0.85rem;
  }

  nav {
    gap: 0.72rem;
    width: 100%;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .section {
    padding-block: 4rem;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .hero {
    min-height: auto;
    grid-template-rows: minmax(15rem, 30svh) auto;
    padding: 0;
  }

  .hero-media,
  html[data-language="ar"] .hero-media {
    min-height: clamp(15.5rem, 32svh, 21rem);
  }

  .hero-copy,
  html[data-language="ar"] .hero-copy {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .hero h1 {
    max-width: 13.5ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2.32rem, 9.3vw, 3.15rem);
    line-height: 1;
  }

  .hero .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  html[data-language="ar"] .hero .hero-text {
    color: var(--muted);
  }

  .hero .hero-actions {
    margin-top: 1.25rem;
  }

  .sticky-whatsapp {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .service-grid,
  .artist-grid,
  .gallery,
  .timeline,
  .trust-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item::before {
    display: none;
  }

  .service-card,
  .artist-card {
    min-height: auto;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .gallery {
    min-height: auto;
  }

  .gallery-card,
  .gallery-card:nth-child(even) {
    align-self: stretch;
    min-height: 16rem;
    border-radius: 0.65rem;
  }

  .button {
    width: 100%;
  }

  .service-cta {
    width: 100%;
  }

  .social-gallery-heading {
    display: grid;
    gap: 1rem;
  }

  .reel-track {
    grid-auto-columns: minmax(13rem, 78vw);
  }

  .reel-card {
    min-height: 22rem;
  }
}

html[data-language="ar"] .sticky-whatsapp {
  right: auto;
  left: clamp(1rem, 3vw, 2rem);
}

html[data-language="ar"] .artist-portrait::before {
  left: auto;
  right: 1rem;
}
