:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f9;
  --text-main: #111111;
  --text-muted: #777777;
  --border: #e5e5ec;
  --accent: #ffcfe4; /* baby pink main */
  --accent-soft: #ffe7f2; /* lighter baby pink */
  --accent-dark: #e65492; /* stronger for hover etc */
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --transition: 0.2s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;

  /* sticky footer setup */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading-left {
  text-align: left;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.5vw, 2.3rem);
  margin-bottom: 0.4rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 540px;
  margin: 0.3rem auto 0;
}

/* left-aligned heading variant */
.section-heading-left {
  text-align: left;
}

.section-heading-left .section-sub {
  margin-left: 0;
  margin-right: 0; /* keep max-width, but align to left */
}

/* sections that have decorative graphics */
.has-graphic {
  position: relative;
  overflow: hidden;
}

/* SERVICES */
.section-services::before {
  content: "";
  position: absolute;
  top: -40px; /* move it up */
  right: -180px; /* push it further off the edge */
  width: 560px; /* bigger */
  height: 560px;
  background: url("images/palette-overlay.png") no-repeat center / contain;
  opacity: 0.2; /* tweak between 0.15–0.25 to taste */
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: rotate(-12deg); /* the tilt */
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero .eyebrow {
  color: var(--accent); /* baby pink */
  opacity: 0.95;
}

/* top bar */

.top-bar {
  background: #000;
  color: #fff;
  font-size: 0.78rem;
  text-align: center;
  padding: 0.45rem 0.5rem;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  position: relative;
}

.menu-toggle {
  display: none; /* desktop hidden – shown in media query */
  position: relative;
  border: none;
  background: #fff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--border);
}

/* three bars, absolutely centred */
.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #000;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

/* top / middle / bottom bar positions */
.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #000;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #000;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
  color: #000;
  text-decoration: none;
}

/* Navigation */

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

/* base link style */
.main-nav a {
  display: inline-block;
  width: auto;
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 0.08em;
  font-weight: 400;
  padding-bottom: 0.2rem;
  transition: color var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: #000; /* hover underline colour */
  transition: width var(--transition);
}

/* hover = black */
.main-nav a:hover {
  color: #000;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ACTIVE link = pink + full underline */
.main-nav a.nav-active {
  color: var(--accent-dark);
}

.main-nav a.nav-active::after {
  width: 100%;
  background: var(--accent-dark);
}

/* keep it pink even on hover */
.main-nav a.nav-active:hover {
  color: var(--accent-dark);
}

/* hero */

.hero {
  position: relative;
  padding: 6rem 0 5rem; /* more breathing room */
  min-height: 70vh; /* take up more of the screen */
  overflow: hidden;
  display: flex;
  align-items: center; /* centre content vertically */
}

/* full background that will slide between images */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero1.jpg"); /* fallback */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

/* subtle dark + pink overlay so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 207, 228, 0.45),
      transparent 55%
    );
  pointer-events: none;
  z-index: 1;
}

/* content on top of bg + overlay */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.1vw, 3rem);
  margin-bottom: 0.9rem;
  color: #fdfdfd;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid #000;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: var(--accent); /* baby pink */
  color: #000;
  border-color: var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-dark); /* slightly deeper pink on hover */
  border-color: var(--accent-dark);
  color: #000;
}

.price-amount {
  color: var(--accent-dark);
  font-weight: 600;
}

.full-width {
  width: 100%;
}

/* services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.2rem 1.1rem;
  background: #fff;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.service-note {
  font-size: 0.8rem;
  color: #444;
}

/* pricing */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.price-column h3 {
  font-size: 1rem;
  margin: 1.2rem 0 0.4rem;
}

.price-column h3:first-of-type {
  margin-top: 0;
}

.price-list {
  list-style: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 1rem;
  overflow: hidden;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list span:last-child {
  white-space: nowrap;
  font-weight: 500;
}

/* PRICING – decorative brushes */

.section-pricing {
  position: relative;
  overflow: hidden;
}

/* make sure content sits above brushes */
.section-pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-brush {
  position: absolute;
  opacity: 0.22; /* strength – tweak 0.16–0.25 */
  pointer-events: none;
  z-index: 0;
}

/* TOP-LEFT – long brush coming in from top left */
.pricing-brush--tl {
  width: 420px;
  height: 420px;
  top: -180px; /* pushes handle out of view */
  left: -120px; /* more off-screen so it feels cropped */
  background: url("images/brush-overlay1.png") no-repeat center / contain;
  transform: rotate(-25deg);
}

/* BOTTOM-LEFT – big angled brush like your mock */
.pricing-brush--bl {
  width: 460px;
  height: 460px;
  bottom: -220px; /* bristles sit just inside the section */
  left: -80px;
  background: url("images/brush-overlay2.png") no-repeat center / contain;
  transform: rotate(18deg);
}

/* RIGHT – brush coming in mid-height from the right side */
.pricing-brush--tr {
  width: 380px;
  height: 380px;
  top: 40px; /* roughly level with heading/cards */
  right: -130px; /* cropped into the edge */
  background: url("images/brush-overlay3.png") no-repeat center / contain;
  transform: rotate(18deg);
}

/* accordion / policies */

.policy-column h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.accordion {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.9rem;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}

.accordion summary::marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-weight: 500;
  margin-left: 1rem;
}

.accordion[open] summary::after {
  content: "–";
}

.accordion p {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.7rem 0 0.9rem;
  border-top: 1px solid var(--border);
}

/* booking page FAQ */

.section-booking-faq {
  background: #000; /* same as booking page */
  color: #f5f5f5;
}

.section-booking-faq .section-sub {
  color: #cccccc;
}

/* booking FAQ – two masonry-style columns */
.booking-faq-grid {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.booking-faq-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* tweak accordions to suit dark background */
.section-booking-faq .accordion {
  background: #111;
  border-color: #333;
}

.section-booking-faq .accordion summary {
  color: #f5f5f5;
}

.section-booking-faq .accordion p {
  color: #d0d0d0;
  padding: 0.7rem 0 0.9rem;
  border-top: 1px solid #333;
}

.section-booking {
  padding-bottom: 2rem; /* was 4.5rem */
}

.section-booking-faq .eyebrow {
  color: var(--accent);
}

.section-booking-faq {
  padding-top: 2rem; /* was 4.5rem via .section */
}

/* INSTAGRAM STRIP */

.insta-strip {
  background: var(--bg-alt);
  padding: 2rem 0 2.1rem;
}

.insta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.insta-strip-copy h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.insta-strip-copy .insta-handle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.insta-strip-copy .insta-handle a {
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: none;
}

.insta-strip-copy .insta-handle a:hover {
  text-decoration: underline;
}

.insta-strip-thumbs {
  display: flex;
  gap: 0.6rem;
}

.insta-strip-thumbs img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.insta-strip-thumbs a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* responsive layout for insta strip */

@media (max-width: 900px) {
  .insta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .insta-strip-thumbs {
    margin-top: 0.4rem;
  }
}

/* portfolio */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-item {
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.portfolio-cta {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1.4rem;
}

/* home portfolio link colour – override everything */
.portfolio-cta.portfolio-cta-home a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.portfolio-cta.portfolio-cta-home a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

.portfolio-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.portfolio-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* home portfolio slider */

.home-portfolio-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.home-portfolio-slider img {
  user-select: none;
}

.slider-window {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
  cursor: grab;
  user-select: none;
}

.slider-window.is-dragging {
  cursor: grabbing;
}

.slider-window::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.slider-row {
  display: flex;
  gap: 1rem;
}

/* reuse existing card look but make them fixed width for the slider */
.home-portfolio-slider .portfolio-block {
  flex: 0 0 auto;
  width: 230px;
  padding-top: 4px;
}

@media (min-width: 900px) {
  .home-portfolio-slider .portfolio-block {
    width: 260px;
  }
}

.slider-arrow {
  border: none;
  background: #fff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  box-shadow: 0 0 0 1px var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s ease-out, box-shadow 0.18s ease-out,
    transform 0.18s ease-out;
}

.slider-arrow:hover {
  background: var(--accent-soft);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* subtle hover animation on slider images */

.home-portfolio-slider .portfolio-item {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.home-portfolio-slider .portfolio-block:hover .portfolio-item {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* about serena */

.section-about {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
  max-height: 420px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-main);
}

.about-highlights {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-main);
  margin: 0.2rem 0 0.6rem;
  padding: 0;
}

.about-highlights li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.25rem;
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dark);
}

/* tighter heading spacing in about section */
.section-about .section-heading {
  margin-bottom: 1rem;
}

/* testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.2rem 1.1rem;
  font-size: 0.9rem;
  color: #333;
}

.client-name {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* testimonial slider */

.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.testimonials-window {
  flex: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.testimonials-page {
  flex: 0 0 100%; /* each page takes full width */
}

/* arrows, reuse style similar to slider-arrow */

.testimonials-arrow {
  border: none;
  background: #fff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  box-shadow: 0 0 0 1px var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s ease-out, box-shadow 0.18s ease-out,
    transform 0.18s ease-out;
}

.testimonials-arrow:hover {
  background: var(--accent-soft);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* contact */

.contact-section {
  background: #000;
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-section .eyebrow {
  color: var(--accent);
}

.contact-section p,
.contact-section li {
  color: #f2f2f2;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-list a {
  color: var(--accent-soft);
}

/* form */

.contact-form {
  background: #111;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid #333;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

.form-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

input,
select,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid #444;
  background: #181818;
  color: #f5f5f5;
  padding: 0.6rem 0.7rem;
  font: inherit;
  font-size: 0.88rem;
}

input::placeholder,
textarea::placeholder {
  color: #888;
}

/* booking page: full black background between content and footer */
body.page-booking {
  background: #000;
}

/* footer */

.site-footer {
  background: #000;
  color: #999;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid #222;
  margin-top: auto; /* pushes footer to the bottom when content is short */
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-note {
  color: #666;
}

/* mobile sticky enquire bar – base (desktop hidden) */

.mobile-enquire-bar {
  display: none;
}

/* whatsapp button styling inside mobile bar */

.mobile-enquire-btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.mobile-enquire-btn--whatsapp:hover {
  background: #1eb857;
  border-color: #1eb857;
  color: #fff;
}

.mobile-enquire-btn--whatsapp .whatsapp-icon {
  display: inline-flex;
  margin-right: 0.4rem;
}

.mobile-enquire-btn--whatsapp .whatsapp-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.mobile-enquire-btn--whatsapp .whatsapp-label {
  text-transform: none;
  font-size: 0.8rem;
}

/* thank-you + 404 pages – shared layout */

.page-thankyou .thankyou-section,
.page-404 .thankyou-section {
  min-height: calc(100vh - 160px); /* centre, but footer not glued to edge */
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
}

.page-thankyou .thankyou-layout,
.page-404 .thankyou-layout {
  max-width: 640px;
}

.page-thankyou .thankyou-layout .section-heading,
.page-404 .thankyou-layout .section-heading {
  margin-bottom: 1rem;
}

.page-thankyou .thankyou-note,
.page-404 .thankyou-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem; /* extra gap so the button sits a bit lower */
}

.page-thankyou .thankyou-back,
.page-404 .thankyou-back {
  width: auto;
}

.thankyou-note .thankyou-ig:link,
.thankyou-note .thankyou-ig:visited {
  color: var(--accent-dark); /* baby pink/dark pink */
  font-weight: 600;
  text-decoration: none; /* no underline */
}

.thankyou-note .thankyou-ig:hover,
.thankyou-note .thankyou-ig:focus {
  color: var(--accent-dark); /* stay pink on hover */
  text-decoration: none;
}

/* ======== 900px and below (general layout) ======== */

@media (max-width: 900px) {
  .hero {
    min-height: 60vh;
    padding: 5rem 1.4rem 4rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .pricing-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    gap: 0.4rem;
  }

  .section-services::before {
    opacity: 0.12;
    transform: rotate(-12deg) scale(0.8);
    top: 10px;
    right: -140px;
    width: 420px;
    height: 420px;
  }

  .pricing-brush {
    opacity: 0.14;
    transform-origin: center;
  }

  .pricing-brush--tl,
  .pricing-brush--bl,
  .pricing-brush--tr {
    width: 260px;
    height: 260px;
  }

  /* NAV + BURGER */

  .main-nav {
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1.2rem 1rem;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  }

  /* centre logo in header on mobile */
  .logo {
    margin-inline: auto;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* burger -> X */
  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ======== 768px and below (mobile bar + thank-you + 404) ======== */

@media (max-width: 768px) {
  /* ONLY add bottom space if JS adds this class */
  body.has-mobile-bar {
    padding-bottom: 72px;
  }

  .mobile-enquire-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);

    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  }

  .mobile-enquire-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-enquire-inner {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .mobile-enquire-text {
    font-size: 0.8rem;
    color: var(--text-main);
    max-width: 60%;
  }

  .mobile-enquire-btn {
    padding: 0.55rem 1.3rem;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }

  /* thank-you + 404 – mobile tweaks */

  .page-thankyou .thankyou-section,
  .page-404 .thankyou-section {
    min-height: calc(100vh - 220px);
    padding: 2.5rem 0 2.5rem;
    display: flex;
    align-items: center;
  }

  .page-thankyou .thankyou-layout,
  .page-404 .thankyou-layout {
    max-width: 90%;
    text-align: center;
    margin-inline: auto;
  }

  .page-thankyou .thankyou-layout .section-heading-left,
  .page-404 .thankyou-layout .section-heading-left {
    text-align: center;
  }

  .page-thankyou .thankyou-layout .section-sub,
  .page-404 .thankyou-layout .section-sub,
  .page-thankyou .thankyou-note,
  .page-404 .thankyou-note {
    margin-left: auto;
    margin-right: auto;
  }

  .page-thankyou .thankyou-back,
  .page-404 .thankyou-back {
    display: inline-flex;
    margin-inline: auto;
  }
}

/* ======== 600px and below (small phones) ======== */

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .top-bar {
    padding-inline: 0.8rem;
  }

  .section-services::before {
    display: none;
  }

  .pricing-brush {
    display: none; /* hide brushes on small phones */
  }

  .home-portfolio-slider {
    gap: 0.4rem;
  }

  .home-portfolio-slider .portfolio-block {
    width: 70vw; /* bigger cards on mobile */
  }
}
