:root {
  --gold: #C09058;
  --gold-light: #E0C090;
  --bronze: #503018;
  --black: #000000;
  --white: #ffffff;
  --display: "Playfair Display";
  --body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: #fff;
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.page-shell {
  position: relative;
  z-index: 2;
  width: calc(100% - 80px);
  max-width: 1500px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .82), rgba(0, 0, 0, .82)),
    image-set(
      url("assets/texture.webp") type("image/webp"),
      url("assets/texture.jpg") type("image/jpeg")
    ) center 62% / cover no-repeat;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-logo {
  width: 124px;
  height: 70px;
  overflow: hidden;
  background: #080808;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.texture-section {
  position: relative;
  isolation: isolate;
  background: image-set(
    url("assets/texture.webp") type("image/webp"),
    url("assets/texture.jpg") type("image/jpeg")
  ) center / cover no-repeat;
}

.texture-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, .44);
  backdrop-filter: blur(2.4px);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  overflow: hidden;
  background: image-set(
    url("assets/hawas-ring.webp") type("image/webp"),
    url("assets/hawas-ring.JPG") type("image/jpeg")
  ) center bottom / cover no-repeat;
}

@media (min-width: 1440px) {
  .hero-section {
    background-size: auto 100%;
  }
}

.hero-shade {
  display: none;
}

.hero-inner {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .74fr);
  align-items: center;
  gap: 92px;
  padding-top: 80px;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 520px;
}

.display-title,
.section-title,
.faq-heading,
.faq-question,
.footer-block h3 {
  font-family: var(--display);
}

.desktop-title-lines {
  display: inline;
}

.mobile-title-lines {
  display: none;
}

.display-title {
  margin: 0 0 26px;
  background: linear-gradient(90deg, #C09058 0%, #E0C090 50%, #503018 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.025em;
}

.hero-copy>p {
  max-width: 510px;
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.5;
}

.hero-copy>p+p {
  max-width: 520px;
  margin-top: 22px;
}

.gold-button {
  appearance: none;
  border: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  color: #070707;
  background: linear-gradient(90deg, #C09058 0%, #E0C090 50%, #503018 100%);
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
  font-weight: 500 !important;
}

.gold-button:hover {
  filter: brightness(1.08);
}

.gold-button:active {
  transform: translateY(1px);
}

.gold-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.gold-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gold-button svg.whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.hero-whatsapp {
  margin-top: 10px;
  min-width: 256px;
}

.mobile-form-whatsapp {
  display: none;
}

.lead-form {
  width: 100%;
  max-width: 505px;
  justify-self: end;
  display: grid;
  gap: 14px;
  scroll-margin-top: 100px;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.phone-field {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  outline: none;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 0 16px;
}

.required-field {
  position: relative;
  display: block;
}

.required-mark {
  position: absolute;
  top: 50%;
  right: 14px;
  color: #ff3b30;
  transform: translateY(-50%);
  pointer-events: none;
  font-weight: 600;
  line-height: 1;
}

.required-field input {
  padding-right: 28px;
}

.lead-form textarea {
  min-height: 86px;
  padding-top: 15px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, .94);
  opacity: 1;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, .94);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.custom-select-trigger:focus,
.custom-select-wrapper.is-open .custom-select-trigger {
  border-color: var(--gold-light);
  background: rgba(0, 0, 0, .85);
  outline: none;
}

.custom-select-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-select-wrapper.is-open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 99;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .9);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  display: none;
  max-height: 240px;
  overflow-y: auto;
}

.custom-select-wrapper.is-open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option.is-placeholder {
  color: rgba(255, 255, 255, .6);
}

.custom-select-option:hover,
.custom-select-option.is-selected {
  background: linear-gradient(90deg, #C09058 0%, #E0C090 100%);
  color: #000000;
  font-weight: 500;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.phone-field:focus-within {
  border-color: var(--gold-light);
  background: rgba(0, 0, 0, .85);
}

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

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  overflow: hidden;
}

.country-code-select {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: transparent;
  color: #fff;
  color-scheme: dark;
  accent-color: var(--gold);
  padding: 0 8px 0 12px;
  cursor: pointer;
}

.country-code-select option {
  background-color: #1a1a1a;
  color: #ffffff;
}

.country-code-select option:hover,
.country-code-select option:focus,
.country-code-select option:active,
.country-code-select option:checked {
  background-color: #C09058 !important;
  background: #C09058 !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.phone-field input {
  border: 0;
  background: transparent;
  min-width: 0;
  padding-left: 10px;
  height: 100%;
  color: #fff;
  width: 100%;
  padding-right: 28px;
}

.phone-required-mark {
  right: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  position: relative;
}

.form-submit .submit-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit.is-loading .submit-label {
  display: none;
}

.form-submit.is-loading .submit-loading {
  display: inline-flex;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .88;
}

.submit-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, .35);
  border-top-color: #000;
  border-radius: 50%;
  animation: submitSpin .8s linear infinite;
}

@keyframes submitSpin {
  to {
    transform: rotate(360deg);
  }
}

.discovery-section {
  min-height: 600px;
  padding: 60px 0;
}

.discovery-grid {
  min-height: 482px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.logo-panel-wrap {
  width: 100%;
  max-width: 620px;
  height: 470px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.logo-panel {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.discovery-copy {
  padding-top: 1px;
}

.section-title {
  margin: 0;
  background: linear-gradient(90deg, #C09058 0%, #E0C090 50%, #503018 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -.02em;
}

.gold-rule {
  width: 42px;
  height: 1px;
  margin: 24px 0 0;
  background: linear-gradient(90deg, #C09058 0%, #E0C090 50%, #503018 100%);
}

.discovery-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 24px;
}

.discovery-list li {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
}

.discovery-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.discovery-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  object-fit: contain;
  display: block;
}

.partnership-section {
  min-height: 275px;
  padding: 45px 0 0px;
  background-position: center 58%;
}

.partnership-title {
  text-align: center;
  margin-bottom: 66px;
}

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

.partner-item {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  min-width: 0;
  text-align: center;
  color: var(--gold);
  cursor: pointer;
}

.partner-item svg,
.partner-item img {
  width: 36px;
  height: 36px;
  margin: 0 auto 17px;
  display: block;
  object-fit: contain;
}

.partner-item svg {
  fill: none;
  stroke: url(#gold-gradient);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-item p {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
}

.partner-item:hover p,
.partner-item:focus-visible p {
  color: var(--gold-light);
}

.partner-item:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 8px;
}

.cards-section {
  min-height: 630px;
  padding: 70px 0 78px;
  background-position: center 45%;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.glass-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(0, 0, 0, .14);
  padding: 47px 48px 39px;
  text-align: center;
}

.card-title {
  font-size: 47px;
  line-height: 1.2;
}

.glass-card>p {
  margin: 23px auto 27px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
}

.map-embed,
.map-card iframe,
.map-card img {
  width: 100%;
  height: 205px;
  border: 0;
  object-fit: cover;
  margin: 0 auto 24px;
}

.map-embed {
  position: relative;
}

.map-embed iframe {
  margin: 0;
}

.map-embed a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-button {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
}

.whatsapp-card {
  padding-left: 35px;
  padding-right: 35px;
}

.whatsapp-card>p {
  max-width: 500px;
  margin-bottom: 28px;
}

.whatsapp-message {
  min-height: 106px;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.5;
}

.consent-row {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 14px;
  margin: 25px 0 25px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  background: transparent;
  display: grid;
  place-items: center;
}

.consent-row input:checked+.custom-checkbox::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #ffffff;
}


.consent-row input:focus-visible+.custom-checkbox {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.consent-error {
  min-height: 18px;
  margin: 8px 0 -19px !important;
  color: #ffd7ca;
  font-size: 12px !important;
  line-height: 1.5;
}

.awaits-section {
  width: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 37%) minmax(0, 63%);
  background: var(--black);
  overflow: hidden;
}

.awaits-copy {
  display: grid;
  align-items: center;
  background-position: 20% center;
}

.awaits-copy-inner {
  position: relative;
  z-index: 2;
  width: min(500px, calc(100% - 80px));
  margin: 0 auto;
}

.awaits-copy .section-title {
  font-size: 48px;
  line-height: 1.2;
}

.awaits-copy p {
  margin: 25px 0 33px;
  font-size: 16px;
  line-height: 1.5;
}

.awaits-image {
  background: image-set(
    url("assets/Awaits.webp") type("image/webp"),
    url("assets/Awaits.png") type("image/png")
  ) center 40% / cover no-repeat;
  height: 420px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 60px;
}

.thank-you-panel {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.thank-you-logo {
  width: min(360px, 78vw);
  height: auto;
}

.thank-you-panel p {
  max-width: 520px;
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.faq-section {
  color: #060606;
  background: linear-gradient(90deg, #C09058 0%, #E0C090 50%, #503018 100%);
}

.faq-shell {
  padding: 48px 0 45px;
}

.faq-heading {
  margin: 0 0 32px;
  text-align: center;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.02em;
}

.faq-item {
  border-bottom: 1px solid rgba(68, 39, 20, .25);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 18px 0 16px;
  border: 0;
  background: transparent;
  color: #060606;
  text-align: left;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
  cursor: pointer;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.is-open.visual-down .faq-chevron {
  transform: none;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

.faq-answer p {
  margin: 4px 0 22px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.site-footer {
  min-height: 309px;
  padding: 54px 0 28px;
  background-position: center 74%;
}

.site-footer .texture-overlay {
  background: rgba(0, 0, 0, .6);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-socials {
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-logo-column img {
  width: 170px;
  height: 104px;
  object-fit: contain;
}

.footer-block h3 {
  margin: 3px 0 20px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.footer-block p {
  margin: 0 0 15px;
  font-size: 12px;
  line-height: 1.5;
}

.footer-block a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socials a {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--gold-light);
}

.socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  display: block;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  color: #111;
  background: var(--gold-light);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
  transition: opacity .2s ease, transform .2s ease;
  font-size: 14px;
  line-height: 1.5;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1023px) {
  .page-shell {
    width: min(900px, calc(100% - 48px));
  }

  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 35px;
  }

  .discovery-grid {
    gap: 40px;
  }

  .partnership-grid {
    gap: 12px;
  }

  .partner-item p {
    font-size: 15px;
  }

  .glass-card {
    padding-left: 28px;
    padding-right: 28px;
  }

  .footer-shell {
    gap: 35px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .awaits-copy.texture-section {
    padding-left: 12%;
  }
}

@media (max-width: 767px) {
  .page-shell {
    width: calc(100% - 48px);
  }

  .desktop-break {
    display: none;
  }

  .site-header {
    height: 80px;
  }

  .header-logo {
    width: 116px;
    height: 68px;
  }

  .hero-section {
    min-height: 680px;
    background-image: image-set(
      url("assets/hawas-ring-mobile.webp") type("image/webp"),
      url("assets/hawas-ring.JPG") type("image/jpeg")
    );
    background-size: auto 524px;
    background-position: center top;
  }


  .hero-inner {
    min-height: 680px;
    display: block;
    padding-top: 116px;
    padding-bottom: 40px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .desktop-title-lines {
    display: none;
  }

  .mobile-title-lines {
    display: inline;
    font-weight: 400 !important;
  }

  .display-title {
    margin-bottom: 28px;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -.018em;

  }

  .hero-copy>p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-copy>p+p {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-whatsapp {
    min-width: 0;
    width: 258px;
    margin-top: 68px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 15px;
  }

  .lead-form {
    display: grid;
    margin-top: 3vh;
  }

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

  .mobile-form-whatsapp {
    display: flex !important;
    width: 100%;
    margin-top: 4px;
  }

  .discovery-section {
    min-height: 0;
    padding: 44px 0 35px;
    background-position: 48% center;
  }

  .discovery-section .texture-overlay,
  .partnership-section .texture-overlay,
  .cards-section .texture-overlay {
    background: rgba(0, 0, 0, .43);
    backdrop-filter: blur(2.3px);
  }

  .discovery-grid {
    min-height: 0;
    display: block;
  }

  .logo-panel-wrap {
    max-width: none;
    height: 340px;
  }

  .logo-panel {
    object-fit: contain;
  }

  .discovery-copy {
    padding-top: 44px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .gold-rule {
    margin: 22px 0 20px;
  }

  .discovery-list {
    gap: 23px;
  }

  .discovery-list li {
    gap: 15px;
    font-size: 16px;
    line-height: 1.5;
  }

  .discovery-list svg {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .partnership-section {
    min-height: 0;
    padding: 20px 0 60px;
    background-position: 52% 55%;
  }

  .partnership-title {
    max-width: 330px;
    margin: 0 auto 67px;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
  }

  .partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 10px;
  }

  .partner-item svg,
  .partner-item img {
    width: 43px;
    height: 43px;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-item p {
    font-size: 18px;
    line-height: 1.5;
  }

  .cards-section {
    min-height: 0;
    padding: 30px 0 40px;
    background-position: 50% 44%;
  }

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

  .glass-card {
    min-height: 0;
    padding: 47px 24px 39px;
  }

  .card-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .glass-card>p {
    margin: 25px auto 27px;
    font-size: 16px;
    line-height: 1.5;
  }

  .map-embed,
  .map-card iframe,
  .map-card img {
    height: 180px;
    margin-bottom: 25px;
  }

  .card-button {
    min-height: 53px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .whatsapp-card {
    padding-top: 48px;
    padding-bottom: 39px;
  }

  .whatsapp-card>p {
    margin-bottom: 28px;
  }

  .whatsapp-message {
    min-height: 132px;
    padding: 17px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .consent-row {
    grid-template-columns: 24px 1fr;
    gap: 16px;
    margin: 26px 0 26px;
    font-size: 14px;
    line-height: 1.5;
  }

  .awaits-section {
    min-height: 350px;
    display: block;
    position: relative;
    background: image-set(
      url("assets/hawas-ring-mobile.webp") type("image/webp"),
      url("assets/hawas-ring.JPG") type("image/jpeg")
    ) center top / auto 430px no-repeat;
  }

  .awaits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .2);
  }

  .awaits-copy {
    min-height: 350px;
    display: grid;
    background: transparent;
  }

  .awaits-copy .texture-overlay {
    display: none;
  }

  .awaits-copy-inner {
    width: calc(100% - 48px);
    text-align: center;
    margin: 0 auto;
  }

  .awaits-copy .section-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .awaits-copy p {
    margin: 25px 0 31px;
    font-size: 16px;
    line-height: 1.5;
  }

  .awaits-copy .gold-button {
    width: 100%;
  }

  .awaits-image {
    display: none;
  }

  .faq-shell {
    min-height: 0;
    width: calc(100% - 48px);
    padding: 50px 0 36px;
  }

  .faq-heading {
    max-width: 330px;
    margin: 0 auto 28px;
    font-size: 40px;
    line-height: 1.2;
  }

  .faq-question {
    gap: 16px;
    padding: 33px 0 16px;
    font-size: 20px;
    line-height: 1.4;
  }

  .faq-chevron {
    width: 20px;
    height: 20px;
  }

  .faq-item.is-open .faq-answer {
    max-height: 620px;
  }

  .faq-answer p {
    margin: 3px 0 28px;
    font-size: 14px;
    line-height: 1.5;
  }

  .site-footer {
    min-height: 0;
    padding: 41px 0 40px;
    background-position: 44% center;
  }

  .site-footer .texture-overlay {
    background: rgba(0, 0, 0, .63);
  }

  .footer-shell {
    display: block;
    width: calc(100% - 48px);
  }

  .footer-logo-column img {
    width: 172px;
    height: 112px;
    margin-bottom: 18px;
  }

  .footer-socials {
    margin-top: 0;
    margin-bottom: 36px;
  }

  .footer-block {
    margin-bottom: 44px;
  }

  .footer-block h3 {
    margin: 0 0 23px;
    font-size: 20px;
    line-height: 1.4;
  }

  .footer-block p {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.5;
  }


  .socials {
    justify-content: flex-start;
    gap: 14px;
  }


  .footer-bottom {
    display: block;
    margin-top: 0;
    font-size: 12px;
    line-height: 1.5;
  }


  .footer-bottom nav {
    display: grid;
    gap: 24px;
  }
}

@media (max-width: 374px) {

  .page-shell,
  .faq-shell,
  .footer-shell,
  .awaits-copy-inner {
    width: calc(100% - 36px);
  }

  .display-title {
    font-size: 32px;
  }

  .section-title,
  .partnership-title {
    font-size: 41px;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-question {
    font-size: 20px;
    font-weight: 500;
  }
}

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

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

/* Legal / Policy Pages */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.legal-content h2 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold-light);
  margin: 32px 0 12px;
  font-weight: 500;
}

.legal-content p,
.legal-content ul {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 16px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.back-link .back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-link:hover {
  color: var(--gold-light);
}
