:root {
  --oxblood: #3b070b;
  --deep-red: #5a1118;
  --dark-red: #260407;
  --porcelain: #f7f0e7;
  --paper: #fffaf3;
  --warm-gold: #d7ae72;
  --warm-gold-light: #ead1a8;
  --espresso: #1d1110;
  --rose: #c98f8d;
  --muted: #736864;
  --line: rgba(59, 7, 11, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  --arabic: "Noto Naskh Arabic", "Traditional Arabic", Tahoma, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(38, 4, 7, 0.16);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--porcelain);
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--porcelain);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[dir="rtl"] body {
  font-family: var(--arabic);
  font-size: 17px;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--warm-gold-light);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--deep-red);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: var(--arabic);
  font-weight: 600;
  line-height: 1.25;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  padding: 10px 16px;
  color: var(--espresso);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.narrow {
  max-width: 820px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) auto minmax(270px, 0.9fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 10px clamp(20px, 4vw, 64px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(38, 4, 7, 0.96), rgba(38, 4, 7, 0.83));
  border-bottom: 1px solid rgba(234, 209, 168, 0.13);
  transition: min-height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(38, 4, 7, 0.98);
  box-shadow: 0 12px 34px rgba(29, 17, 16, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--warm-gold-light);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.brand-mark span {
  position: absolute;
  inset-block-start: 1px;
  inset-inline-start: 1px;
}

.brand-mark span + span {
  inset-block-start: 11px;
  inset-inline-start: 15px;
  color: var(--warm-gold);
}

.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-words strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-words small {
  margin-top: 7px;
  color: var(--warm-gold-light);
  font-size: 8px;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

html[dir="rtl"] .brand-words strong {
  font-family: var(--arabic);
  font-size: 18px;
  letter-spacing: 0;
}

html[dir="rtl"] .brand-words small {
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 250, 243, 0.86);
  font-family: var(--display);
  font-size: 16px;
  white-space: nowrap;
}

html[dir="rtl"] .desktop-nav a {
  font-family: var(--arabic);
}

.desktop-nav a::after {
  position: absolute;
  inset-inline: 50%;
  inset-block-end: 4px;
  height: 1px;
  content: "";
  background: var(--warm-gold);
  transition: inset-inline 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  inset-inline: 0;
}

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

.header-phone,
.language-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 250, 243, 0.84);
  font-size: 13px;
  white-space: nowrap;
}

.header-phone svg,
.footer-contact svg,
.direct-contact svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.language-link {
  padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(255, 250, 243, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button svg,
.text-link svg,
.contact-option svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

html[dir="rtl"] .button svg,
html[dir="rtl"] .text-link svg,
html[dir="rtl"] .contact-option svg {
  transform: scaleX(-1);
}

.button-gold {
  color: var(--dark-red);
  background: var(--warm-gold-light);
  border-color: var(--warm-gold-light);
}

.button-gold:hover {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
}

.button-outline-light {
  color: var(--paper);
  border-color: rgba(255, 250, 243, 0.5);
  background: rgba(255, 250, 243, 0.02);
}

.button-outline-light:hover {
  border-color: var(--paper);
  background: rgba(255, 250, 243, 0.08);
}

.button-outline-dark {
  color: var(--oxblood);
  border-color: rgba(59, 7, 11, 0.35);
  background: transparent;
}

.button-outline-dark:hover {
  color: var(--paper);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 250, 243, 0.25);
}

.menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-menu {
  position: fixed;
  z-index: 120;
  inset: 0;
  padding: 18px 24px 28px;
  color: var(--paper);
  background: var(--dark-red);
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu nav {
  display: grid;
  margin-top: 9vh;
}

.mobile-menu nav a {
  padding: 14px 0;
  font-family: var(--display);
  font-size: clamp(28px, 8vw, 44px);
  border-bottom: 1px solid rgba(255, 250, 243, 0.14);
}

html[dir="rtl"] .mobile-menu nav a {
  font-family: var(--arabic);
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.mobile-menu-actions .language-link {
  justify-self: center;
  margin-top: 10px;
}

.hero-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 22%, rgba(122, 28, 36, 0.6), transparent 42%),
    linear-gradient(135deg, var(--deep-red), var(--dark-red));
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  min-height: min(850px, 100svh);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: 90px 50px 100px max(48px, calc((100vw - 1180px) / 2));
}

html[dir="rtl"] .hero-copy {
  padding: 90px max(48px, calc((100vw - 1180px) / 2)) 100px 50px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--warm-gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.inner-hero h1,
.about-hero h1,
.contact-page h1,
.page-intro h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 6.3vw, 96px);
  letter-spacing: -0.045em;
}

html[dir="rtl"] .hero-copy h1,
html[dir="rtl"] .inner-hero h1,
html[dir="rtl"] .about-hero h1,
html[dir="rtl"] .contact-page h1,
html[dir="rtl"] .page-intro h1 {
  font-size: clamp(48px, 5.7vw, 84px);
  letter-spacing: 0;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 250, 243, 0.8);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
  color: var(--warm-gold-light);
  font-size: 13px;
}

.hero-note svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.hero-visual::after,
.inner-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(38, 4, 7, 0.28), transparent 30%);
}

html[dir="rtl"] .hero-visual::after,
html[dir="rtl"] .inner-hero-image::after {
  background: linear-gradient(-90deg, rgba(38, 4, 7, 0.28), transparent 30%);
}

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

.home-hero .hero-image {
  object-position: 84% center;
}

.hero-arch {
  position: absolute;
  z-index: 2;
  inset: 38px 3.5% auto;
  height: 84%;
  border: 2px solid rgba(234, 209, 168, 0.45);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 26% 26% 0 0;
  box-shadow: inset 0 0 0 9px rgba(59, 7, 11, 0.22), inset 0 0 0 11px rgba(234, 209, 168, 0.13);
  pointer-events: none;
}

.piping-line {
  position: absolute;
  z-index: 4;
  inset-inline-start: 0;
  inset-block-end: -15px;
  width: 62%;
  height: 210px;
  fill: none;
  pointer-events: none;
  stroke: var(--warm-gold);
  stroke-width: 1.3px;
}

html[dir="rtl"] .piping-line {
  transform: scaleX(-1);
}

.section {
  padding: clamp(80px, 9vw, 132px) 0;
}

.services-section,
.work-preview,
.offering-section,
.full-gallery,
.contact-options {
  background: var(--porcelain);
}

.work-preview,
.service-gallery,
.about-values {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-left {
  text-align: start;
}

.section-heading h2,
.contact-band h2,
.catering-copy h2,
.editorial-copy h2 {
  margin-bottom: 18px;
  color: var(--oxblood);
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -0.035em;
}

html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .contact-band h2,
html[dir="rtl"] .catering-copy h2,
html[dir="rtl"] .editorial-copy h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.section-heading-left p:not(.eyebrow) {
  margin-inline: 0;
}

.flourish {
  position: relative;
  display: block;
  width: 76px;
  height: 10px;
  margin: 20px auto 0;
  border-top: 1px solid var(--warm-gold);
}

.flourish::before,
.flourish::after {
  position: absolute;
  inset-block-start: -3px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--warm-gold);
  transform: rotate(45deg);
}

.flourish::before {
  inset-inline-start: 31px;
}

.flourish::after {
  inset-inline-start: 41px;
}

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

.service-card {
  min-width: 0;
}

.service-image-link {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dfd2c5;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .75, .2, 1);
}

.service-card:hover .service-image {
  transform: scale(1.035);
}

.service-card-copy {
  padding: 20px 2px 0;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--oxblood);
  font-size: clamp(23px, 2.1vw, 31px);
}

.service-card p {
  min-height: 72px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--deep-red);
  font-size: 13px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

html[dir="rtl"] .text-link:hover svg {
  transform: scaleX(-1) translateX(4px);
}

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

.work-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 9;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep-red);
  border: 0;
  cursor: zoom-in;
}

.work-card:nth-child(1),
.work-card:nth-child(4) {
  grid-row: span 12;
}

.work-card:nth-child(2),
.work-card:nth-child(5) {
  grid-column: span 5;
}

.work-card:nth-child(3),
.work-card:nth-child(6) {
  grid-column: span 3;
}

.work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .75, .2, 1), filter 300ms ease;
}

.work-card:hover .work-image {
  transform: scale(1.025);
  filter: brightness(0.78);
}

.work-card-caption {
  position: absolute;
  inset-inline: 18px;
  inset-block-end: 14px;
  padding-top: 30px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
  text-align: start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.work-card:hover .work-card-caption,
.work-card:focus-visible .work-card-caption {
  opacity: 1;
  transform: translateY(0);
}

.section-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.section-action-pair .button {
  min-width: 205px;
}

.catering-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 540px;
  color: var(--paper);
  background: var(--dark-red);
  overflow: hidden;
}

.catering-image-wrap {
  min-height: 540px;
}

.catering-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
  padding: 70px clamp(40px, 7vw, 110px);
}

.catering-copy h2 {
  color: var(--paper);
}

.catering-copy p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 250, 243, 0.75);
}

.piping-line-small {
  inset-inline: auto -45px;
  inset-block-end: -35px;
  width: 38%;
  height: 200px;
}

.process-section {
  background: var(--porcelain);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-card {
  position: relative;
  padding: 38px 44px 10px 0;
  border-inline-end: 1px solid var(--line);
}

html[dir="rtl"] .process-card {
  padding: 38px 0 10px 44px;
}

.process-card:last-child {
  padding-inline-start: 44px;
  border-inline-end: 0;
}

.process-card:nth-child(2) {
  padding-inline-start: 44px;
}

.process-card > span,
.about-value > span {
  display: block;
  margin-bottom: 34px;
  color: var(--warm-gold);
  font-family: var(--display);
  font-size: 14px;
}

.process-card h3 {
  margin-bottom: 12px;
  color: var(--oxblood);
  font-size: 30px;
}

.process-card p {
  color: var(--muted);
}

.process-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  margin-top: 64px;
  padding: clamp(34px, 5vw, 64px);
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 15%, rgba(122, 28, 36, 0.65), transparent 42%),
    var(--dark-red);
  box-shadow: var(--shadow);
}

.process-cta .eyebrow {
  margin-bottom: 10px;
}

.process-cta h3 {
  margin-bottom: 10px;
  font-size: clamp(32px, 3.7vw, 48px);
}

.process-cta p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 250, 243, 0.74);
}

.process-cta-actions,
.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-cta-actions {
  justify-content: flex-end;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

html[dir="rtl"] .faq-item summary {
  font-family: var(--arabic);
}

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

.faq-item summary span {
  color: var(--warm-gold);
  font-family: var(--body);
  font-size: 26px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item > div {
  max-width: 700px;
  padding: 0 52px 20px 0;
  color: var(--muted);
}

html[dir="rtl"] .faq-item > div {
  padding: 0 0 20px 52px;
}

.contact-band {
  padding: 70px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 30%, rgba(122, 28, 36, 0.62), transparent 40%),
    var(--dark-red);
  border-top: 1px solid rgba(234, 209, 168, 0.18);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 48px;
}

.contact-monogram {
  position: relative;
  height: 100px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 82px;
  line-height: 1;
  border-inline-end: 1px solid var(--warm-gold);
}

.contact-monogram span {
  position: absolute;
}

.contact-monogram span + span {
  inset-block-start: 22px;
  inset-inline-start: 34px;
  color: var(--warm-gold);
}

.contact-band-copy .eyebrow {
  margin-bottom: 8px;
  color: var(--warm-gold-light);
}

.contact-band h2 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: clamp(38px, 4vw, 56px);
}

.contact-band-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 243, 0.72);
}

.contact-band-actions {
  display: flex;
  gap: 12px;
}

.inner-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 760px;
  padding-top: var(--header-height);
}

.inner-hero-copy,
.about-hero-copy,
.contact-page-copy {
  align-self: center;
  padding-block: 80px;
  padding-inline-start: clamp(48px, 8vw, 220px);
  padding-inline-end: clamp(40px, 5vw, 90px);
}

.inner-hero-copy > *,
.about-hero-copy > *,
.contact-page-copy > * {
  max-width: 700px;
}

.inner-hero h1,
.about-hero h1,
.contact-page h1 {
  font-size: clamp(52px, 5.6vw, 84px);
}

.inner-hero-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.editorial-intro {
  background: var(--paper);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.editorial-copy > p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.8;
}

.editorial-actions {
  margin-top: 30px;
}

.taste-section {
  color: var(--paper);
  background: var(--deep-red);
}

.taste-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.taste-copy {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 32px);
}

.taste-copy h2 {
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.035em;
}

html[dir="rtl"] .taste-copy h2 {
  font-size: clamp(38px, 4.6vw, 60px);
  letter-spacing: 0;
}

.taste-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.76);
  font-size: 18px;
}

.taste-points {
  border-top: 1px solid rgba(234, 209, 168, 0.22);
}

.taste-point {
  display: grid;
  grid-template-columns: 52px minmax(170px, 0.65fr) minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(234, 209, 168, 0.22);
}

.taste-point > span {
  color: var(--warm-gold);
  font-family: var(--display);
  font-size: 13px;
}

.taste-point h3 {
  margin: 0;
  color: var(--paper);
  font-size: 27px;
}

.taste-point p {
  margin: 0;
  color: rgba(255, 250, 243, 0.66);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.offering-card {
  min-height: 245px;
  padding: 36px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offering-dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 36px;
  background: var(--warm-gold);
  transform: rotate(45deg);
}

.offering-card h3 {
  margin-bottom: 14px;
  color: var(--oxblood);
  font-size: 29px;
}

.offering-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-gallery {
  background: var(--paper);
}

.page-intro {
  display: grid;
  min-height: 540px;
  padding: calc(var(--header-height) + 100px) 0 95px;
  place-items: center;
  text-align: center;
}

.page-intro .eyebrow,
.page-intro .hero-lead {
  margin-inline: auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 18px;
  color: var(--deep-red);
  background: transparent;
  border: 1px solid rgba(59, 7, 11, 0.26);
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--paper);
  background: var(--deep-red);
  border-color: var(--deep-red);
}

.work-card[hidden] {
  display: none;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 760px;
  padding-top: var(--header-height);
}

.about-logo-card {
  display: grid;
  align-self: stretch;
  min-height: 680px;
  padding: 12%;
  place-items: center;
  background: rgba(29, 17, 16, 0.25);
}

.about-brand-image {
  width: min(100%, 600px);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-value {
  padding: 46px 46px 10px 0;
  border-inline-end: 1px solid var(--line);
}

html[dir="rtl"] .about-value {
  padding: 46px 0 10px 46px;
}

.about-value + .about-value {
  padding-inline-start: 46px;
}

.about-value:last-child {
  border: 0;
}

.about-value h2 {
  color: var(--oxblood);
  font-size: 36px;
}

.about-value p {
  color: var(--muted);
}

.about-craft {
  background: var(--paper);
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.stack-image {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-image-main {
  inset: 0 24% 0 0;
  width: 76%;
  height: 100%;
}

.stack-image-small {
  z-index: 2;
  inset: auto 0 -36px auto;
  width: 46%;
  height: 48%;
  border: 8px solid var(--paper);
}

html[dir="rtl"] .stack-image-main {
  inset: 0 0 0 24%;
}

html[dir="rtl"] .stack-image-small {
  inset: auto auto -36px 0;
}

.contact-page {
  padding: calc(var(--header-height) + 70px) 0 95px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.contact-page-copy {
  padding: 0;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.direct-contact a > svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--warm-gold-light);
  border: 1px solid rgba(234, 209, 168, 0.45);
}

.direct-contact span {
  display: grid;
  font-weight: 700;
}

.direct-contact small {
  color: rgba(255, 250, 243, 0.6);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planning-form {
  padding: clamp(28px, 5vw, 56px);
  color: var(--espresso);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.planning-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--oxblood);
  font-size: 13px;
  font-weight: 700;
}

.planning-form input,
.planning-form select,
.planning-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--espresso);
  background: var(--porcelain);
  border: 1px solid rgba(59, 7, 11, 0.2);
  border-radius: 0;
}

.planning-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  padding: 26px 34px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-option:nth-child(even) {
  border-inline-end: 0;
}

.contact-option h2 {
  margin: 0;
  color: var(--oxblood);
  font-size: 32px;
}

.contact-option svg {
  color: var(--warm-gold);
}

.site-footer {
  padding: 80px 0 24px;
  color: rgba(255, 250, 243, 0.74);
  background: var(--dark-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(130px, 0.65fr));
  gap: clamp(34px, 5vw, 78px);
}

.footer-brand p {
  max-width: 430px;
  margin: 26px 0 0;
}

.footer-location {
  color: var(--warm-gold-light);
  font-size: 13px;
}

.site-footer h2 {
  margin-bottom: 22px;
  color: var(--warm-gold-light);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 9px;
}

.site-footer nav a:hover,
.footer-contact:hover {
  color: var(--paper);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 20px;
  color: rgba(255, 250, 243, 0.58);
  font-size: 11px;
  border-top: 1px solid rgba(255, 250, 243, 0.1);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  inset-inline-end: 22px;
  inset-block-end: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--dark-red);
  background: var(--warm-gold-light);
  border: 1px solid rgba(59, 7, 11, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(29, 17, 16, 0.25);
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--warm-gold);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.lightbox {
  width: min(880px, calc(100vw - 32px));
  max-width: 880px;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(18, 2, 4, 0.92);
  backdrop-filter: blur(5px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  inset-inline-end: 0;
  inset-block-start: -48px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 250, 243, 0.4);
  place-items: center;
}

.lightbox button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .75, .2, 1);
}

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

@media (max-width: 1360px) {
  .site-header {
    grid-template-columns: minmax(190px, 0.85fr) auto minmax(210px, 0.85fr);
  }

  .desktop-nav {
    gap: clamp(15px, 1.8vw, 26px);
  }

  .header-phone {
    display: none;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-phone {
    display: none;
  }

  .home-hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 22px;
  }

  .service-card p {
    min-height: auto;
  }

  .contact-band-inner {
    grid-template-columns: 100px 1fr;
  }

  .contact-band-actions {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .header-whatsapp,
  .header-actions > .language-link {
    display: none;
  }

  .home-hero,
  .inner-hero,
  .about-hero,
  .contact-page-grid,
  .editorial-grid,
  .faq-layout,
  .catering-feature {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 90px 28px 70px;
  }

  html[dir="rtl"] .hero-copy {
    padding: 90px 28px 70px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .piping-line {
    inset-block-end: 540px;
    width: 100%;
  }

  .work-grid {
    grid-auto-rows: 38px;
  }

  .work-card,
  .work-card:nth-child(n) {
    grid-column: span 6;
    grid-row: span 10;
  }

  .catering-image-wrap {
    min-height: 460px;
  }

  .catering-copy {
    padding: 70px 28px 90px;
  }

  .process-grid,
  .about-value-grid,
  .taste-layout {
    grid-template-columns: 1fr;
  }

  .taste-copy {
    position: static;
  }

  .taste-point {
    grid-template-columns: 48px minmax(150px, 0.55fr) minmax(0, 1fr);
  }

  .process-cta {
    grid-template-columns: 1fr;
  }

  .process-cta-actions {
    justify-content: flex-start;
  }

  .process-card,
  .process-card:nth-child(n),
  .about-value,
  .about-value + .about-value {
    padding: 34px 0;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-layout {
    gap: 20px;
  }

  .contact-band-inner {
    grid-template-columns: 84px 1fr;
    gap: 26px;
  }

  .contact-band-actions {
    grid-column: 1 / -1;
  }

  .inner-hero-copy,
  .about-hero-copy {
    padding: 90px 28px 70px;
  }

  .inner-hero-image,
  .about-logo-card {
    min-height: 600px;
  }

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

  .about-logo-card {
    padding: 12%;
  }

  .image-stack {
    min-height: 560px;
  }

  .contact-page {
    padding-top: calc(var(--header-height) + 60px);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 8px 14px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 34px;
    height: 40px;
    font-size: 31px;
  }

  .brand-mark span + span {
    inset-inline-start: 12px;
    inset-block-start: 9px;
  }

  .brand-words strong {
    font-size: 16px;
  }

  .brand-words small {
    font-size: 6px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-copy h1,
  .inner-hero h1,
  .about-hero h1,
  .contact-page h1,
  .page-intro h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  html[dir="rtl"] .hero-copy h1,
  html[dir="rtl"] .inner-hero h1,
  html[dir="rtl"] .about-hero h1,
  html[dir="rtl"] .contact-page h1,
  html[dir="rtl"] .page-intro h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-copy {
    padding: 78px 20px 60px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-arch {
    inset: 28px 4% auto;
  }

  .piping-line {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .catering-copy h2,
  .editorial-copy h2 {
    font-size: 38px;
  }

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

  .service-image-link {
    aspect-ratio: 4 / 4.6;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 7px;
  }

  .work-card,
  .work-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .work-card:nth-child(3n + 1) {
    grid-column: 1 / -1;
    aspect-ratio: 5 / 4;
  }

  .work-card-caption {
    display: none;
  }

  .catering-image-wrap {
    min-height: 360px;
  }

  .catering-copy {
    padding: 52px 20px 72px;
  }

  .faq-item summary {
    font-size: 20px;
  }

  .section-action-pair,
  .editorial-actions,
  .process-cta-actions {
    display: grid;
  }

  .section-action-pair .button,
  .editorial-actions .button,
  .process-cta-actions .button {
    width: 100%;
  }

  .process-cta {
    margin-top: 44px;
    padding: 30px 22px;
  }

  .taste-point {
    grid-template-columns: 38px 1fr;
    gap: 12px 16px;
  }

  .taste-point p {
    grid-column: 2;
  }

  .contact-band {
    padding: 58px 0;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
  }

  .contact-monogram {
    display: none;
  }

  .contact-band-actions {
    grid-column: auto;
    display: grid;
  }

  .inner-hero-image,
  .about-logo-card {
    min-height: 480px;
  }

  .editorial-grid {
    gap: 38px;
  }

  .editorial-copy > p {
    font-size: 17px;
  }

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

  .offering-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .about-value h2 {
    font-size: 30px;
  }

  .image-stack {
    min-height: 470px;
  }

  .stack-image-main {
    inset-inline: 0 18%;
    width: 82%;
  }

  .stack-image-small {
    width: 48%;
  }

  .contact-page-grid {
    gap: 50px;
  }

  .form-row,
  .contact-option-grid {
    grid-template-columns: 1fr;
  }

  .planning-form {
    padding: 24px 18px;
  }

  .contact-option,
  .contact-option:nth-child(even) {
    min-height: 115px;
    padding: 22px 18px;
    border-inline-end: 0;
  }

  .contact-option h2 {
    font-size: 27px;
  }

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

  .footer-brand,
  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 48px;
  }

  .floating-whatsapp {
    inset-inline-end: 14px;
    inset-block-end: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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