:root {
  --accent-gold: #b89452;
  --accent-gold-dark: #846631;
  --accent-gold-light: #dcc48f;

  --text-main: #25221c;
  --text-soft: #777166;

  --background: #f8f5ed;
  --background-light: #fdfcf8;

  --white: #ffffff;

  --border: rgba(91, 73, 42, 0.12);

  --shadow:
    0 25px 70px rgba(61, 48, 25, 0.10);

  --radius-big: 34px;
  --radius-medium: 22px;
}


/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: "Cairo", sans-serif;

  color: var(--text-main);

  background: var(--background);

  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

button,
input,
select {
  font-family: inherit;
}

a {
  color: inherit;
}


/* GENERIC */

.section-space {
  padding: 90px 18px;
}

.eyebrow {
  margin: 0 0 12px;

  color: var(--accent-gold-dark);

  font-size: .73rem;

  font-weight: 800;

  letter-spacing: 2px;
}

.section-heading {
  max-width: 1220px;

  margin: 0 auto 42px;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.section-heading::after,
.why-heading::after,
.experience-title::after {
  content: "";

  width: 0;
  height: 1px;

  background: var(--accent-gold);

  transition: width 1.2s ease .2s;
}

.section-heading.visible::after,
.why-heading.visible::after,
.experience-title.visible::after {
  width: 70px;
}

.section-heading h2,
.why-heading h2,
.experience-title h2 {
  margin: 0;

  font-family: "Marhey", sans-serif;

  font-size: clamp(2rem, 8vw, 3.8rem);

  line-height: 1.45;

  font-weight: 500;
}

.section-heading h2 span,
.why-heading h2 span,
.experience-title h2 span {
  display: block;

  color: var(--accent-gold-dark);
}

.section-description {
  max-width: 510px;

  margin: 0;

  color: var(--text-soft);

  line-height: 1.9;

  font-size: .9rem;
}


/* BUTTONS */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 48px;

  padding: 11px 21px;

  border-radius: 999px;

  border: 1px solid transparent;

  text-decoration: none;

  font-weight: 800;

  font-size: .82rem;

  cursor: pointer;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

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

.button-large {
  min-height: 54px;

  padding: 12px 25px;
}

.button-arrow {
  transition: transform .3s ease;
}

.button:hover .button-arrow {
  transform: translateX(-5px);
}

.button-gold {
  background:
    linear-gradient(
      135deg,
      #c6a664,
      #a77f3f
    );

  color: white;

  box-shadow:
    0 12px 30px rgba(159, 121, 57, .25);
}

.button-gold:hover {
  box-shadow:
    0 17px 40px rgba(159, 121, 57, .34);
}

.button-glass {
  color: white;

  border: 1px solid rgba(255,255,255,.45);

  background: rgba(255,255,255,.12);

  backdrop-filter: blur(14px);
}

.button-light {
  color: var(--text-main);

  border: 1px solid var(--border);

  background: rgba(255,255,255,.8);
}


/* HEADER */

.site-header {
  position: fixed;

  top: 12px;
  left: 12px;
  right: 12px;

  z-index: 1000;

  min-height: 68px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 10px 15px;

  border: 1px solid rgba(255,255,255,.2);

  border-radius: 20px;

  background: rgba(251,249,243,.75);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 10px 35px rgba(36,28,15,.08);

  transition: all .35s ease;
}

.site-header.scrolled {
  top: 7px;

  background: rgba(251,249,243,.95);

  box-shadow:
    0 12px 45px rgba(36,28,15,.12);
}


/* BRAND */

.brand {
  display: flex;

  flex-direction: column;

  text-decoration: none;

  line-height: 1;
}

.brand-main,
.brand-title {
  color: var(--accent-gold-dark);

  font-family: Georgia, serif;

  letter-spacing: 5px;

  font-weight: 500;

  font-size: 1.35rem;
}

.brand-small {
  margin-top: 5px;

  color: var(--text-main);

  font-size: .43rem;

  letter-spacing: 3.4px;
}


/* NAV */

.main-nav {
  display: none;

  position: absolute;

  top: calc(100% + 9px);

  right: 0;

  width: 100%;

  padding: 14px;

  flex-direction: column;

  gap: 3px;

  border: 1px solid var(--border);

  border-radius: 18px;

  background: rgba(251,249,243,.98);

  box-shadow:
    0 20px 60px rgba(42,33,17,.14);
}

.main-nav.active {
  display: flex;
}

.main-nav a {
  padding: 12px 13px;

  border-radius: 12px;

  text-decoration: none;

  font-size: .82rem;

  font-weight: 700;

  transition:
    background .2s ease,
    color .2s ease;
}

.main-nav a:hover {
  background: rgba(184,148,82,.08);

  color: var(--accent-gold-dark);
}

.nav-highlight {
  color: var(--accent-gold-dark);
}


/* MENU */

.menu-button {
  width: 43px;
  height: 43px;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 5px;

  padding: 0;

  border: 1px solid var(--border);

  border-radius: 50%;

  background: rgba(255,255,255,.65);

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 18px;
  height: 1.5px;

  background: var(--text-main);

  transition:
    transform .3s ease,
    opacity .3s ease;
}

.menu-button.active span:nth-child(1) {
  transform:
    translateY(6.5px)
    rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform:
    translateY(-6.5px)
    rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.home-page .hero {
  position: relative;

  height: max(720px, 100svh);

  min-height: 680px;

  overflow: hidden;

  background: #25221c;
}

.hero-slides,
.hero-slide {
  position: absolute;

  inset: 0;
}

.hero-slide {
  opacity: 0;

  visibility: hidden;

  filter: blur(4px);

  transform: scale(1.015);

  transition:
    opacity 1.55s cubic-bezier(.4,0,.2,1),
    filter 1.55s ease,
    transform 1.8s ease,
    visibility 1.55s;
}

.hero-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.09);

  transition:
    transform 7.8s cubic-bezier(.2,.6,.2,1);
}

.hero-slide.active {
  opacity: 1;

  visibility: visible;

  filter: blur(0);

  transform: scale(1);

  z-index: 1;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      180deg,
      rgba(20,18,14,.10) 0%,
      rgba(20,18,14,.16) 38%,
      rgba(19,17,13,.76) 100%
    );
}

.hero-gold-light {
  position: absolute;

  z-index: 3;

  width: 500px;
  height: 500px;

  right: -260px;
  bottom: -160px;

  border-radius: 50%;

  background: rgba(191,151,78,.20);

  filter: blur(80px);
}


/* HERO CONTENT */

.hero-content {
  position: absolute;

  z-index: 5;

  right: 20px;
  left: 20px;
  bottom: 145px;

  max-width: 820px;

  color: white;
}

.hero-eyebrow {
  margin: 0 0 13px;

  color: #ead4a5;

  letter-spacing: 3px;

  font-size: .72rem;

  font-weight: 800;
}

.hero-content h1 {
  max-width: 800px;

  margin: 0;

  font-family: "Marhey", sans-serif;

  font-weight: 500;

  line-height: 1.43;

  font-size: clamp(2.5rem, 10vw, 5.6rem);
}

.hero-content h1 span {
  display: block;

  color: #e0c187;
}

.hero-description {
  max-width: 580px;

  margin: 19px 0 0;

  color: rgba(255,255,255,.78);

  line-height: 1.95;

  font-size: .92rem;
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 27px;
}


/* HERO TEXT ENTRANCE */

.hero-copy-animate .hero-eyebrow,
.hero-copy-animate h1,
.hero-copy-animate .hero-description,
.hero-copy-animate .hero-actions {
  opacity: 0;

  transform: translateY(22px);

  animation:
    heroTextEnter .9s forwards
    cubic-bezier(.2,.7,.2,1);
}

.hero-copy-animate h1 {
  animation-delay: .12s;
}

.hero-copy-animate .hero-description {
  animation-delay: .25s;
}

.hero-copy-animate .hero-actions {
  animation-delay: .38s;
}

@keyframes heroTextEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HERO CONTROLS */

.hero-slider-controls {
  position: absolute;

  z-index: 7;

  left: 20px;
  right: 20px;
  bottom: 38px;

  color: white;
}

.hero-control-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.hero-counter {
  display: flex;

  align-items: center;

  gap: 9px;

  font-size: .68rem;

  letter-spacing: 1px;
}

.hero-counter-line {
  display: block;

  width: 30px;
  height: 1px;

  background: rgba(255,255,255,.45);
}

.hero-dots {
  display: flex;

  align-items: center;

  gap: 7px;
}

.hero-dot {
  width: 6px;
  height: 6px;

  padding: 0;

  border: 0;

  border-radius: 999px;

  background: rgba(255,255,255,.45);

  cursor: pointer;

  transition:
    width .35s ease,
    background .35s ease;
}

.hero-dot.active {
  width: 25px;

  background: #e1c083;
}


/* HERO PROGRESS */

.hero-progress {
  position: relative;

  width: 100%;
  height: 1px;

  margin-top: 15px;

  overflow: hidden;

  background: rgba(255,255,255,.25);
}

.hero-progress-fill {
  display: block;

  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      #b58e4c,
      #eddaae
    );
}

.hero-progress-fill.running {
  animation:
    heroProgress 5.2s linear forwards;
}

@keyframes heroProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero-scroll {
  display: none;
}


/* INTRO */

.intro-strip {
  position: relative;

  z-index: 10;

  width: calc(100% - 28px);

  max-width: 930px;

  margin: -38px auto 0;

  padding: 23px 16px;

  display: flex;

  align-items: center;
  justify-content: space-around;

  gap: 10px;

  border: 1px solid rgba(255,255,255,.7);

  border-radius: 24px;

  background: rgba(253,252,248,.91);

  backdrop-filter: blur(18px);

  box-shadow: var(--shadow);
}

.intro-item {
  text-align: center;
}

.intro-item strong {
  display: block;

  color: var(--text-main);

  font-size: .8rem;
}

.intro-item span {
  display: block;

  margin-top: 3px;

  color: var(--text-soft);

  font-size: .58rem;
}

.intro-divider {
  width: 1px;
  height: 31px;

  background: var(--border);
}


/* =========================================================
   FEATURED
========================================================= */

.featured-home {
  max-width: 1280px;

  margin: auto;
}

.featured-showcase {
  display: grid;

  grid-template-columns: 1fr;

  gap: 32px;
}


/* FEATURED GALLERY */

.featured-gallery {
  display: grid;

  grid-template-columns: 1fr;

  gap: 9px;
}

.featured-gallery button {
  border: 0;

  padding: 0;

  cursor: pointer;

  background: transparent;
}

.featured-gallery-main {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  border-radius: 31px;

  box-shadow: var(--shadow);
}

.featured-gallery-main::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 48%,
      rgba(28,23,16,.62)
    );

  pointer-events: none;
}

.featured-gallery-main img {
  width: 100%;
  height: 108%;

  object-fit: cover;

  transform:
    translateY(var(--parallax-y, 0px))
    scale(1.02);

  transition: transform .3s linear;
}

.featured-badge {
  position: absolute;

  z-index: 4;

  top: 18px;
  right: 18px;

  padding: 8px 14px;

  border: 1px solid rgba(255,255,255,.6);

  border-radius: 999px;

  background: rgba(255,255,255,.84);

  backdrop-filter: blur(12px);

  color: var(--accent-gold-dark);

  font-size: .62rem;

  font-weight: 800;

  letter-spacing: 1.4px;
}

.featured-image-text {
  position: absolute;

  z-index: 4;

  right: 22px;
  left: 22px;
  bottom: 21px;

  text-align: right;

  color: white;
}

.featured-image-text span {
  display: block;

  margin-bottom: 4px;

  color: #e8cf9d;

  font-size: .68rem;
}

.featured-image-text strong {
  font-family: "Marhey", sans-serif;

  font-size: 1.3rem;

  font-weight: 500;
}


/* 3 SMALL PHOTOS */

.featured-gallery-small {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 7px;
}

.featured-gallery-small button {
  position: relative;

  height: 112px;

  overflow: hidden;

  border-radius: 15px;
}

.featured-gallery-small img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .6s ease,
    filter .4s ease;
}

.featured-gallery-small button:hover img {
  transform: scale(1.07);
}

.featured-more-photo::after {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(31,26,18,.3);
}

.featured-more-photo span {
  position: absolute;

  z-index: 3;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  color: white;

  font-size: .66rem;

  font-weight: 800;
}


/* FEATURED INFO */

.featured-info {
  padding: 3px 4px;
}

.featured-number {
  margin: 0;

  color: var(--accent-gold);

  font-family: Georgia, serif;

  font-size: 1rem;

  letter-spacing: 2px;
}

.featured-info h3 {
  margin: 7px 0 0;

  font-family: "Marhey", sans-serif;

  font-weight: 500;

  font-size:
    clamp(1.8rem, 7vw, 2.8rem);
}

.featured-description {
  color: var(--text-soft);

  line-height: 1.95;

  font-size: .88rem;
}

.featured-specs {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 8px;

  margin-top: 23px;
}

.featured-specs div {
  padding: 16px 8px;

  text-align: center;

  border: 1px solid var(--border);

  border-radius: 16px;

  background: rgba(255,255,255,.48);
}

.featured-specs strong {
  display: block;

  color: var(--accent-gold-dark);

  font-size: 1.05rem;
}

.featured-specs span {
  display: block;

  margin-top: 3px;

  color: var(--text-soft);

  font-size: .63rem;
}

.featured-divider {
  width: 100%;
  height: 1px;

  margin: 23px 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184,148,82,.35),
      transparent
    );
}

.featured-feature-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  padding: 0;

  margin: 0;

  list-style: none;
}

.featured-feature-list li {
  position: relative;

  padding-right: 18px;

  color: #655f54;

  font-size: .78rem;

  font-weight: 600;
}

.featured-feature-list li::before {
  content: "✓";

  position: absolute;

  right: 0;

  color: var(--accent-gold-dark);
}

.featured-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 25px;
}


/* BRAND MOMENT */

.brand-moment {
  text-align: center;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(188,153,88,.08),
      transparent
    );
}

.brand-moment-content {
  max-width: 780px;

  margin: auto;
}

.brand-mark {
  color: var(--accent-gold);

  font-family: Georgia, serif;

  letter-spacing: 8px;

  font-size: .7rem;
}

.brand-moment p {
  margin: 20px auto;

  font-family: "Marhey", sans-serif;

  font-size:
    clamp(1.55rem, 6vw, 2.6rem);

  line-height: 1.8;

  color: #3a352b;
}

.brand-moment-line {
  display: block;

  width: 0;
  height: 1px;

  margin: auto;

  background: var(--accent-gold);

  transition: width 1.2s ease .3s;
}

.brand-moment-content.visible
.brand-moment-line {
  width: 70px;
}


/* =========================================================
   GALLERY
========================================================= */

.home-gallery {
  max-width: 1280px;

  margin: auto;
}

.editorial-gallery {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.editorial-image {
  position: relative;

  height: 210px;

  padding: 0;

  overflow: hidden;

  border: 0;

  border-radius: 17px;

  background: #ddd;

  cursor: pointer;
}

.editorial-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(25,21,15,.2)
    );

  opacity: 0;

  transition: opacity .4s ease;
}

.editorial-image:hover::after {
  opacity: 1;
}

.editorial-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .75s ease,
    filter .5s ease;
}

.editorial-image:hover img {
  transform: scale(1.055);
}

.gallery-hover-icon {
  position: absolute;

  z-index: 4;

  left: 14px;
  bottom: 14px;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.5);

  border-radius: 50%;

  background: rgba(255,255,255,.18);

  backdrop-filter: blur(12px);

  color: white;

  opacity: 0;

  transform: translateY(7px);

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.editorial-image:hover
.gallery-hover-icon {
  opacity: 1;

  transform: translateY(0);
}

.editorial-tall {
  grid-row: span 2;

  height: auto;

  min-height: 428px;
}

.editorial-wide {
  grid-column: 1 / -1;

  height: 250px;
}

.gallery-button {
  margin-top: 25px;

  text-align: center;
}

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  color: var(--accent-gold-dark);

  font-weight: 800;

  font-size: .85rem;
}

.text-link span {
  transition: transform .3s ease;
}

.text-link:hover span {
  transform: translateX(-6px);
}


/* WHY */

.why-thara {
  max-width: 1280px;

  margin: auto;
}

.why-heading {
  max-width: 720px;

  margin-bottom: 38px;
}

.why-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 12px;
}

.why-card {
  position: relative;

  min-height: 285px;

  padding: 26px;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 26px;

  background: rgba(255,255,255,.58);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.why-card:hover {
  transform: translateY(-7px);

  background: rgba(255,255,255,.85);

  box-shadow: var(--shadow);
}

.why-number {
  position: absolute;

  top: 18px;
  left: 20px;

  color: rgba(132,102,49,.28);

  font-family: Georgia, serif;

  font-size: .78rem;
}

.why-icon {
  width: 51px;
  height: 51px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 43px;

  border-radius: 50%;

  background: rgba(184,148,82,.10);

  color: var(--accent-gold-dark);

  transition:
    transform .5s ease,
    background .3s ease;
}

.why-card:hover .why-icon {
  transform: rotate(-7deg) scale(1.08);

  background: rgba(184,148,82,.16);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  margin: 0 0 9px;

  font-family: "Marhey", sans-serif;

  font-size: 1.2rem;

  font-weight: 500;
}

.why-card p {
  margin: 0;

  color: var(--text-soft);

  line-height: 1.9;

  font-size: .83rem;
}


/* EXPERIENCE */

.experience {
  padding-inline: 14px;
}

.experience-wrap {
  max-width: 1220px;

  margin: auto;

  padding: 50px 24px;

  border: 1px solid rgba(184,148,82,.16);

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.78),
      #efe7d7
    );

  box-shadow:
    0 25px 70px rgba(70,54,27,.07);
}

.experience-title {
  max-width: 600px;
}

.experience-steps {
  margin-top: 40px;

  display: grid;

  grid-template-columns: 1fr;

  gap: 10px;
}

.experience-step {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 13px;

  padding: 19px 0;

  border-bottom:
    1px solid rgba(86,69,40,.12);
}

.experience-step:last-child {
  border: 0;
}

.experience-step > span {
  color: var(--accent-gold-dark);

  font-family: Georgia, serif;

  font-size: .78rem;
}

.experience-step h3 {
  margin: 0;

  font-size: .95rem;
}

.experience-step p {
  margin: 5px 0 0;

  color: var(--text-soft);

  line-height: 1.8;

  font-size: .79rem;
}


/* TEAM */

.team {
  max-width: 1280px;

  margin: auto;
}

.team-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 17px;
}

.team-card {
  text-decoration: none;

  transition: transform .4s ease;
}

.team-card:hover {
  transform: translateY(-7px);
}

.team-image {
  position: relative;

  height: 430px;

  overflow: hidden;

  border-radius: 27px;

  background: #ddd;
}

.team-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s ease,
    filter .5s ease;
}

.team-card:hover img {
  transform: scale(1.045);

  filter: brightness(.8);
}

.team-hover {
  position: absolute;

  inset: auto 14px 14px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 13px 15px;

  border: 1px solid rgba(255,255,255,.3);

  border-radius: 15px;

  background: rgba(255,255,255,.17);

  backdrop-filter: blur(15px);

  color: white;

  opacity: 0;

  transform: translateY(8px);

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.team-card:hover .team-hover {
  opacity: 1;

  transform: translateY(0);
}

.team-info {
  padding: 14px 3px 0;
}

.team-info p {
  margin: 0;

  color: var(--accent-gold-dark);

  font-size: .62rem;

  letter-spacing: 2px;
}

.team-info h3 {
  margin: 5px 0 0;

  font-family: "Marhey", sans-serif;

  font-size: 1.22rem;

  font-weight: 500;
}

.team-info > span {
  color: var(--text-soft);

  font-size: .73rem;
}


/* FINAL CTA */

.final-cta {
  padding-inline: 14px;
}

.final-cta-box {
  position: relative;

  max-width: 1170px;

  margin: auto;

  padding: 55px 24px;

  overflow: hidden;

  text-align: center;

  border: 1px solid rgba(184,148,82,.17);

  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      #fff,
      #eee4d1
    );

  box-shadow: var(--shadow);
}

.final-cta-box::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  top: -200px;
  right: -100px;

  border-radius: 50%;

  background: rgba(189,151,79,.18);

  filter: blur(30px);
}

.final-cta-box > * {
  position: relative;

  z-index: 2;
}

.final-small {
  color: var(--accent-gold-dark);

  font-size: .7rem;

  font-weight: 800;
}

.final-cta h2 {
  max-width: 720px;

  margin: 12px auto 0;

  font-family: "Marhey", sans-serif;

  font-size:
    clamp(2rem, 8vw, 3.4rem);

  line-height: 1.55;

  font-weight: 500;
}

.final-cta h2 span {
  color: var(--accent-gold-dark);
}

.final-cta p {
  max-width: 480px;

  margin: 13px auto 0;

  color: var(--text-soft);

  line-height: 1.8;

  font-size: .86rem;
}

.final-actions {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 24px;
}


/* FOOTER */

.site-footer {
  margin-top: 30px;

  padding: 55px 20px 25px;

  border-top: 1px solid var(--border);

  background: #f2ede1;
}

.footer-main {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr;

  gap: 35px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 145px;

  border-radius: 18px;

  mix-blend-mode: multiply;
}

.footer-brand p {
  margin: 13px 0 0;

  color: var(--text-soft);

  line-height: 1.8;

  font-size: .78rem;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 5px;

  font-size: .8rem;

  color: var(--accent-gold-dark);
}

.footer-column a,
.footer-column span {
  width: fit-content;

  color: #615b50;

  text-decoration: none;

  font-size: .72rem;

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-column a:hover {
  color: var(--accent-gold-dark);

  transform: translateX(-3px);
}

.footer-bottom {
  max-width: 1200px;

  margin: 40px auto 0;

  padding-top: 19px;

  display: flex;

  flex-direction: column;

  gap: 4px;

  border-top: 1px solid var(--border);

  color: #898276;

  font-size: .62rem;
}


/* FLOATING WHATSAPP */

.floating-whatsapp {
  position: fixed;

  z-index: 800;

  left: 15px;
  bottom: 17px;

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 7px 11px 7px 7px;

  border: 1px solid rgba(255,255,255,.7);

  border-radius: 999px;

  background: rgba(255,255,255,.87);

  backdrop-filter: blur(15px);

  color: var(--text-main);

  text-decoration: none;

  font-size: .7rem;

  font-weight: 800;

  box-shadow:
    0 12px 40px rgba(49,39,21,.15);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);

  box-shadow:
    0 17px 45px rgba(49,39,21,.20);
}

.whatsapp-circle {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #c3a15f,
      #9d763b
    );

  color: white;
}


/* =========================================================
   ADVANCED LIGHTBOX
========================================================= */

.home-lightbox {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 18px;
}

.home-lightbox.active {
  display: flex;
}

.home-lightbox-overlay {
  position: absolute;

  inset: 0;

  background: rgba(21,18,13,.82);

  backdrop-filter: blur(15px);
}

.lightbox-image-wrap {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  max-width: 1100px;

  width: 100%;
}

.home-lightbox img {
  width: auto;

  max-width: 100%;

  max-height: 84vh;

  object-fit: contain;

  border-radius: 19px;

  box-shadow:
    0 30px 90px rgba(0,0,0,.35);

  transition:
    opacity .22s ease,
    transform .22s ease;
}

.home-lightbox img.changing {
  opacity: .2;

  transform: scale(.985);
}

.home-lightbox-close {
  position: fixed;

  z-index: 5;

  top: 18px;
  right: 18px;

  width: 45px;
  height: 45px;

  border: 1px solid rgba(255,255,255,.3);

  border-radius: 50%;

  background: rgba(255,255,255,.15);

  backdrop-filter: blur(10px);

  color: white;

  font-size: 1.6rem;

  cursor: pointer;
}

.lightbox-arrow {
  position: fixed;

  z-index: 5;

  top: 50%;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  border: 1px solid rgba(255,255,255,.35);

  border-radius: 50%;

  background: rgba(255,255,255,.13);

  backdrop-filter: blur(12px);

  color: white;

  font-size: 1.8rem;

  cursor: pointer;

  transition:
    background .25s ease,
    transform .25s ease;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,.25);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-counter {
  position: absolute;

  right: 50%;
  bottom: 14px;

  transform: translateX(50%);

  display: flex;

  gap: 6px;

  padding: 6px 12px;

  border-radius: 999px;

  background: rgba(255,255,255,.16);

  backdrop-filter: blur(12px);

  color: white;

  font-size: .68rem;

  font-weight: 700;
}


/* TOAST */

.site-toast {
  position: fixed;

  z-index: 9999;

  bottom: 80px;
  left: 50%;

  transform: translate(-50%, 15px);

  padding: 10px 16px;

  border-radius: 999px;

  background: rgba(38,34,28,.92);

  color: white;

  font-size: .72rem;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.site-toast.active {
  opacity: 1;

  transform: translate(-50%, 0);
}


/* REVEAL */

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

.delay-1 {
  transition-delay: .09s;
}

.delay-2 {
  transition-delay: .18s;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 700px) {

  .section-space {
    padding: 115px 32px;
  }

  .section-heading {
    flex-direction: row;

    align-items: flex-end;
    justify-content: space-between;
  }

  .site-header {
    top: 17px;
    left: 26px;
    right: 26px;

    padding: 10px 20px;
  }

  .hero-content {
    right: 45px;
    left: 45px;
    bottom: 155px;
  }

  .hero-slider-controls {
    left: 45px;
    right: 45px;
  }


  /* FEATURED */

  .featured-showcase {
    grid-template-columns:
      minmax(0, 1.2fr)
      minmax(300px, .8fr);

    align-items: center;

    gap: 40px;
  }

  .featured-gallery-main {
    height: 600px;
  }

  .featured-gallery-small button {
    height: 145px;
  }


  /* GALLERY */

  .editorial-gallery {
    grid-template-columns:
      repeat(4, 1fr);

    gap: 10px;
  }

  .editorial-image {
    height: 260px;
  }

  .editorial-tall {
    grid-row: span 2;

    min-height: 530px;
  }

  .editorial-wide {
    grid-column: span 2;

    height: 260px;
  }


  /* WHY */

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


  /* EXPERIENCE */

  .experience-wrap {
    padding: 65px 50px;
  }

  .experience-steps {
    grid-template-columns:
      repeat(3, 1fr);

    gap: 25px;
  }

  .experience-step {
    display: block;

    border: 0;
  }

  .experience-step > span {
    display: block;

    margin-bottom: 45px;
  }


  /* TEAM */

  .team-grid {
    grid-template-columns:
      repeat(3, 1fr);

    gap: 14px;
  }

  .team-image {
    height: 470px;
  }


  /* FOOTER */

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

  .footer-bottom {
    flex-direction: row;

    justify-content: space-between;
  }

}


/* DESKTOP */

@media (min-width: 980px) {

  .site-header {
    max-width: 1280px;

    left: 50%;
    right: auto;

    width: calc(100% - 60px);

    transform: translateX(-50%);

    padding: 10px 22px;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;

    width: auto;

    display: flex;

    flex-direction: row;

    align-items: center;

    padding: 0;

    gap: 2px;

    border: 0;

    background: transparent;

    box-shadow: none;
  }

  .main-nav a {
    padding: 9px 12px;

    font-size: .73rem;
  }

  .hero-content {
    width: calc(100% - 120px);

    right: 60px;
    left: auto;

    bottom: 155px;
  }

  .hero-slider-controls {
    max-width: 520px;

    left: 60px;
    right: auto;

    width: 520px;
  }

  .hero-scroll {
    position: absolute;

    z-index: 8;

    right: 60px;
    bottom: 43px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.65);

    text-decoration: none;

    font-size: .65rem;
  }

  .hero-scroll i {
    width: 37px;
    height: 1px;

    background: rgba(255,255,255,.55);
  }

  .team-image {
    height: 540px;
  }

}


/* LARGE */

@media (min-width: 1250px) {

  .hero-content {
    right:
      calc((100vw - 1200px) / 2);
  }

  .hero-scroll {
    right:
      calc((100vw - 1200px) / 2);
  }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;
  }

}