:root {
  --ink: #24313a;
  --muted: #64727a;
  --paper: #fffaf4;
  --white: #ffffff;
  --cream: #fff4e5;
  --coral: #ff7c6f;
  --coral-dark: #d9574e;
  --mint: #72c8b8;
  --lemon: #f7cf64;
  --sky: #78aee8;
  --plum: #73506f;
  --line: rgba(36, 49, 58, 0.14);
  --shadow: 0 24px 70px rgba(36, 49, 58, 0.13);
  --soft-shadow: 0 14px 40px rgba(36, 49, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf4 0%, #fff8ef 46%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 124, 111, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 850;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.hidden {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 10px 35px rgba(36, 49, 58, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 52px;
  flex: 0 0 38px;
}

.brand-mark::before {
  position: absolute;
  top: 0;
  left: 6px;
  width: 27px;
  height: 34px;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 68% 16%, rgba(255, 255, 255, 0.55) 0 9%, transparent 10%),
    #ffc1ea;
  box-shadow: 0 10px 24px rgba(36, 49, 58, 0.16);
  content: "";
}

.brand-mark::after {
  position: absolute;
  top: 32px;
  left: 17px;
  width: 14px;
  height: 20px;
  border-bottom: 2px solid #ffc1ea;
  border-left: 2px solid #ffc1ea;
  border-radius: 0 0 0 18px;
  content: "";
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-transform: lowercase;
}

.brand small {
  color: currentColor;
  font-size: 0.74rem;
  opacity: 0.8;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a,
.footer a {
  position: relative;
}

.nav a::after,
.footer a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-width: 128px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(36, 49, 58, 0.12);
}

.button {
  padding: 0 22px;
  letter-spacing: 0.01em;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral-dark), #b94a69);
  box-shadow: 0 16px 34px rgba(217, 87, 78, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  place-items: center start;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 49, 58, 0.9) 0%, rgba(36, 49, 58, 0.6) 42%, rgba(36, 49, 58, 0.08) 82%),
    linear-gradient(0deg, rgba(36, 49, 58, 0.24), rgba(36, 49, 58, 0.06));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 94px);
  padding-top: 74px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lemon);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5.2vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

section {
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 92px;
}

section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 860px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(36, 49, 58, 0.1);
}

.proof-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  font-weight: 750;
  text-align: center;
}

.proof-strip strong {
  color: var(--coral-dark);
  font-weight: 950;
}

.band {
  background: var(--white);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.narrow > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.narrow {
  width: min(780px, 100%);
  text-align: center;
}

.intro-grid,
.enquiry,
.footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  font-size: 1.08rem;
}

.feature-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 40px auto 0;
}

.feature-photos figure,
.gallery-item {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5efe8;
  box-shadow: var(--soft-shadow);
}

.feature-photos figure:nth-child(2) {
  transform: translateY(24px);
}

.feature-photos img,
.gallery-item img,
.price-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-photos img {
  aspect-ratio: 4 / 5;
}

.feature-photos figcaption,
.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: calc(100% - 32px);
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 6px;
  padding: 8px 12px 8px 10px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 12px 28px rgba(36, 49, 58, 0.16);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.feature-photos figcaption::before,
.gallery-item figcaption::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 124, 111, 0.16);
  content: "";
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  padding: 14px 16px;
  border-left: 5px solid var(--mint);
  background: #f3fffb;
  font-weight: 750;
}

.service-grid,
.theme-grid,
.price-grid,
.gallery-grid,
.steps {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.service-grid,
.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-card,
.price-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-card {
  min-height: 260px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.theme-card:hover,
.price-card:hover {
  border-color: rgba(217, 87, 78, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.theme-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.theme-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.theme-card:hover img,
.gallery-item:hover img {
  transform: scale(1.035);
}

.theme-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.theme-card span {
  display: block;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theme-card h3,
.theme-card p {
  margin: 0;
}

.theme-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.theme-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  font-weight: 750;
}

.theme-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 950;
}

.service-card:nth-child(2) .icon {
  background: var(--lemon);
}

.service-card:nth-child(3) .icon {
  color: var(--white);
  background: var(--plum);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  min-height: 170px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 1.2rem;
}

.areas {
  background:
    linear-gradient(135deg, rgba(114, 200, 184, 0.16), rgba(247, 207, 100, 0.2)),
    var(--paper);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.area-list span {
  min-width: 130px;
  padding: 13px 18px;
  border: 1px solid rgba(36, 49, 58, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-dark);
  background: rgba(255, 124, 111, 0.12);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.price-card {
  overflow: hidden;
  padding: 0 0 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card.featured {
  border-color: rgba(217, 87, 78, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price {
  color: var(--plum);
  font-size: 1.8rem;
  font-weight: 950;
}

.price-card img {
  height: 230px;
  margin-bottom: 24px;
}

.price-card h3,
.price-card p {
  margin-right: 28px;
  margin-left: 28px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 24vw);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(36, 49, 58, 0.28), transparent);
  content: "";
}

.signature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.signature-media,
.signature-copy {
  width: min(100%, 760px);
}

.signature-media {
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.signature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.signature-copy {
  justify-self: start;
}

.signature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.signature blockquote {
  margin: 28px 0 0;
  border-left: 5px solid var(--lemon);
  padding: 4px 0 4px 20px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.22;
}

.signature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.signature-list span {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  align-items: start;
  gap: clamp(28px, 6vw, 72px);
}

.enquiry-copy {
  position: sticky;
  top: 104px;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 20px;
  border-left: 5px solid var(--lemon);
  background: var(--white);
}

.contact-note span,
.form-note {
  color: var(--muted);
}

.enquiry-prompts {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.enquiry-prompts li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(36, 49, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.enquiry-prompts li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--mint);
  content: "";
  transform: translateY(-50%);
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffcf8;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--coral);
  outline: 3px solid rgba(255, 124, 111, 0.18);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px) 42px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 49, 58, 0.88), rgba(36, 49, 58, 0.66)),
    url("assets/optimized/ig_03f3fcf724778efa016a0b51ba6ef88191b6071fa3d3c3d5b6.jpg") center / cover;
}

.final-cta > div {
  width: min(720px, 100%);
}

.final-cta h2 {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(2.35rem, 8vw, 4.4rem);
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(36, 49, 58, 0.86), rgba(36, 49, 58, 0.34));
  }

  .intro-grid,
  .feature-photos,
  .service-grid,
  .theme-grid,
  .price-grid,
  .steps,
  .signature,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .signature-media,
  .signature-copy {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-photos figure:nth-child(2) {
    transform: none;
  }

  .price-card.featured {
    transform: none;
  }

  .enquiry-copy {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    min-height: 122px;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    min-width: 116px;
    min-height: 40px;
    font-size: 0.88rem;
  }

  .nav {
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 720px;
    place-items: end start;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 16px 52px;
    padding-top: 140px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(36, 49, 58, 0.42) 0%, rgba(36, 49, 58, 0.88) 72%),
      linear-gradient(90deg, rgba(36, 49, 58, 0.2), rgba(36, 49, 58, 0.12));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(210px, auto);
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .feature-photos figure,
  .gallery-item {
    min-height: 260px;
  }

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .signature-list,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero {
    min-height: 680px;
  }

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

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
  }
}
