:root {
  --ink: #191c1d;
  --ink-soft: #25292a;
  --paper: #f4eee2;
  --white: #fffdf8;
  --gold: #c8a243;
  --gold-soft: #e0c477;
  --muted: #b8b4aa;
  --line: rgba(200, 162, 67, 0.34);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 162, 67, 0.08), transparent 26rem),
    linear-gradient(145deg, #181b1c 0%, #242829 54%, #171a1b 100%);
  font-family: "Noto Kufi Arabic", system-ui, sans-serif;
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.site-header {
  width: min(calc(100% - 40px), var(--max));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.brand-name sup {
  color: var(--gold);
  font-size: 0.42em;
}

.brand-sub {
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a,
.text-link {
  transition: color 180ms ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--gold-soft);
}

.order-button {
  justify-self: end;
  min-height: 46px;
  padding: 0 19px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.button-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 162, 67, 0.12);
}

main {
  overflow: hidden;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 680px;
  margin-inline: auto;
  padding: 56px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.6vw, 5.25rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--gold);
  font-family: "Playfair Display", "Noto Kufi Arabic", serif;
  font-style: italic;
  font-weight: 700;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 31px;
  color: #d7d4cc;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.primary-cta {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #17191a;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.text-link {
  color: #e5e1d8;
  font-size: 0.88rem;
  font-weight: 600;
}

.delivery-cities {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
  list-style: none;
}

.delivery-cities li {
  padding: 7px 15px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: end center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18% 0 3%;
  border: 1px solid var(--line);
  border-radius: 44% 44% 12% 12%;
  transform: rotate(-4deg);
}

.image-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 445px);
  height: 545px;
  overflow: hidden;
  border-radius: 220px 220px 32px 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% 55%;
}

.floating-order {
  position: absolute;
  z-index: 3;
  inset-inline-start: -24px;
  bottom: 46px;
  width: 182px;
  min-height: 112px;
  padding: 18px;
  text-align: right;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.floating-order span,
.floating-order strong {
  display: block;
}

.floating-order span:first-child {
  font-size: 0.7rem;
}

.floating-order strong {
  margin-top: 3px;
  font-size: 1.02rem;
}

.floating-order .arrow {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  color: var(--gold);
  font-size: 1.4rem;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 11, 11, 0.24);
}

.category-card {
  min-height: 210px;
  padding: 34px clamp(22px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 200ms ease, color 200ms ease;
}

.category-card:hover {
  color: var(--ink);
  background: var(--gold);
}

.category-number {
  margin-bottom: auto;
  color: var(--gold-soft);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
}

.category-card:hover .category-number {
  color: var(--ink);
}

.category-card strong {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.category-card > span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.category-card:hover > span:last-child {
  color: rgba(25, 28, 29, 0.74);
}

.about-graze {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 105px 0 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.about-graze h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.35;
}

.about-copy {
  max-width: 680px;
  margin: 0;
  color: #d7d4cc;
  font-size: 1rem;
}

.order-story {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
}

.section-heading h2,
.order-banner h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.35;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps li > span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
}

.steps strong {
  font-size: 1rem;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.order-banner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 110px;
  padding: clamp(36px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 30px;
}

footer {
  padding: 42px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 40px;
  align-items: end;
  background: #101213;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.65rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-grid a,
.contact-grid div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-grid small {
  color: var(--gold-soft);
  font-size: 0.68rem;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 0.73rem;
}

.contact-number {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: center;
}

.mobile-order {
  display: none;
}

.order-dialog {
  width: min(calc(100% - 32px), 470px);
  padding: 42px;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 28px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
}

.order-dialog::backdrop {
  background: rgba(9, 11, 11, 0.76);
  backdrop-filter: blur(7px);
}

.dialog-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.order-dialog .eyebrow {
  color: #896a20;
}

.order-dialog h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.order-dialog p:not(.eyebrow) {
  margin-bottom: 25px;
  color: #5f5d57;
  font-size: 0.88rem;
}

.order-dialog .primary-cta {
  width: 100%;
}

.dialog-close {
  position: absolute;
  top: 14px;
  inset-inline-start: 16px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
}

.dialog-later {
  margin-top: 12px;
  color: #66635b;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
}

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

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

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-actions,
  .delivery-cities {
    justify-content: center;
  }

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

  .image-frame {
    height: 500px;
  }

  .floating-order {
    inset-inline-start: 3vw;
  }

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

  .about-graze,
  .order-story {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    width: min(calc(100% - 28px), var(--max));
    min-height: 76px;
  }

  .brand-sub,
  .order-button {
    display: none;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .hero {
    width: min(calc(100% - 28px), var(--max));
    min-height: auto;
    padding: 38px 0 56px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero-intro {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-cta {
    width: 100%;
  }

  .delivery-cities {
    flex-wrap: wrap;
  }

  .hero-visual,
  .image-frame {
    min-height: 430px;
    height: 430px;
  }

  .image-frame {
    width: 92%;
  }

  .floating-order {
    width: 154px;
    min-height: 98px;
    bottom: 28px;
    inset-inline-start: 0;
  }

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

  .category-card {
    min-height: 155px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .order-story {
    padding: 76px 0;
  }

  .steps li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .order-banner {
    margin-bottom: 70px;
    padding: 34px 25px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .order-banner h2 {
    font-size: 2rem;
  }

  footer {
    padding: 36px 20px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .mobile-order {
    position: fixed;
    z-index: 20;
    right: 14px;
    bottom: 12px;
    left: 14px;
    height: 52px;
    display: block;
    color: var(--ink);
    background: var(--gold);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    cursor: pointer;
  }

  .order-dialog {
    padding: 38px 22px 28px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
