:root {
  --ink: #0d0d0d;
  --soft: #f7f4ee;
  --paper: #fffdf8;
  --gold: #c5a059;
  --gold-bright: #d4af37;
  --muted: #706a60;
  --line: rgba(197, 160, 89, 0.28);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(13, 13, 13, 0.18);
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Cairo", sans-serif;
  text-align: start;
}

body.is-transitioning {
  opacity: 0.78;
  transition: opacity 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.brand-text {
  margin: 0;
  font-family: "Playfair Display", "Cairo", serif;
  line-height: 0.98;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .brand-text {
  font-family: "Cairo", serif;
  line-height: 1.18;
}

p {
  margin-block: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

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

.container {
  inline-size: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 30;
  min-block-size: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  padding-inline: clamp(20px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0));
  transition: background 240ms ease, border-color 240ms ease, min-block-size 240ms ease;
}

.site-header.scrolled,
body:not([data-page="home"]) .site-header {
  min-block-size: 74px;
  background: rgba(13, 13, 13, 0.92);
  border-block-end: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 35;
}

.brand-mark {
  display: grid;
  place-items: center;
  inline-size: 44px;
  block-size: 44px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.brand-text {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 34px);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a,
.language-switch button {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.language-switch button:hover,
.language-switch button.active {
  color: var(--gold-bright);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding-block: 8px;
  padding-inline: 12px;
}

.language-switch button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.language-switch span {
  color: rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 35;
  inline-size: 44px;
  block-size: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  inline-size: 18px;
  block-size: 2px;
  margin-block: 4px;
  margin-inline: auto;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-block-size: 100svh;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.page-hero,
.band-image {
  background-position: center;
  background-size: cover;
}

.hero-home .hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1487070183336-b863922373d4?auto=format&fit=crop&w=2200&q=85");
  transform: scale(1.04);
  animation: slowDepth 16s ease-in-out infinite alternate;
}

.hero-overlay,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.62) 42%, rgba(13, 13, 13, 0.18) 100%),
    linear-gradient(to top, rgba(13, 13, 13, 0.65), rgba(13, 13, 13, 0.05) 44%);
}

html[dir="rtl"] .hero-overlay,
html[dir="rtl"] .page-hero::before {
  background:
    linear-gradient(270deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.62) 42%, rgba(13, 13, 13, 0.18) 100%),
    linear-gradient(to top, rgba(13, 13, 13, 0.65), rgba(13, 13, 13, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  inline-size: min(760px, calc(100% - 40px));
  padding-block-start: calc(var(--header) + 120px);
  margin-inline-start: clamp(20px, 7vw, 94px);
}

.eyebrow {
  margin-block-end: 18px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--gold);
}

h1 {
  max-inline-size: 820px;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
}

.page-hero h1 {
  font-size: clamp(3.2rem, 6.8vw, 7rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-inline-size: 610px;
  margin-block-start: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-start: 34px;
}

.hero-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-inline-size: 680px;
  margin-block-start: 26px;
}

.hero-summary span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.32);
  color: rgba(255, 255, 255, 0.82);
  padding-block: 9px;
  padding-inline: 13px;
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 52px;
  border-radius: 999px;
  padding-block: 14px;
  padding-inline: 24px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.12);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-white {
  background: var(--paper);
}

.section-soft,
.section-white,
.section-dark {
  padding-block: clamp(76px, 10vw, 132px);
}

.lux-strip {
  padding-block: 34px;
  border-block-start: 1px solid rgba(197, 160, 89, 0.2);
  border-block-end: 1px solid rgba(197, 160, 89, 0.18);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.strip-grid div {
  border-inline-start: 1px solid var(--line);
  padding-inline-start: 24px;
}

.strip-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.strip-grid strong {
  display: block;
  margin-block-start: 7px;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: start;
}

.section-copy p + .text-link {
  margin-block-start: 26px;
}

.text-link {
  display: inline-flex;
  color: var(--ink);
  font-weight: 800;
  border-block-end: 1px solid var(--gold);
  padding-block-end: 4px;
}

.section-heading {
  max-inline-size: 750px;
  margin-block-end: 54px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

.pillar {
  border-block-start: 1px solid var(--line);
  padding-block-start: 26px;
}

.pillar span,
.service-row span {
  color: var(--gold);
  font-weight: 800;
}

.pillar h3 {
  margin-block: 18px 14px;
}

.image-band {
  position: relative;
  display: grid;
  min-block-size: 620px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.band-image {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2200&q=85");
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.18));
}

.band-content {
  position: relative;
  z-index: 2;
  align-self: end;
  inline-size: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding-block-end: clamp(64px, 10vw, 112px);
  text-align: center;
}

.band-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.cta-inner {
  max-inline-size: 860px;
}

.cta-inner .btn {
  margin-block-start: 28px;
}

.site-footer {
  padding-block: 48px;
  background: #070707;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-grid strong,
.footer-grid span {
  display: block;
  margin-block-end: 12px;
  color: var(--gold-bright);
  font-weight: 800;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.page-hero {
  min-block-size: 72svh;
  display: flex;
  align-items: end;
  padding-block: calc(var(--header) + 90px) 90px;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=2200&q=85");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2200&q=85");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2200&q=85");
  background-position: center 58%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.narrative {
  max-inline-size: 900px;
}

.lead {
  margin-block-start: 28px;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  color: #3d3933;
}

.statement-list {
  display: grid;
  gap: 24px;
}

.statement-list div {
  border-block-start: 1px solid var(--line);
  padding-block-start: 20px;
}

.statement-list strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.statement-list p {
  margin-block-start: 10px;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding-block: clamp(30px, 5vw, 56px);
  border-block-start: 1px solid var(--line);
}

.service-row:last-child {
  border-block-end: 1px solid var(--line);
}

.service-row p {
  max-inline-size: 740px;
  margin-block-start: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-panel,
.order-form {
  background: var(--paper);
  box-shadow: var(--shadow);
  padding-block: clamp(28px, 5vw, 48px);
  padding-inline: clamp(24px, 4vw, 46px);
}

.contact-panel h2,
.order-form h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  margin-block-end: 28px;
}

.contact-item {
  display: grid;
  gap: 8px;
  padding-block: 18px;
  border-block-start: 1px solid rgba(13, 13, 13, 0.08);
}

.contact-item span,
.order-form label span {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

html[dir="rtl"] .contact-item span,
html[dir="rtl"] .order-form label span {
  letter-spacing: 0;
}

.contact-item a {
  color: #2b2823;
  line-height: 1.5;
}

.order-form {
  display: grid;
  gap: 18px;
}

.order-form label {
  display: grid;
  gap: 9px;
}

.order-form input,
.order-form textarea,
.order-form select {
  inline-size: 100%;
  border: 1px solid rgba(13, 13, 13, 0.16);
  background: #fffaf0;
  color: var(--ink);
  padding-block: 14px;
  padding-inline: 16px;
  outline: 0;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  border-color: var(--gold);
}

.order-form .btn {
  border: 0;
  cursor: pointer;
}

.hours-wrap {
  max-inline-size: 860px;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 15px;
  padding-inline: 18px;
  border: 1px solid rgba(13, 13, 13, 0.08);
}

.hours-list div.is-today {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowDepth {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 880px) {
  :root {
    --header: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    inline-size: min(86vw, 390px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    padding-block: 96px 42px;
    padding-inline: 34px;
    background: rgba(13, 13, 13, 0.98);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.35);
    transform: translateX(104%);
    transition: transform 260ms ease;
  }

  html[dir="rtl"] .site-nav {
    inset-inline-end: auto;
    inset-inline-start: 0;
    transform: translateX(-104%);
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.35);
  }

  body.menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 1.06rem;
  }

  .language-switch {
    justify-content: center;
  }

  .hero {
    min-block-size: 100svh;
  }

  .hero-content {
    inline-size: min(620px, calc(100% - 32px));
    margin-inline: auto;
    padding-block-start: calc(var(--header) + 76px);
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .two-col,
  .pillar-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .section-soft,
  .section-white,
  .section-dark {
    padding-block: 68px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-text {
    max-inline-size: 190px;
  }

  .hero-content {
    padding-block-start: calc(var(--header) + 52px);
  }

  .hero-copy {
    margin-block-start: 18px;
  }

  .hero-actions {
    margin-block-start: 24px;
  }

  .hero-summary {
    margin-block-start: 18px;
  }

  .hero-summary span {
    inline-size: 100%;
  }

  .btn {
    inline-size: 100%;
  }

  .lux-strip {
    padding-block: 24px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hours-list div {
    display: grid;
  }
}
