:root {
  --ink: #11110f;
  --ink-soft: #1b1a17;
  --ivory: #f3f0e8;
  --paper: #e9e4d9;
  --gold: #b89b60;
  --gold-light: #d0b878;
  --line: rgba(184, 155, 96, .35);
  --muted: #afa99d;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --radius: .15rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

.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;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 6.25rem;
  padding: 1rem var(--page-pad);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: min-height .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 5rem;
  background: rgba(17, 17, 15, .96);
  border-color: var(--line);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  width: max-content;
  line-height: 1.05;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  aspect-ratio: 1;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -.1em;
}

.brand__name {
  display: grid;
  gap: .25rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .025em;
}

.brand__name small {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.3vw, 2.5rem);
}

.desktop-nav a,
.header-call {
  position: relative;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  justify-self: end;
  padding: .8rem 1.1rem;
  color: var(--gold-light);
  border: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}

.header-call:hover {
  color: var(--ink);
  background: var(--gold-light);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero__image,
.hero__veil,
.hero__frame {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("trombetta-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .95) 0%, rgba(8, 8, 7, .84) 36%, rgba(8, 8, 7, .33) 68%, rgba(8, 8, 7, .14) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, .85) 0%, transparent 48%);
}

.hero__frame {
  inset: 7.7rem var(--page-pad) 2.2rem;
  border: 1px solid rgba(208, 184, 120, .38);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 88rem);
  margin: 0 auto;
  padding: 11rem var(--page-pad) 3.1rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8.8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .87;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

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

.hero__footer {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto minmax(11rem, .65fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(2.6rem, 7vh, 5.5rem);
}

.hero__lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: .85rem 1.45rem;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

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

.button--gold {
  color: var(--ink);
  background: var(--gold-light);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(17, 17, 15, .15);
}

.button--dark {
  color: var(--ivory);
  background: var(--ink);
}

.hero__signature {
  justify-self: end;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, .6);
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: .95rem;
  line-height: 1.45;
}

.hero__signature strong {
  display: block;
  margin-bottom: .25rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  right: calc(var(--page-pad) + 1.4rem);
  bottom: 2.15rem;
  z-index: 3;
  color: rgba(255, 255, 255, .58);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  display: inline-block;
  width: 1px;
  height: 3rem;
  margin-top: .9rem;
  background: var(--gold-light);
  content: "";
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
}

.values-strip div {
  padding: 1.45rem var(--page-pad);
  color: var(--ink);
  border-right: 1px solid rgba(17, 17, 15, .24);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  text-align: center;
}

.values-strip div:last-child {
  border-right: 0;
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) var(--page-pad);
}

.section-index {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.intro {
  display: grid;
  grid-template-columns: .22fr 1.25fr .78fr;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: start;
  background: var(--ivory);
}

.intro h2,
.services__heading h2,
.world h2,
.islamic h2,
.location h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.intro__copy {
  max-width: 36rem;
  padding-top: .65rem;
}

.intro__copy p {
  margin: 0 0 1.4rem;
  color: #4e4b45;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.intro__copy p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.38;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: .5rem;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link::after {
  width: 2.3rem;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width .2s ease;
}

.text-link:hover::after {
  width: 3.3rem;
}

.services {
  color: var(--ivory);
  background: var(--ink);
}

.services__heading {
  display: grid;
  grid-template-columns: .18fr 1fr .68fr;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.services__heading p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: clamp(1.6rem, 2.6vw, 2.7rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card__number {
  margin-bottom: auto;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.service-card h3 {
  margin: 3rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.03;
}

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

.service-card--accent {
  color: var(--ink);
  background: var(--gold);
}

.service-card--accent .service-card__number,
.service-card--accent p {
  color: rgba(17, 17, 15, .7);
}

.service-card--islamic {
  color: var(--ink);
  background: var(--ivory);
}

.service-card--islamic p {
  color: #5d5951;
}

.world {
  position: relative;
  min-height: 54rem;
  overflow: hidden;
  color: #fff;
  background: #181713;
}

.world__orbit {
  position: absolute;
  top: 50%;
  right: -8vw;
  width: min(55vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 155, 96, .22);
  border-radius: 50%;
  transform: translateY(-50%);
}

.world__orbit::before,
.world__orbit::after {
  position: absolute;
  border: 1px solid rgba(184, 155, 96, .19);
  border-radius: 50%;
  content: "";
}

.world__orbit::before {
  inset: 14%;
}

.world__orbit::after {
  inset: 31%;
  background: rgba(184, 155, 96, .035);
}

.world__label {
  position: absolute;
  right: -1.5vw;
  bottom: -5vw;
  color: rgba(255, 255, 255, .025);
  font-family: var(--serif);
  font-size: clamp(10rem, 25vw, 30rem);
  line-height: .75;
  pointer-events: none;
}

.world__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .2fr 1fr .8fr;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: start;
}

.world h2 {
  max-width: 10ch;
}

.world h2 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.world__details {
  max-width: 32rem;
  padding-top: .8rem;
}

.world__lead {
  margin: 0 0 2rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.45;
}

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

.world__details li {
  padding: .9rem 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.islamic {
  display: grid;
  grid-template-columns: .22fr 1.08fr .7fr;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  background: var(--paper);
}

.islamic__statement {
  position: relative;
  padding: clamp(2rem, 5vw, 5rem) 0;
}

.islamic__statement::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.islamic h2 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.islamic__content {
  padding: 2.5rem;
  border-left: 1px solid var(--gold);
}

.islamic__content p {
  margin: 0 0 1.35rem;
  color: #535049;
}

.islamic__content strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.islamic__note {
  margin-top: 2rem;
  color: #706b62;
  font-size: .88rem;
}

.location {
  color: var(--ivory);
  background: var(--ink);
}

.location__heading {
  display: grid;
  grid-template-columns: .2fr 1fr;
  gap: clamp(2rem, 5vw, 7rem);
  margin-bottom: 3.5rem;
}

.location__card {
  display: grid;
  grid-template-columns: .7fr 1.3fr auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--ink);
  background: var(--gold);
}

.location__city {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -.07em;
  line-height: .72;
}

.location__address {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.35;
}

.location__address small {
  display: block;
  margin-bottom: .65rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.location__action {
  white-space: nowrap;
}

.contact {
  overflow: hidden;
  color: #fff;
  background: #0b0b0a;
}

.contact__glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(184, 155, 96, .18), transparent 67%);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .2fr 1fr .7fr;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.contact__head h2 {
  max-width: 11ch;
}

.contact__head p {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
}

.contact__actions {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}

.contact-link {
  display: grid;
  grid-template-columns: .42fr 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 8rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, padding .25s ease, background .25s ease;
}

.contact-link span {
  color: var(--gold-light);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.contact-link::after {
  color: var(--gold-light);
  content: "↗";
  font-size: 1.5rem;
}

.contact-link:hover {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: var(--ink);
  background: var(--gold-light);
}

.contact-link:hover span,
.contact-link:hover::after {
  color: var(--ink);
}

.site-footer {
  padding: 3rem var(--page-pad) 2rem;
  color: #999387;
  background: #080807;
  border-top: 1px solid rgba(184, 155, 96, .2);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__top {
  margin-bottom: 3rem;
}

.site-footer .brand {
  color: #fff;
}

.site-footer__top p,
.site-footer__bottom p {
  margin: 0;
}

.site-footer__top p {
  max-width: 31rem;
  text-align: right;
}

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .75rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes hero-breathe {
  from { transform: scale(1.025); }
  to { transform: scale(1.075) translate3d(-.6%, -.35%, 0); }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 3rem;
    height: 3rem;
    padding: .8rem;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 5rem 0 0;
    z-index: 90;
    display: grid;
    align-content: center;
    gap: .9rem;
    padding: 2rem var(--page-pad);
    color: #fff;
    background: rgba(17, 17, 15, .99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: .6rem 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 1;
  }

  .mobile-menu .button {
    width: max-content;
    margin-top: 1.4rem;
    font-family: var(--sans);
    font-size: .78rem;
  }

  .hero__footer {
    grid-template-columns: 1fr auto;
  }

  .hero__signature {
    display: none;
  }

  .intro,
  .services__heading,
  .world__content,
  .islamic,
  .contact__head {
    grid-template-columns: .15fr 1fr;
  }

  .intro__copy,
  .services__heading p,
  .world__details,
  .islamic__content,
  .contact__head p {
    grid-column: 2;
  }

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

  .world__orbit {
    right: -20vw;
    width: 70vw;
  }

  .location__card {
    grid-template-columns: .65fr 1fr;
  }

  .location__action {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --page-pad: 1.3rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .site-header {
    min-height: 5rem;
    gap: .7rem;
  }

  .brand__mark {
    width: 2.45rem;
  }

  .brand__name {
    font-size: .9rem;
  }

  .brand__name small {
    font-size: .57rem;
    letter-spacing: .12em;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 48rem;
  }

  .hero__image {
    background-position: 61% center;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(8, 8, 7, .93) 0%, rgba(8, 8, 7, .72) 67%, rgba(8, 8, 7, .35) 100%), linear-gradient(0deg, rgba(8, 8, 7, .92), transparent 55%);
  }

  .hero__frame {
    inset: 6.3rem var(--page-pad) 1.2rem;
  }

  .hero__content {
    padding-top: 9rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 6.5rem);
  }

  .hero__footer {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    margin-top: 2.5rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .scroll-cue {
    display: none;
  }

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

  .values-strip div {
    padding: 1rem .7rem;
    border-bottom: 1px solid rgba(17, 17, 15, .24);
    font-size: .96rem;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .intro,
  .services__heading,
  .world__content,
  .islamic,
  .contact__head,
  .location__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro__copy,
  .services__heading p,
  .world__details,
  .islamic__content,
  .contact__head p {
    grid-column: 1;
  }

  .section-index {
    margin-bottom: .5rem;
  }

  .intro h2,
  .services__heading h2,
  .world h2,
  .islamic h2,
  .location h2,
  .contact h2 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

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

  .service-card {
    min-height: 19rem;
  }

  .world {
    min-height: 0;
  }

  .world__orbit {
    top: auto;
    right: -40vw;
    bottom: -10vw;
    width: 110vw;
    transform: none;
  }

  .islamic__statement {
    padding: 2rem 0 0;
  }

  .islamic__content {
    padding: 2rem 0 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .location__card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .location__city {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .location__action {
    grid-column: 1;
  }

  .contact-link {
    grid-template-columns: 1fr auto;
    gap: .75rem;
    min-height: 7rem;
  }

  .contact-link span {
    grid-column: 1 / -1;
  }

  .contact-link strong {
    font-size: clamp(1.55rem, 8vw, 3rem);
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .brand__name span {
    max-width: 10rem;
  }

  .contact-link strong {
    font-size: 1.45rem;
  }
}

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

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

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

/* Markup-specific composition */
.header-call {
  display: grid;
  gap: .2rem;
  text-align: right;
}

.header-call small {
  color: rgba(255, 255, 255, .6);
  font-size: .62rem;
  letter-spacing: .15em;
}

.header-call strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .03em;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__footer > p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.button--line {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(17, 17, 15, .15);
}

.hero__signature {
  position: absolute;
  right: calc(var(--page-pad) + 5.5rem);
  bottom: 3rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .65);
  font-family: var(--serif);
  font-size: .92rem;
}

.hero__signature i {
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.values-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
}

.values-strip span {
  padding: 1.45rem 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  text-align: center;
}

.values-strip i {
  width: 1px;
  height: 2.2rem;
  background: rgba(17, 17, 15, .28);
}

.section-index {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: .8rem;
}

.section-index p {
  margin: 0;
  color: currentColor;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-index span {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.section-index--light {
  color: var(--gold-light);
}

.intro h2 em,
.services__heading h2 em,
.location h2 em,
.contact h2 em {
  color: var(--gold);
  font-weight: 400;
}

.services__heading {
  grid-template-columns: .22fr 1fr;
}

.world {
  padding: clamp(7rem, 12vw, 11rem) var(--page-pad);
}

.world__orbit--two {
  top: 54%;
  right: -2vw;
  width: min(40vw, 36rem);
  transform: translateY(-50%) rotate(19deg);
}

.world__content {
  grid-template-areas:
    "index title lead"
    ". title details";
  grid-template-columns: .2fr 1fr .8fr;
}

.world__content > .section-index {
  grid-area: index;
}

.world__content > h2 {
  grid-area: title;
}

.world__content > .world__lead {
  grid-area: lead;
}

.world__content > .world__details {
  grid-area: details;
}

.world__details > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.world__details li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: baseline;
}

.world__details li span {
  color: var(--gold-light);
  font-size: .7rem;
  letter-spacing: .1em;
}

.islamic {
  grid-template-columns: 1.15fr .75fr;
}

.eyebrow--dark {
  color: #6e5a31;
}

.islamic__content .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.4;
}

.location__card address {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: normal;
  line-height: 1.35;
}

.location__action {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(17, 17, 15, .45);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  padding: clamp(7rem, 12vw, 11rem) var(--page-pad);
}

.contact > .eyebrow,
.contact > h2,
.contact > .contact__actions {
  position: relative;
  z-index: 2;
}

.contact > h2 {
  max-width: 12ch;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.contact-link small {
  color: var(--gold-light);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-link > span {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.contact-link::after {
  content: none;
}

.contact-link:hover small,
.contact-link:hover > span {
  color: var(--ink);
}

.contact-link--gold {
  color: var(--ink);
  background: var(--gold);
}

.contact-link--gold small,
.contact-link--gold > span {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: 3rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.site-footer__brand strong,
.site-footer__brand small {
  display: block;
}

.site-footer__brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.site-footer__brand small {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .08em;
}

.site-footer > div > p {
  margin: 0 0 .5rem;
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer > div:nth-child(3) a {
  display: block;
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .75rem;
}

@media (max-width: 1200px) {
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

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

  .world__content {
    grid-template-areas:
      "index title"
      ". lead"
      ". details";
    grid-template-columns: .15fr 1fr;
  }

  .islamic {
    grid-template-columns: 1.1fr .9fr;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .hero__signature {
    display: none;
  }

  .values-strip {
    grid-template-columns: 1fr 1px 1fr;
    padding: 0;
  }

  .values-strip i:nth-of-type(2) {
    display: none;
  }

  .values-strip span:nth-of-type(n+3) {
    border-top: 1px solid rgba(17, 17, 15, .24);
  }

  .values-strip i:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .world__content {
    grid-template-areas:
      "index"
      "title"
      "lead"
      "details";
    grid-template-columns: 1fr;
  }

  .world__orbit--two {
    right: -20vw;
    bottom: -20vw;
    width: 80vw;
  }

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

  .contact-link {
    grid-template-columns: 1fr auto;
  }

  .contact-link small {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__brand,
  .site-footer__bottom {
    grid-column: 1;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: .8rem;
  }
}

/* Italian / Arabic language controls */
.site-header {
  grid-template-columns: minmax(14rem, 1fr) auto auto minmax(12rem, .72fr);
  gap: clamp(.8rem, 1.6vw, 2rem);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .42rem .55rem;
  border: 1px solid rgba(208, 184, 120, .42);
  background: rgba(17, 17, 15, .35);
}

.language-switcher span {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, .25);
}

.language-switcher button {
  min-height: 2rem;
  padding: .2rem .45rem;
  color: rgba(255, 255, 255, .72);
  border: 0;
  background: transparent;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--gold-light);
}

.desktop-nav a,
.button {
  font-size: .875rem;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.85;
  text-align: right;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .intro h2,
html[dir="rtl"] .services__heading h2,
html[dir="rtl"] .service-card h3,
html[dir="rtl"] .world h2,
html[dir="rtl"] .world__lead,
html[dir="rtl"] .islamic h2,
html[dir="rtl"] .islamic__content .lead,
html[dir="rtl"] .location h2,
html[dir="rtl"] .location__city,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .contact-link strong,
html[dir="rtl"] .brand__name,
html[dir="rtl"] .site-footer__brand strong {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] .hero h1 {
  margin-right: auto;
  margin-left: 0;
  font-size: clamp(3.5rem, 7.6vw, 7.4rem);
  line-height: 1.08;
}

html[dir="rtl"] .hero__content > .eyebrow {
  width: max-content;
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .hero__footer {
  width: min(100%, 72rem);
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .hero__footer > p,
html[dir="rtl"] .intro__copy,
html[dir="rtl"] .world__details,
html[dir="rtl"] .islamic__content,
html[dir="rtl"] .contact > .eyebrow,
html[dir="rtl"] .contact > h2 {
  text-align: right;
}

html[dir="rtl"] .hero__actions,
html[dir="rtl"] .section-index,
html[dir="rtl"] .text-link,
html[dir="rtl"] .location__action,
html[dir="rtl"] .site-footer__brand {
  flex-direction: row;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-index p,
html[dir="rtl"] .desktop-nav a,
html[dir="rtl"] .button,
html[dir="rtl"] .location__action,
html[dir="rtl"] .contact-link small,
html[dir="rtl"] .site-footer > div > p {
  letter-spacing: 0;
}

html[dir="rtl"] .header-call {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .hero__signature {
  right: auto;
  left: calc(var(--page-pad) + 5.5rem);
}

html[dir="rtl"] .scroll-cue {
  right: auto;
  left: calc(var(--page-pad) + 1.4rem);
}

html[dir="rtl"] .world__orbit {
  right: auto;
  left: -8vw;
}

html[dir="rtl"] .world__orbit--two {
  right: auto;
  left: -2vw;
}

html[dir="rtl"] .world__label {
  right: auto;
  left: -1.5vw;
}

html[dir="rtl"] .islamic__statement::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .islamic__content {
  border-right: 1px solid var(--gold);
  border-left: 0;
}

html[dir="rtl"] #sede address,
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href^="mailto:"] strong,
html[dir="rtl"] .site-footer a[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] #sede address {
  text-align: right;
}

html[dir="rtl"] .contact-link:hover {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

html[dir="rtl"] .site-footer__bottom {
  text-align: right;
}

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

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

  .language-switcher {
    gap: .25rem;
    padding: .3rem .35rem;
  }

  .language-switcher button {
    padding: .15rem .32rem;
  }

  html[dir="rtl"] .hero h1 {
    margin-right: 0;
    font-size: clamp(3rem, 14vw, 5.4rem);
    line-height: 1.14;
  }

  html[dir="rtl"] .hero__content > .eyebrow {
    margin-right: 0;
  }

  html[dir="rtl"] .hero__footer {
    width: 100%;
    margin-right: 0;
  }

  html[dir="rtl"] .islamic__content {
    border-top: 1px solid var(--gold);
    border-right: 0;
  }

  html[dir="rtl"] .world__orbit,
  html[dir="rtl"] .world__orbit--two {
    right: auto;
    left: -40vw;
  }

  html[dir="rtl"] .mobile-menu a {
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.35;
  }
}

/* Definitive small-screen composition */
@media (max-width: 780px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  :root {
    --page-pad: 1rem;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: .45rem;
    min-height: 4.6rem;
    padding: .65rem 1rem;
  }

  .brand {
    min-width: 0;
    gap: .55rem;
  }

  .brand__mark {
    flex: 0 0 2.3rem;
    width: 2.3rem;
  }

  .brand__name {
    min-width: 0;
  }

  .brand__name strong {
    display: none;
  }

  .brand__name small {
    overflow: hidden;
    font-size: .7rem;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher {
    flex: 0 0 auto;
    gap: .2rem;
    padding: .25rem .3rem;
  }

  .language-switcher button {
    min-height: 2rem;
    padding: .15rem .3rem;
    font-size: .8rem;
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
    padding: .72rem;
  }

  .mobile-menu {
    inset: 4.6rem 0 0;
    gap: .45rem;
    padding: 2rem 1.25rem;
    overflow-y: auto;
  }

  .mobile-menu a {
    padding: .45rem 0;
    font-size: clamp(1.75rem, 9vw, 3rem);
    line-height: 1.12;
  }

  .mobile-menu a[href^="tel:"] {
    width: 100%;
    margin-top: 1rem;
    padding: .9rem 1rem;
    color: var(--ink);
    background: var(--gold-light);
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 800;
    text-align: center;
  }

  .hero {
    align-items: stretch;
    min-height: 100svh;
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, .96) 0%, rgba(8, 8, 7, .88) 45%, rgba(8, 8, 7, .47) 100%),
      linear-gradient(0deg, rgba(8, 8, 7, .93) 0%, transparent 58%);
  }

  .hero__frame {
    inset: 5.55rem .75rem .75rem;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 7.8rem 1rem 2.2rem;
  }

  .hero__content > .eyebrow {
    margin-bottom: 1rem;
    font-size: .75rem;
    line-height: 1.45;
  }

  .hero h1,
  html[dir="rtl"] .hero h1 {
    width: 100%;
    max-width: 8.8ch;
    margin-right: auto;
    margin-left: 0;
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: .94;
  }

  html[dir="rtl"] .hero h1 {
    max-width: 10ch;
    line-height: 1.12;
  }

  .hero__footer,
  html[dir="rtl"] .hero__footer {
    display: block;
    width: 100%;
    margin: 2rem 0 0;
  }

  .hero__footer > p {
    max-width: 32rem;
    margin-bottom: 1.35rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 3.35rem;
  }

  .hero__signature,
  .scroll-cue {
    display: none;
  }

  .values-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .values-strip i {
    display: none !important;
  }

  .values-strip span {
    padding: 1rem .6rem;
    border-right: 1px solid rgba(17, 17, 15, .22);
    border-bottom: 1px solid rgba(17, 17, 15, .22);
    font-size: .95rem;
  }

  .values-strip span:nth-of-type(even) {
    border-right: 0;
  }

  .section,
  .world,
  .contact {
    padding: 4.75rem 1rem;
  }

  .section-index {
    gap: .65rem;
    width: 100%;
    margin: 0 0 1.35rem;
    padding: 0;
  }

  .section-index p {
    font-size: .75rem;
  }

  .intro,
  .services__heading,
  .world__content,
  .islamic,
  .location__heading,
  .location__card,
  .contact__actions,
  .site-footer {
    display: block;
    width: 100%;
  }

  .intro__title,
  .intro__copy,
  .services__heading h2,
  .world__content > h2,
  .world__lead,
  .world__details,
  .islamic__statement,
  .islamic__content,
  .location__heading h2 {
    width: 100%;
    max-width: none;
  }

  .intro h2,
  .services__heading h2,
  .world h2,
  .islamic h2,
  .location h2,
  .contact h2 {
    overflow-wrap: anywhere;
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1.03;
  }

  html[dir="rtl"] .intro h2,
  html[dir="rtl"] .services__heading h2,
  html[dir="rtl"] .world h2,
  html[dir="rtl"] .islamic h2,
  html[dir="rtl"] .location h2,
  html[dir="rtl"] .contact h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: 1.25;
  }

  .intro__copy {
    margin-top: 2rem;
    padding: 0;
  }

  .intro__copy p,
  .services__heading p,
  .world__details p,
  .islamic__content p,
  .contact p {
    overflow-wrap: anywhere;
  }

  .services__heading {
    margin-bottom: 2.5rem;
  }

  .services__heading h2 {
    margin-top: .5rem;
  }

  .services__grid {
    display: block;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .service-card {
    display: block;
    min-height: 0;
    padding: 1.7rem;
  }

  .service-card__number {
    display: block;
    margin-bottom: 2.5rem;
  }

  .service-card h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.12;
  }

  .world__content > h2 {
    margin: 0;
  }

  .world__lead {
    margin: 2rem 0 1.5rem;
    font-size: 1.3rem;
  }

  .world__details {
    padding: 0;
  }

  .world__details li {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: .5rem;
  }

  html[dir="rtl"] .world__details li {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .world__label {
    right: -1rem;
    bottom: -1rem;
    font-size: 8rem;
  }

  html[dir="rtl"] .world__label {
    right: auto;
    left: -1rem;
  }

  .islamic__statement {
    padding: 2rem 0 0;
  }

  .islamic__content,
  html[dir="rtl"] .islamic__content {
    margin-top: 2.2rem;
    padding: 2rem 0 0;
    border-top: 1px solid var(--gold);
    border-right: 0;
    border-left: 0;
  }

  .location__heading {
    margin-bottom: 2.4rem;
  }

  .location__card {
    padding: 1.6rem;
  }

  .location__city {
    display: block;
    margin-bottom: 1.8rem;
    font-size: clamp(3.9rem, 20vw, 6rem);
    line-height: .8;
  }

  .location__card address {
    display: block;
    margin-bottom: 1.8rem;
    font-size: 1.25rem;
  }

  .location__action {
    display: flex;
    width: max-content;
    max-width: 100%;
    white-space: normal;
  }

  .contact > h2 {
    max-width: none;
    margin-bottom: 2.8rem;
  }

  .contact-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .55rem 1rem;
    min-height: 0;
    padding: 1.45rem .15rem;
  }

  .contact-link small {
    grid-column: 1 / -1;
    font-size: .75rem;
  }

  .contact-link strong {
    min-width: 0;
    font-size: clamp(1.35rem, 6.7vw, 2.2rem);
    line-height: 1.18;
  }

  .contact-link > span {
    align-self: center;
  }

  .site-footer {
    padding: 3rem 1rem 2rem;
  }

  .site-footer > div {
    margin-bottom: 2rem;
  }

  .site-footer__brand {
    display: flex;
  }

  .site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin: .5rem 0 0 !important;
  }
}

@media (max-width: 370px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    padding-right: .7rem;
    padding-left: .7rem;
  }

  .brand__name {
    display: none;
  }

  .hero h1,
  html[dir="rtl"] .hero h1 {
    font-size: 3rem;
  }

  .contact-link strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 780px) {
  html[dir="rtl"] .hero__actions a[href^="tel:"],
  html[dir="rtl"] .mobile-menu a[href^="tel:"] {
    direction: rtl;
    unicode-bidi: normal;
  }
}

/* Hard stop for mobile horizontal overflow */
@media (max-width: 780px) {
  html,
  body {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body,
  main,
  .site-header,
  .mobile-menu,
  .hero,
  .hero__content,
  .values-strip,
  .section,
  .services,
  .services__grid,
  .world,
  .world__content,
  .islamic,
  .location,
  .location__card,
  .contact,
  .contact__actions,
  .site-footer {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  main,
  .hero,
  .services,
  .world,
  .islamic,
  .location,
  .contact,
  .site-footer {
    overflow-x: hidden;
  }

  .hero__image {
    max-width: none;
    transform: none !important;
    animation: none !important;
  }

  .world__orbit,
  .world__label,
  .contact__glow {
    display: none;
  }

  .site-header > *,
  .hero__content > *,
  .services__grid > *,
  .world__content > *,
  .islamic > *,
  .location__card > *,
  .contact-link > *,
  .site-footer > * {
    min-width: 0;
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  address,
  a,
  strong,
  small,
  span {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .language-switcher {
    max-width: 6.4rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .contact-link,
  .contact-link:hover {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: .15rem;
    padding-left: .15rem;
  }

  .location__action {
    width: 100%;
    max-width: 100%;
  }
}

/* Official Trombetta identity and separated mobile header */
.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  grid-template-columns: minmax(16rem, 1fr) auto auto minmax(12rem, .72fr);
  min-height: 6.8rem;
  padding-top: .7rem;
  padding-bottom: .7rem;
  color: var(--ink);
  background: rgba(247, 245, 239, .97);
  border-color: rgba(0, 99, 54, .24);
  box-shadow: 0 .7rem 2.2rem rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(100%, 18rem);
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 5rem;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav a {
  color: #20211f;
}

.desktop-nav a::after {
  background: #006336;
}

.header-call {
  color: #006336;
  border-color: rgba(0, 99, 54, .32);
  background: rgba(255, 255, 255, .55);
}

.header-call small {
  color: #5c5b55;
}

.header-call strong {
  color: #006336;
}

.header-call:hover {
  color: #fff;
  background: #006336;
}

.header-call:hover small,
.header-call:hover strong {
  color: #fff;
}

.language-switcher {
  border-color: rgba(0, 99, 54, .34);
  background: #fff;
}

.language-switcher span {
  background: rgba(0, 99, 54, .3);
}

.language-switcher button {
  color: #31332f;
}

.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: #006336;
}

.menu-toggle {
  border-color: rgba(0, 99, 54, .38);
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  background: #006336;
}

.hero__frame {
  top: 8.2rem;
}

.site-footer__brand {
  width: min(100%, 21rem);
  padding: .85rem;
  background: #fff;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) and (min-width: 781px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    grid-template-columns: minmax(12rem, 1fr) auto auto auto;
    gap: .7rem;
  }

  .brand {
    width: min(100%, 14rem);
  }
}

@media (max-width: 780px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    display: grid;
    grid-template-areas:
      "logo logo"
      "language menu";
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 5.35rem 2.85rem;
    row-gap: .55rem;
    column-gap: 1rem;
    width: 100%;
    min-height: 9.45rem;
    padding: .45rem 1rem .65rem;
    overflow: hidden;
  }

  .brand {
    grid-area: logo;
    align-self: center;
    justify-self: center;
    width: min(100%, 15rem);
    max-width: 15rem;
    height: 5.15rem;
    padding: .15rem .35rem .35rem;
  }

  .brand__logo {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .language-switcher {
    grid-area: language;
    align-self: center;
    justify-self: start;
    width: auto;
    max-width: 7rem;
    min-height: 2.65rem;
    padding: .3rem .4rem;
  }

  .language-switcher button {
    min-height: 2rem;
    padding: .2rem .4rem;
    font-size: .875rem;
  }

  .menu-toggle {
    grid-area: menu;
    align-self: center;
    justify-self: end;
    width: 2.7rem;
    height: 2.7rem;
  }

  .header-call,
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    inset: 9.45rem 0 0;
    padding-top: 1.5rem;
  }

  .hero__frame {
    top: 10.35rem;
  }

  .hero__content {
    padding-top: 11.6rem;
  }

  .site-footer__brand {
    display: block;
    width: min(100%, 18rem);
    padding: .75rem;
  }
}

@media (max-width: 370px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    grid-template-rows: 4.85rem 2.75rem;
    min-height: 8.85rem;
    padding-right: .7rem;
    padding-left: .7rem;
  }

  .brand {
    width: min(100%, 13.5rem);
    height: 4.7rem;
  }

  .mobile-menu {
    top: 8.85rem;
  }

  .hero__frame {
    top: 9.7rem;
  }

  .hero__content {
    padding-top: 10.9rem;
  }
}

/* Mobile menu detached from the header clipping context */
@media (max-width: 1200px) {
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid !important;
    grid-template-columns: auto 1rem;
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
    column-gap: .45rem;
    row-gap: 0;
    width: 4.7rem;
    padding: .5rem .6rem;
    direction: ltr;
  }

  .menu-toggle::before {
    grid-column: 1;
    grid-row: 1 / 3;
    color: #006336;
    content: "MENU";
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
  }

  .menu-toggle span:not(.sr-only) {
    grid-column: 2;
    width: 1rem;
  }

  .menu-toggle span:first-child {
    grid-row: 1;
    align-self: end;
    margin-bottom: 2px;
  }

  .menu-toggle span:nth-child(2) {
    grid-row: 2;
    align-self: start;
    margin-top: 2px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    align-self: center;
    margin: 0;
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    align-self: center;
    margin: 0;
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 101;
    width: 100% !important;
    max-width: none !important;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto;
  }
}

@media (max-width: 780px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    overflow: visible;
  }

  .menu-toggle {
    grid-area: menu;
    width: 4.7rem;
    height: 2.7rem;
  }

  .mobile-menu {
    top: 9.45rem !important;
    padding: 1.4rem 1.25rem 2rem;
  }
}

@media (max-width: 370px) {
  .mobile-menu {
    top: 8.85rem !important;
  }
}

.site-footer__bottom a {
  color: var(--gold-light);
  font-weight: 700;
  border-bottom: 1px solid rgba(208, 184, 120, .55);
  transition: color .2s ease, border-color .2s ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #fff;
  border-color: #fff;
}

/* Centered footer signature */
.site-footer__bottom,
html[dir="rtl"] .site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: .65rem;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.site-footer__bottom > span {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
}

.site-footer__bottom > span:last-child {
  line-height: 1.6;
}

@media (max-width: 780px) {
  .site-footer__bottom,
  html[dir="rtl"] .site-footer__bottom {
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
  }
}

/* Prevent decorative layers from widening phone-landscape and tablet viewports */
@media (max-width: 1200px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .world {
    overflow: hidden;
    contain: paint;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none !important;
    animation: none !important;
  }

  .world__orbit,
  .world__label {
    display: none !important;
  }
}

html[dir="rtl"] .brand {
  direction: ltr;
}

html[dir="rtl"] .brand__logo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  direction: ltr;
}

/* Global horizontal-axis lock, including mobile browser elastic panning */
html,
body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden !important;
  overflow-x: clip !important;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}

body {
  position: relative;
}

body > .site-header,
body > main,
body > .site-footer,
body > .mobile-menu,
main > * {
  min-width: 0;
  max-width: 100%;
}

body > main,
body > .site-footer,
main > * {
  overflow-x: hidden;
  overflow-x: clip;
}

body > .site-header,
body > .mobile-menu {
  right: 0 !important;
  left: 0 !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Keep the visual artwork physically inside the layout on large tablets too */
.hero__image {
  transform: none !important;
  animation: none !important;
}

@media (min-width: 1201px) {
  .world__orbit,
  .world__orbit--two {
    right: 0 !important;
    left: auto !important;
    max-width: 100%;
  }

  .world__label {
    right: 0 !important;
    left: auto !important;
    max-width: 100%;
  }

  html[dir="rtl"] .world__orbit,
  html[dir="rtl"] .world__orbit--two,
  html[dir="rtl"] .world__label {
    right: auto !important;
    left: 0 !important;
  }
}

@media (min-width: 1201px) {
  .world__orbit--two {
    transform: translateY(-50%) !important;
  }
}

/* Tight closing edge below the copyright */
.site-footer {
  padding-bottom: 0;
}

.site-footer__bottom,
html[dir="rtl"] .site-footer__bottom {
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

@media (max-width: 780px) {
  .site-footer {
    padding-bottom: 0;
  }
}

/* Match the browser overscroll canvas to the closing footer */
html,
body {
  background-color: #080807;
  overscroll-behavior-y: none;
}

body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* The footer is the final rendered edge of the document */
html,
body {
  overscroll-behavior-y: none;
}

html {
  background-color: #080807;
}

body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background-color: var(--ivory);
}

[hidden] {
  display: none !important;
}

body > .site-footer {
  margin-bottom: 0 !important;
}
