:root {
  --primary: #1D1D1F;
  --gold: #C7A36B;
  --bg: #FAF8F5;
  --white: #FFFFFF;
  --text: #3D3934;
  --muted: #79716A;
  --line: rgba(29, 29, 31, 0.1);
  --shadow: 0 24px 70px rgba(29, 29, 31, 0.12);
  --soft-shadow: 0 14px 42px rgba(29, 29, 31, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* No backdrop-filter here on purpose (see .menu-active note below):
   backdrop-filter creates a new containing block for position:fixed
   descendants, which breaks the full-screen .nav-links overlay on
   mobile the moment the page scrolls, since it becomes fixed to this
   header's small box instead of the viewport. */
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(250, 248, 245, 0.88);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.08);
}

/* No backdrop-filter here on purpose: backdrop-filter creates a new
   containing block for position:fixed descendants, which breaks the
   full-screen .nav-links overlay (it becomes fixed to this header's
   small box instead of the viewport). The header's own background
   opacity is enough while the menu is open. */
.site-header.menu-active {
  padding: 10px 0;
  background: rgba(250, 248, 245, 0.88);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  z-index: 1002;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-brand .brand-logo-img {
  height: 52px;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .brand,
.site-header.menu-active .brand {
  color: var(--primary);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #F1D9A8);
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-header.scrolled .nav-links,
.site-header.menu-active .nav-links {
  color: var(--primary);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(199, 163, 107, 0.24);
}

.menu-toggle {
  display: inline-grid;
  gap: 6px;
  padding: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease;
}

.site-header.scrolled .menu-toggle span,
.site-header.menu-active .menu-toggle span {
  background: var(--primary);
}

.menu-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 118px 0 42px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 34%, rgba(199, 163, 107, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(12, 12, 13, 0.88) 0%, rgba(29, 29, 31, 0.58) 52%, rgba(29, 29, 31, 0.36) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9C7A45;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.section-title,
.final-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: inherit;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 11vw, 6.8rem);
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #E7CB94);
  color: var(--primary);
  box-shadow: 0 18px 40px rgba(199, 163, 107, 0.26);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 640px;
}

.hero-stats div {
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 2.4rem);
  line-height: 1;
}

.hero-stats strong::after {
  content: "+";
  color: var(--gold);
  font-size: 0.7em;
}

.hero-stats div:last-child strong::after {
  content: "%";
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.slot-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.hero-trust-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.hero-trust-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-trust-list strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.35;
}

.trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 163, 107, 0.18);
}

.enquiry-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  padding: 24px;
}

.enquiry-card h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.12;
}

.form-kicker,
.privacy-note,
.form-status {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 600;
}

.lead-form em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-weight: 400;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  outline: 0;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: border 0.2s ease, background 0.2s ease;
}

.lead-form select option {
  color: var(--primary);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.18);
}

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.privacy-note,
.form-status {
  margin: 0;
}

.form-status.success {
  color: #DDF7DF;
}

.section-pad {
  padding: 78px 0;
}

.trust-band {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--primary);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-grid div {
  padding: 22px 12px;
  background: var(--primary);
}

.trust-grid strong,
.trust-grid span {
  display: block;
  text-align: center;
}

.trust-grid strong {
  color: var(--gold);
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: clamp(2.15rem, 7vw, 2.3rem);
}

.section-copy p {
  color: var(--muted);
}

.builder-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.builder-logos span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  box-shadow: var(--soft-shadow);
}

.split-layout,
.ba-layout,
.faq-layout {
  display: grid;
  gap: 34px;
}

.feature-grid,
.services-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.feature-card,
.testimonial-card,
.faq-item,
.timeline-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card span,
.timeline-step span {
  color: var(--gold);
  font-weight: 800;
}

.feature-card .feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 163, 107, 0.14);
  color: var(--primary);
  font-size: 1.25rem;
}

.hero-form-variant .why-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 248, 245, 0));
}

.hero-form-variant .why-section .split-layout {
  gap: 46px;
}

.hero-form-variant .why-section .section-copy {
  max-width: 620px;
}

.hero-form-variant .why-section .feature-grid {
  gap: 20px;
}

.hero-form-variant .why-section .feature-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(29, 29, 31, 0.06);
}

.hero-form-variant .why-section .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(145deg, rgba(199, 163, 107, 0.14), transparent 44%);
  transition: opacity 0.3s ease;
}

.hero-form-variant .why-section .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(29, 29, 31, 0.12);
}

.hero-form-variant .why-section .feature-card:hover::before {
  opacity: 1;
}

.hero-form-variant .why-section .feature-card .feature-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(199, 163, 107, 0.26);
  background: linear-gradient(145deg, rgba(199, 163, 107, 0.18), rgba(255, 255, 255, 0.82));
  box-shadow: 0 14px 30px rgba(199, 163, 107, 0.16);
  font-size: 1.45rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-form-variant .why-section .feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(145deg, var(--gold), #E7CB94);
}

.hero-form-variant .why-section .feature-card h3,
.hero-form-variant .why-section .feature-card p {
  position: relative;
  z-index: 1;
}

.hero-form-variant .why-section .feature-card h3 {
  max-width: 300px;
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero-form-variant .why-section .feature-card p {
  display: -webkit-box;
  max-width: 360px;
  color: #68615B;
  font-size: 0.94rem;
  line-height: 1.65;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Budget select — styled to match text inputs */
.lead-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8dc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #2b2734;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
}

.lead-form select:focus {
  outline: none;
  border-color: #3a5169;
}

/* Consent checkbox */
.lead-form .consent-checkbox {
 display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}

.lead-form .consent-checkbox input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  max-width: 15px !important;
  flex: 0 0 15px;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  border: none;
  border-radius: 0;
  accent-color: #3a5169;
  cursor: pointer;
}

.lead-form .consent-checkbox span {
 flex: 1 1 auto;
  font-size: 12px;
  line-height: 1.45;
  color: #4a4550;
  font-weight: 400;
}

.lead-form .consent-checkbox a {
  color: #3a5169;
  text-decoration: underline;
}

.lead-form .consent-checkbox a:hover {
  color: #1D1D1F;
}

.feature-card h3,
.service-card h3,
.testimonial-card h3,
.timeline-step h3 {
  margin: 10px 0 8px;
  color: var(--primary);
  font-size: 1.1rem;
}

.feature-card p,
.service-card p,
.testimonial-card span,
.timeline-step p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(250, 248, 245, 0));
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.service-card div {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.gallery-item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
}

.story-section {
  overflow: hidden;
  background: #F4F0EA;
}

.story-header {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.story-header p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.portfolio-tags {
  display: flex;
  gap: 10px;
  margin: 0 0 30px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.portfolio-tags::-webkit-scrollbar {
  display: none;
}

.portfolio-tags button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(29, 29, 31, 0.05);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-tags button:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.story-grid {
  display: grid;
  gap: 18px;
}

.project-card,
.story-quote {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(29, 29, 31, 0.11);
}

.project-card {
  min-height: 340px;
  color: var(--white);
  background: var(--primary);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 58%);
}

.project-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.03);
}

.project-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.project-content span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 800;
}

.project-content h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  line-height: 1.05;
}

.project-content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(250, 248, 245, 0.78);
  backdrop-filter: blur(10px);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-brief {
  position: relative;
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 360px;
  padding: 8px 0 8px 28px;
  border-left: 2px solid rgba(199, 163, 107, 0.42);
}

.project-brief .brief-kicker {
  margin: 0;
  color: #9C7A45;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-brief h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.project-brief p {
  margin: 0;
  color: var(--muted);
  max-width: 460px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.project-brief strong {
  color: var(--primary);
}

.story-quote {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(29, 29, 31, 0.96), rgba(29, 29, 31, 0.84)),
    linear-gradient(145deg, rgba(199, 163, 107, 0.24), transparent);
}

.story-quote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  line-height: 1.18;
}

.story-quote div {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.story-quote cite {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 700;
}

.story-quote cite span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  font-weight: 500;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.story-secondary {
  border-color: rgba(29, 29, 31, 0.12);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.ba-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 380px;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 44% 0 0);
}

.ba-slider input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position, 56%);
  z-index: 3;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.02);
}

.ba-slider::after {
  content: "";
  position: absolute;
  left: var(--position, 56%);
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.6);
  transform: translate(-50%, -50%);
}

.ba-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(29, 29, 31, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: process;
}

.timeline-step {
  padding: 24px;
}

.journey-expect {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(199, 163, 107, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.journey-expect h3 {
  margin-bottom: 16px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.journey-expect ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--primary);
  font-weight: 700;
}

.included-section,
.designer-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(250, 248, 245, 0));
}

.included-grid {
  display: grid;
  gap: 14px;
}

.included-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 20px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(29, 29, 31, 0.06);
  color: var(--primary);
  font-size: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.included-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.included-card span {
  font-size: 0.96rem;
  font-weight: 800;
}

.included-final {
  justify-content: center;
  min-height: 120px;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(199, 163, 107, 0.28), rgba(255, 255, 255, 0.9));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  text-align: center;
}

.designer-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.designer-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.designer-photo img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.designer-copy p {
  color: var(--muted);
}

.designer-copy .btn {
  margin-top: 12px;
}

.review-card img {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin: 14px 0;
}

.review-card div {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.faq-expanded {
  display: grid;
  gap: 14px;
}

.faq-expanded > h3 {
  margin: 28px 0 2px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.faq-expanded > h3:first-child {
  margin-top: 0;
}

.faq-expanded .faq-item {
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.05);
}

.final-lead-section {
  padding: 88px 0;
}

.final-lead-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.final-lead-section .final-cta-inner {
  max-width: none;
}

.final-lead-section .final-cta-inner p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.final-trust {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.final-trust span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.next-steps {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.next-steps h3 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.next-steps ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.final-form-card {
  background: rgba(255, 255, 255, 0.14);
}

.testimonials {
  background: var(--primary);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card p {
  color: var(--primary);
  font-size: 1.02rem;
}

.testimonial-card h3 {
  margin-bottom: 2px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 163, 107, 0.16);
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 0 22px;
}

.what-we-offer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(250, 248, 245, 0));
}

.offer-accordion {
  display: grid;
  gap: 14px;
}

.offer-item {
  padding: 0 22px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.05);
}

.offer-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.offer-item summary::-webkit-details-marker {
  display: none;
}

.offer-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 163, 107, 0.16);
  color: var(--gold);
  font-size: 1.2rem;
}

.offer-item[open] summary::after {
  content: "-";
}

.offer-item p {
  padding: 0 0 22px;
  color: var(--muted);
}

.partners-grid {
  display: grid;
  gap: 14px;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.05);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.partner-badge span {
  font-size: 1.5rem;
}

.final-cta {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.9), rgba(29, 29, 31, 0.64)),
    url("https://images.unsplash.com/photo-1615874959474-d609969a20ed?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.final-cta-inner {
  max-width: 800px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.site-footer {
  padding: 62px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #121214;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.hero-mobile-cta {
  display: none;
}

.enquiry-close {
  display: none;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
  gap: 10px;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 -10px 28px rgba(29, 29, 31, 0.1);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.show {
  transform: translateY(0);
}

.mobile-sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--gold);
  font-weight: 800;
}

.mobile-sticky-cta a:first-child {
  color: var(--white);
  background: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-form-variant h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 8vw, 1.8rem);
}

.hero-form-variant .hero-lead {
  max-width: 760px;
}

.hero-form-variant .enquiry-card {
  align-self: center;
}

.hero-form-variant .lead-form {
  gap: 11px;
}

.hero-form-variant .lead-form input,
.hero-form-variant .lead-form select {
  min-height: 48px;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.11);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}