* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f2e8;
  --bg-soft: #fcf8f1;
  --text: #051821;
  --muted: #1a4645;
  --line: rgba(26, 70, 69, 0.18);
  --primary: #f58800;
  --primary-dark: #d77700;
  --accent: #fbbc24;
  --footer: #1a4645;
  --footer-deep: #051821;
  --footer-mid: #266867;
  --shadow: 0 18px 40px rgba(18, 32, 47, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(251, 188, 36, 0.18), transparent 22rem),
    radial-gradient(circle at top left, rgba(38, 104, 103, 0.12), transparent 18rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 42%, #f3eadb 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 70, 69, 0.12);
}

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

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform 0.28s ease, color 0.28s ease;
}

.logo:hover,
.logo:focus-visible {
  transform: rotate(-2deg) scale(1.03);
  color: var(--primary-dark);
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:not(.btn) {
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 248, 238, 0.9);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid var(--primary);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(245, 136, 0, 0.22);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 252, 247, 0.75);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(251, 188, 36, 0.12);
}

.btn-sm {
  padding: 0.7rem 1rem;
}

.nav .nav-cta,
.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #ffffff;
}

.hero-actions .btn:not(.btn-secondary),
.nav .nav-cta {
  animation: buttonBreathe 4.8s ease-in-out infinite;
}

.hero-actions .btn:not(.btn-secondary):nth-child(2),
.center-actions .btn:not(.btn-secondary) {
  animation-delay: 0.8s;
}

.hero,
.contact-hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 2rem;
  align-items: center;
}

.contact-grid {
  align-items: start;
}

.eyebrow,
.section-label,
.contact-label,
.preview-label {
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.section h2,
.legal-shell h1,
.contact-copy h1 {
  line-height: 1.04;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.04em;
}

.hero h1,
.contact-copy h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  max-width: 11ch;
}

.contact-copy h1 {
  max-width: 13.5ch;
}

.coolors-text .coolors-char {
  display: inline-block;
  will-change: transform;
  cursor: default;
  transition: color 0.22s ease;
}

.coolors-text .coolors-word {
  display: inline-block;
  white-space: nowrap;
}

.coolors-text .coolors-char.is-active {
  animation: coolorsBounce 0.62s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.section h2,
.legal-shell h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.hero-text,
.section p,
.legal-shell p,
.legal-shell li,
.contact-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-text,
.contact-copy p {
  max-width: 58ch;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-content,
.contact-copy,
.hero-card,
.contact-grid .hero-card,
.preview-card,
.contact-intro-card,
.placeholder-note,
.contact-card {
  animation: fadeUp 0.8s ease both;
}

.hero-card,
.contact-grid .hero-card {
  animation:
    fadeUp 0.8s ease both,
    gentleFloat 8s ease-in-out 1s infinite;
}

.preview-card,
.contact-intro-card {
  animation:
    fadeUp 0.95s ease both,
    gentleFloat 10s ease-in-out 1.4s infinite;
}

.hero-card,
.card,
.enquiry-form,
.placeholder-note,
.contact-card,
.legal-shell,
.preview-card,
.contact-intro-card {
  background: rgba(255, 251, 246, 0.96);
  border: 1px solid rgba(26, 70, 69, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.contact-card,
.placeholder-note,
.legal-shell,
.preview-card,
.contact-intro-card {
  padding: 1.5rem;
}

.hero-card h2,
.card h3,
.preview-card h3,
.contact-intro-card h2 {
  margin-top: 0.45rem;
  margin-bottom: 0.7rem;
}

.hero-card h2,
.contact-intro-card h2 {
  font-size: 1.35rem;
}

.list-check {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
}

.list-check li + li {
  margin-top: 0.8rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
}

.section {
  padding: 4.75rem 0;
}

.section-alt {
  background: rgba(251, 188, 36, 0.08);
}

.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 1.6rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.cards .card:hover,
.cards .card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(5, 24, 33, 0.12);
  border-color: rgba(245, 136, 0, 0.22);
}

.step {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
}

.quote {
  font-size: 1.05rem;
  color: var(--text);
}

.author {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.marquee-shell {
  overflow: hidden;
  margin-top: 2rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviewLoop 28s linear infinite;
}

.marquee-card {
  width: min(24rem, 78vw);
  flex: 0 0 auto;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.enquiry-preview-grid,
.contact-panels {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.preview-card {
  min-height: 100%;
}

.contact-panels {
  margin-top: 2.5rem;
}

.contact-intro-card {
  margin-top: 1.5rem;
}

.contact-card {
  display: grid;
  gap: 0.4rem;
}

.contact-link {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-help {
  margin: 0;
}

.enquiry-panel {
  display: grid;
  gap: 1rem;
}

.placeholder-note p {
  margin-bottom: 0;
}

.enquiry-form {
  padding: 1.5rem;
}

.form-fields {
  border: 0;
  margin: 0;
  padding: 0;
}

.enquiry-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 240, 0.92);
  color: var(--text);
}

.form-fields[disabled] {
  opacity: 0.68;
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.final-cta {
  padding-top: 2rem;
}

.center-actions {
  justify-content: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.site-footer-rich {
  background: linear-gradient(180deg, var(--footer-mid) 0%, var(--footer) 48%, var(--footer-deep) 100%);
  color: #ffffff;
  padding-top: 6.4rem;
}

.footer-skyline {
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  pointer-events: none;
}

.footer-cloud,
.footer-hill,
.footer-orb {
  position: absolute;
  display: block;
}

.footer-cloud {
  top: -12px;
  height: 120px;
  background: rgba(255, 239, 204, 0.92);
  border-radius: 999px;
  animation: cloudDrift 13s ease-in-out infinite;
}

.footer-cloud-a {
  left: -6%;
  width: 30%;
  animation-delay: 0s;
}

.footer-cloud-b {
  left: 26%;
  width: 22%;
  top: 10px;
  animation-delay: 2.2s;
}

.footer-cloud-c {
  right: -4%;
  width: 30%;
  top: 14px;
  animation-delay: 4.4s;
}

.footer-cloud-d {
  left: 58%;
  width: 14%;
  top: 42px;
  height: 82px;
  opacity: 0.88;
  animation-delay: 1.1s;
}

.footer-orb {
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.78);
  filter: blur(1px);
  animation: orbPulse 11s ease-in-out infinite;
}

.footer-orb-a {
  top: 58px;
  right: 18%;
  width: 78px;
  height: 78px;
  animation-delay: 3.1s;
}

.footer-hill {
  bottom: -18px;
  height: 155px;
  border-radius: 55% 55% 0 0;
  transform-origin: center bottom;
}

.footer-hill-a {
  left: -8%;
  width: 40%;
  background: #1a4645;
  animation: hillPulseLeft 7.4s ease-in-out infinite;
}

.footer-hill-b {
  left: 28%;
  width: 38%;
  height: 182px;
  background: #266867;
  animation: hillPulseMid 6.2s ease-in-out 1.1s infinite;
}

.footer-hill-c {
  right: -10%;
  width: 42%;
  background: #f58800;
  animation: hillPulseRight 8.1s ease-in-out 0.45s infinite;
}

.footer-shell,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: -1rem;
  padding-bottom: 2.5rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
}

.footer-brand p,
.footer-column a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-column {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.footer-column h3 {
  margin: 0;
  font-size: 1.05rem;
}

.footer-column a {
  transition: opacity 0.18s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  opacity: 1;
  color: #fbbc24;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.5rem 0 2rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 4.5rem 0 0;
}

.legal-shell {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
}

.legal-meta {
  margin-top: -0.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.legal-shell section + section {
  margin-top: 1.8rem;
}

.legal-shell ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes buttonBreathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(245, 136, 0, 0);
  }

  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 28px rgba(245, 136, 0, 0.18);
  }
}

@keyframes coolorsBounce {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  24% {
    transform: translate3d(0, -0.26em, 0) rotate(-4deg);
  }

  48% {
    transform: translate3d(0, 0.04em, 0) rotate(2deg);
  }

  68% {
    transform: translate3d(0, -0.1em, 0) rotate(-1.2deg);
  }

  84% {
    transform: translate3d(0, 0.02em, 0) rotate(0.8deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes reviewLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

@keyframes cloudDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  30% {
    transform: translate3d(10px, -32px, 0) scale(1.04);
  }

  58% {
    transform: translate3d(-12px, 10px, 0) scale(0.96);
  }

  82% {
    transform: translate3d(6px, -20px, 0) scale(1.02);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.78;
  }

  35% {
    transform: translate3d(-10px, -30px, 0) scale(1.12);
    opacity: 0.96;
  }

  68% {
    transform: translate3d(12px, 12px, 0) scale(0.9);
    opacity: 0.68;
  }
}

@keyframes hillPulseLeft {
  0%,
  100% {
    transform: scaleY(1);
  }

  45% {
    transform: scaleY(1.14);
  }

  70% {
    transform: scaleY(0.92);
  }
}

@keyframes hillPulseMid {
  0%,
  100% {
    transform: scaleY(0.96);
  }

  35% {
    transform: scaleY(1.18);
  }

  68% {
    transform: scaleY(0.94);
  }
}

@keyframes hillPulseRight {
  0%,
  100% {
    transform: scaleY(0.97);
  }

  40% {
    transform: scaleY(1.16);
  }

  72% {
    transform: scaleY(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .three-col,
  .two-col,
  .enquiry-preview-grid,
  .contact-panels,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    gap: 1.5rem;
  }

  .footer-cloud-a,
  .footer-cloud-b,
  .footer-cloud-c {
    width: 45%;
  }

  .marquee-card {
    width: min(22rem, 84vw);
  }
}

@media (max-width: 900px) {
  .hero,
  .contact-hero {
    padding-top: 4.5rem;
  }

  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.8rem;
    border: 1px solid rgba(215, 221, 229, 0.95);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius-sm);
  }

  .nav a.btn {
    justify-content: center;
  }

  .hero h1,
  .contact-copy h1 {
    max-width: 12ch;
  }

  .contact-copy h1 {
    max-width: 14ch;
  }

  .section,
  .legal-main {
    padding: 4rem 0 0;
  }
}

@media (max-width: 640px) {
  .container,
  .legal-shell {
    width: min(100% - 1.25rem, 100%);
  }

  .hero,
  .contact-hero {
    padding-top: 4rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

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

  .hero-card,
  .card,
  .contact-card,
  .placeholder-note,
  .enquiry-form,
  .legal-shell,
  .preview-card,
  .contact-intro-card {
    border-radius: 20px;
  }

  .site-footer-rich {
    padding-top: 6rem;
  }

  .footer-skyline {
    height: 170px;
  }

  .marquee-shell {
    mask-image: none;
  }
}
