:root {
  --cream: #f5efe6;
  --paper: #fffaf3;
  --paper-deep: #ede3d6;
  --terracotta: #c46a4a;
  --terracotta-dark: #98462f;
  --wine: #753a3e;
  --brown: #3a2e2a;
  --brown-deep: #2d2522;
  --muted: #6f5b52;
  --sage: #425a50;
  --gold: #c9a227;
  --line: rgba(58, 46, 42, 0.18);
  --line-light: rgba(255, 250, 243, 0.22);
  --shadow-soft: 0 18px 50px rgba(58, 46, 42, 0.12);
  --shell: 77.5rem;
}

@font-face {
  font-family: "Tajawal";
  src: url("./assets/fonts/Tajawal/Tajawal-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("./assets/fonts/Tajawal/Tajawal-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("./assets/fonts/Tajawal/Tajawal-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("./assets/fonts/Tajawal/Tajawal-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--brown);
  background: var(--cream);
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

[hidden] {
  display: none !important;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-size: 4.5rem;
  font-weight: 800;
}

h2 {
  font-size: 3.45rem;
  font-weight: 800;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

h4 {
  font-size: 1.08rem;
  font-weight: 800;
}

.site-shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 0.5rem;
  inset-inline-start: 0.5rem;
  z-index: 100;
  padding: 0.6rem 0.8rem;
  color: var(--paper);
  background: var(--brown-deep);
  border-radius: 0.375rem;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  height: 4.75rem;
  background: rgba(245, 239, 230, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(58, 46, 42, 0.07);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: 7.75rem;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.8rem;
  color: var(--muted);
  border-radius: 0.375rem;
  transition: color 150ms ease, background-color 150ms ease;
}

.nav a:hover {
  color: var(--brown);
  background: rgba(58, 46, 42, 0.05);
}

.nav .nav-cta {
  min-width: 6.2rem;
  margin-inline-start: 0.35rem;
  color: var(--paper);
  background: var(--terracotta-dark);
}

.nav .nav-cta:hover {
  color: #fff;
  background: var(--wine);
}

.hero {
  background: var(--cream);
}

.hero-layout {
  display: grid;
  min-height: 43.5rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.92fr);
  gap: 4rem;
  align-items: center;
  padding-block: 3.25rem 3.75rem;
}

.hero-copy {
  max-width: 39rem;
}

.hero-logo {
  width: 10rem;
  height: auto;
  margin-block-end: 0.9rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  color: var(--terracotta-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #edb69e;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--terracotta-dark);
}

.hero-text {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.75;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions {
  margin-block-start: 1.75rem;
}

.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--terracotta-dark);
  box-shadow: 0 12px 28px rgba(117, 58, 62, 0.2);
}

.btn-primary:hover {
  background: var(--wine);
}

.btn-secondary {
  color: var(--brown);
  border-color: var(--line);
  background: transparent;
}

.btn-secondary:hover {
  border-color: rgba(58, 46, 42, 0.34);
  background: var(--paper);
}

.btn-light {
  color: var(--brown-deep);
  background: var(--paper);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 1.05rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-proof li {
  display: grid;
  gap: 0.1rem;
}

.hero-proof strong {
  font-size: 0.94rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-gallery {
  position: relative;
  display: grid;
  height: 36.5rem;
  min-width: 0;
  direction: ltr;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-frame-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.hero-frame-product {
  grid-column: 2;
  grid-row: 1;
}

.hero-frame-event {
  grid-column: 2;
  grid-row: 2;
}

.hero-frame > img:not(.hero-watermark) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-product > img {
  object-position: center 58%;
}

.hero-frame-event > img {
  object-position: center 42%;
}

.hero-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(37, 28, 25, 0.8));
}

.hero-frame figcaption {
  position: absolute;
  inset-inline: 1rem;
  inset-block-end: 0.9rem;
  z-index: 2;
  display: grid;
  color: #fff;
  direction: rtl;
  line-height: 1.35;
}

.hero-frame figcaption strong {
  font-size: 1rem;
}

.hero-frame figcaption span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.hero-frame .hero-watermark {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  width: 7rem;
  height: auto;
  opacity: 0.78;
}

.hero-path {
  color: var(--paper);
  background: var(--terracotta-dark);
}

.path-list {
  display: flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}

.path-list span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.path-list span:not(:last-child)::after {
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  background: #efc8b6;
  border-radius: 50%;
}

.section-pad {
  padding-block: 6.5rem;
}

.section-head {
  max-width: 50rem;
  margin-block-end: 2.5rem;
}

.section-head-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 3rem;
  align-items: end;
}

.section-head > p:not(.eyebrow),
.section-head-split > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.work {
  color: var(--paper);
  background: var(--brown-deep);
}

.work .section-head-split > p {
  color: rgba(255, 250, 243, 0.68);
}

.filters {
  display: flex;
  gap: 0.5rem;
  margin-block-end: 1.5rem;
  overflow-x: auto;
  padding-block: 0.15rem 0.35rem;
  scrollbar-width: thin;
}

.filter {
  min-height: 2.75rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.9rem;
  color: rgba(255, 250, 243, 0.74);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 0.375rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.filter:hover {
  color: #fff;
  border-color: rgba(255, 250, 243, 0.45);
}

.filter.active {
  color: var(--brown-deep);
  border-color: var(--paper);
  background: var(--paper);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.work-grid[data-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 16rem));
}

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

.work-media {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  background: #211b19;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.work-card:hover .work-media img {
  transform: scale(1.025);
}

.work-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(27, 21, 19, 0.9));
}

.work-caption {
  position: absolute;
  inset-inline: 0.8rem;
  inset-block-end: 0.75rem;
  z-index: 2;
}

.work-caption span {
  display: block;
  margin-block-end: 0.15rem;
  color: #efb99f;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.work-caption h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.demo-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 250, 243, 0.52);
  font-size: 0.78rem;
}

.demo-note span {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  background: var(--terracotta);
  border-radius: 50%;
}

.services {
  background: var(--paper);
}

.service-grid {
  border-bottom: 1px solid var(--line);
}

.service-group {
  display: grid;
  grid-template-columns: minmax(13rem, 0.44fr) minmax(0, 1.56fr);
  gap: 2rem;
  padding-block: 2.2rem;
  border-top: 1px solid var(--line);
}

.service-group-head {
  position: relative;
  padding-inline-start: 3.4rem;
}

.service-group-index {
  position: absolute;
  inset-block-start: 0.08rem;
  inset-inline-start: 0;
  color: var(--terracotta-dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-group-head h3 {
  max-width: 15rem;
  font-size: 1.5rem;
}

.service-group-head p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.service-group-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1.5rem;
}

.service-card {
  min-width: 0;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid rgba(196, 106, 74, 0.27);
}

.service-number {
  display: block;
  margin-block-end: 0.75rem;
  color: var(--terracotta-dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
}

.service-card p {
  margin: 0.65rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-price {
  color: var(--terracotta-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  padding-block-start: 1.1rem;
  border-top: 3px solid var(--terracotta);
}

.process-grid span {
  color: var(--terracotta-dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.process-grid h3 {
  margin-block-start: 1.15rem;
  font-size: 1.45rem;
}

.process-grid p {
  max-width: 14rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.why {
  color: var(--paper);
  background: var(--sage);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  gap: 5rem;
  align-items: start;
}

.why-copy > p:last-child {
  max-width: 34rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: 1.08rem;
}

.why-list {
  display: grid;
}

.why-list article {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.15rem 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 250, 243, 0.22);
}

.why-list article:last-child {
  border-bottom: 1px solid rgba(255, 250, 243, 0.22);
}

.why-list article > span {
  grid-row: 1 / 3;
  color: #efb69e;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.why-list p {
  margin: 0.4rem 0 0;
  color: rgba(255, 250, 243, 0.7);
}

.testimonials {
  background: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.quote-card figcaption {
  color: var(--muted);
}

.booking {
  color: #fff;
  background: var(--wine);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 4.5rem;
  align-items: center;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-links {
  margin-block-start: 1.75rem;
}

.instagram {
  padding: 0.65rem 0.2rem;
  color: #fff;
  font-family: "Poppins", "Tajawal", sans-serif;
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--brown);
  background: var(--paper);
  border-radius: 0.5rem;
  box-shadow: 0 20px 46px rgba(45, 27, 27, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.booking-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form small {
  color: #927a70;
  font-size: 0.75rem;
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  font-size: 1rem;
  min-width: 0;
  width: 100%;
  min-height: 3.05rem;
  padding: 0.7rem 0.8rem;
  color: var(--brown);
  background: #fffdf9;
  border: 1px solid rgba(58, 46, 42, 0.22);
  border-radius: 0.375rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.booking-form textarea {
  min-height: 5.3rem;
  resize: vertical;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  border-color: rgba(58, 46, 42, 0.42);
}

.booking-form button {
  width: 100%;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  inset-block-end: max(1rem, env(safe-area-inset-bottom));
  inset-inline-start: 1rem;
  z-index: 40;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1rem;
  color: #fff;
  background: #176b4d;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  box-shadow: 0 14px 30px rgba(23, 107, 77, 0.24);
  font-weight: 800;
  transition: transform 150ms ease, background-color 150ms ease, opacity 150ms ease;
}

.floating-whatsapp:hover {
  background: #11583e;
  transform: translateY(-2px);
}

.floating-whatsapp.is-hidden {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.75rem);
}

.floating-whatsapp span {
  font-family: "Poppins", sans-serif;
}

.footer {
  color: var(--muted);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  min-height: 7rem;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer .brand-logo {
  width: 7rem;
}

.footer p {
  margin: 0;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--terracotta-dark);
  font-weight: 800;
}

@media (max-width: 68.75rem) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-layout {
    min-height: 39rem;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.84fr);
    gap: 2.5rem;
  }

  .hero-gallery {
    height: 31.5rem;
  }

  .work-grid,
  .work-grid[data-count="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .work.section-pad {
    padding-block-start: 5rem;
  }

  .work-caption h3 {
    font-size: 1.12rem;
  }

  .work-caption span {
    font-size: 0.78rem;
  }

  .service-group {
    grid-template-columns: 1fr;
  }

  .service-group-head h3 {
    max-width: none;
  }
}

@media (max-width: 51.25rem) {
  .site-shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .site-header {
    height: 4.4rem;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.4rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-gallery {
    height: 20rem;
    grid-template-columns: 1.18fr 0.91fr 0.91fr;
    grid-template-rows: 1fr;
  }

  .hero-frame-main,
  .hero-frame-product,
  .hero-frame-event {
    grid-row: 1;
  }

  .hero-frame-main {
    grid-column: 1;
  }

  .hero-frame-product {
    grid-column: 2;
  }

  .hero-frame-event {
    grid-column: 3;
  }

  .hero-frame figcaption span {
    display: none;
  }

  .hero-frame .hero-watermark {
    width: 5.5rem;
  }

  .section-pad {
    padding-block: 5rem;
  }

  .work.section-pad {
    padding-block-start: 3rem;
  }

  .section-head-split {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .why-layout,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    padding-block: 1.2rem 5.2rem;
  }

  .footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 40.01rem) and (max-width: 51.25rem) {
  .hero-layout {
    min-height: 39rem;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.78fr);
    gap: 1.25rem;
    padding-block: 2.5rem 3rem;
  }

  .hero-gallery {
    height: 31rem;
    grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .hero-frame-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .hero-frame-product {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-frame-event {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-frame figcaption span {
    display: block;
  }
}

@media (max-width: 40rem) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .brand-logo {
    width: 7rem;
  }

  .nav {
    gap: 0.1rem;
    font-size: 0.9rem;
  }

  .nav a {
    padding-inline: 0.55rem;
  }

  .nav-link-secondary {
    display: none !important;
  }

  .nav .nav-cta {
    min-width: 5rem;
    margin-inline-start: 0.15rem;
  }

  .hero-layout {
    gap: 1.5rem;
    padding-block: 1.6rem 1.8rem;
  }

  .hero-logo {
    display: none;
  }

  .eyebrow {
    font-size: 0.84rem;
  }

  .eyebrow::before {
    width: 1.4rem;
  }

  .hero-text {
    margin-block-start: 1rem;
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-block-start: 1.25rem;
  }

  .hero-actions .btn {
    min-width: 0;
    flex: 1 1 50%;
    padding-inline: 0.7rem;
    font-size: 0.92rem;
  }

  .hero-proof {
    margin-block-start: 1.3rem;
    padding-block-start: 0.85rem;
  }

  .hero-proof strong {
    font-size: 0.82rem;
  }

  .hero-proof span {
    display: none;
  }

  .hero-gallery {
    height: 14.25rem;
    gap: 0.45rem;
  }

  .hero-frame figcaption {
    inset-inline: 0.55rem;
    inset-block-end: 0.55rem;
  }

  .hero-frame figcaption strong {
    font-size: 0.76rem;
  }

  .hero-frame .hero-watermark {
    inset-block-start: 0.55rem;
    inset-inline-start: 0.55rem;
    width: 4rem;
  }

  .path-list {
    min-height: 3rem;
    gap: 0.45rem;
    font-size: 0.78rem;
  }

  .path-list span {
    gap: 0.45rem;
  }

  .path-list span:not(:last-child)::after {
    width: 0.22rem;
    height: 0.22rem;
  }

  .section-pad {
    padding-block: 4.25rem;
  }

  .section-head {
    margin-block-end: 1.8rem;
  }

  .section-head > p:not(.eyebrow),
  .section-head-split > p,
  .why-copy > p:last-child,
  .booking-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .work-grid,
  .work-grid[data-count="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .work-caption {
    inset-inline: 0.65rem;
    inset-block-end: 0.65rem;
  }

  .work-caption h3 {
    font-size: 0.92rem;
  }

  .work-caption span {
    font-size: 0.68rem;
  }

  .service-group {
    gap: 1.35rem;
    padding-block: 1.8rem;
  }

  .service-group-head {
    padding-inline-start: 2.8rem;
  }

  .service-group-head h3 {
    font-size: 1.35rem;
  }

  .service-group-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card {
    padding: 1rem 0;
    border-block-start: 1px solid var(--line);
    border-inline-start: 0;
  }

  .service-number {
    margin-block-end: 0.45rem;
  }

  .service-card p {
    margin-block: 0.45rem 0.65rem;
  }

  .process-grid h3 {
    font-size: 1.25rem;
  }

  .process-grid p {
    font-size: 0.92rem;
  }

  .why-list article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.15rem 0.7rem;
  }

  .booking-form {
    padding: 1rem;
  }

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

  .floating-whatsapp {
    inset-block-end: max(0.75rem, env(safe-area-inset-bottom));
    inset-inline-start: 0.75rem;
    min-height: 3rem;
    padding-inline: 0.85rem;
    font-size: 0.9rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer p,
  .footer-links {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 22.5rem) {
  .site-shell {
    width: calc(100% - 1.5rem);
  }

  h1 {
    font-size: 2.4rem;
  }

  .brand-logo {
    width: 6.5rem;
  }

  .nav > a:first-child {
    display: none;
  }

  .hero-actions .btn {
    font-size: 0.84rem;
  }

  .hero-layout {
    gap: 1rem;
    padding-block: 1.2rem 1.35rem;
  }

  .hero-text {
    line-height: 1.55;
  }

  .hero-proof {
    display: none;
  }

  .hero-gallery {
    height: 10.25rem;
  }

  .work.section-pad {
    padding-block-start: 3rem;
  }
}

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

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