:root {
  --ivory: #FBF9FA;
  --sky: #AFDEF9;
  --sunglow: #FFE897;
  --rouge: #E12E35;
  --charcoal: #2F373A;

  --container: 1200px;
  --container-narrow: 920px;

  --radius: 22px;
  --radius-small: 14px;

  --shadow-soft: 0 10px 30px rgba(47, 55, 58, 0.08);
  --shadow-card: 0 16px 40px rgba(47, 55, 58, 0.10);
  --border-soft: 1px solid rgba(47, 55, 58, 0.10);

  --transition: 0.3s ease;
}



/* ==================================== */
/* RESET                               */
/* Basic element cleanup               */
/* ==================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}



/* ==================================== */
/* LAYOUT                              */
/* Main width containers and spacing   */
/* ==================================== */

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 2rem, var(--container-narrow));
  margin: 0 auto;
}

.section {
  padding: 5.25rem 0;
}



/* ==================================== */
/* TYPOGRAPHY                          */
/* Global text styles                  */
/* ==================================== */

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.65rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1.12rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--rouge);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 70ch;
}



/* ==================================== */
/* BUTTONS                             */
/* Shared button styling               */
/* ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-large {
  min-height: 57px;
  padding: 0.75rem 1.45rem;
  font-size: 1.47rem;
}

.btn-primary {
  background: #fff;
  color: var(--rouge);
  border: 2px solid var(--rouge);
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--sunglow);
  border-color: var(--rouge);
  box-shadow: 0 12px 24px rgba(47, 55, 58, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--charcoal);
  border-color: rgba(47, 55, 58, 0.14);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(47, 55, 58, 0.22);
}

.btn-sky {
  background: var(--charcoal);
  color: var(--sky);
  border: 2px solid var(--sky);
}

.btn-sky:hover {
  background: var(--sky);
  color: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 12px 24px rgba(47, 55, 58, 0.18);
}

.btn-yellow {
  background: var(--charcoal);
  color: var(--sunglow);
  border: 2px solid var(--sunglow);
}

.btn-yellow:hover {
  background: var(--sunglow);
  color: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 12px 24px rgba(47, 55, 58, 0.18);
}



/* ==================================== */
/* HEADER                              */
/* Top navigation and sticky behaviour */
/* ==================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled,
.site-header.always-solid {
  background: rgba(251, 249, 250, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(47, 55, 58, 0.08);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.logo img {
  width: 93px;
  height: auto;
}

.logo-text {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}



/* ==================================== */
/* NAVIGATION                          */
/* Main links and hover behaviour      */
/* ==================================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--charcoal);
  background-image: linear-gradient(to right, var(--rouge) 0%, var(--rouge) 100%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: currentColor;
  transition: background-size 0.28s ease, color 0.28s ease;
}

.nav-links a::before,
.nav-links a::after {
  content: none;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a:focus-visible {
  color: transparent;
  background-size: 100% 100%;
  -webkit-text-fill-color: transparent;
}



/* ==================================== */
/* TWO-ROW NAVIGATION                  */
/* Custom two-line homepage nav        */
/* ==================================== */

.nav-links-two-row {
  display: grid;
  grid-template-columns: repeat(6, auto);
  justify-content: center;
  justify-items: center;
  align-items: center;
  column-gap: 2rem;
  row-gap: 0;
  text-align: center;
}

.nav-links-two-row li {
  text-align: center;
  line-height: 1;
}

.nav-links-two-row li:nth-child(1) { grid-column: 1 / 3; }
.nav-links-two-row li:nth-child(2) { grid-column: 3 / 5; }
.nav-links-two-row li:nth-child(3) { grid-column: 5 / 7; }
.nav-links-two-row li:nth-child(4) { grid-column: 2 / 4; }
.nav-links-two-row li:nth-child(5) { grid-column: 4 / 6; }

.nav-links-two-row a {
  display: inline-block;
  padding: 0;
  text-align: center;
  line-height: 1.35;
}

.nav-links-two-row li:nth-child(1) a,
.nav-links-two-row li:nth-child(2) a,
.nav-links-two-row li:nth-child(3) a {
  font-size: 1.25rem;
  font-weight: 800;
}

.nav-links-two-row li:nth-child(4) a,
.nav-links-two-row li:nth-child(5) a {
  font-size: 1rem;
  font-weight: 600;
}



/* ==================================== */
/* MOBILE NAV TOGGLE                   */
/* Hamburger button                    */
/* ==================================== */

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: var(--border-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle.active span {
  opacity: 0;
}

.nav-toggle.active::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle.active::after {
  transform: translateY(0) rotate(-45deg);
}



/* ==================================== */
/* HERO                                */
/* Main landing section background     */
/* ==================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(251, 249, 250, 0.68), rgba(251, 249, 250, 0.8)),
    url("assets/images/Web-Background-2.jpg") center center / cover no-repeat;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background:
    linear-gradient(rgba(251, 249, 250, 0.84), rgba(251, 249, 250, 0.92)),
    url("assets/images/Web-Background.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(175, 222, 249, 0.1), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255, 232, 151, 0.1), transparent 28%);
  pointer-events: none;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-content {
  padding: 5rem 0;
}

.hero h1 {
  max-width: 12ch;
}

.hero-text {
  margin: 0 0 2rem;
  max-width: 58ch;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-text strong {
  font-weight: 700;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.section-actions {
  margin-top: 2rem;
  justify-content: center;
}



/* ==================================== */
/* HERO TITLE                          */
/* Multi-line custom heading styling   */
/* ==================================== */

.hero-title-custom {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  max-width: none;
}

.hero-title-custom,
.hero-title-custom span {
  text-transform: none;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-left: 0.22em;
  padding-bottom: 0.14em;
  margin-left: -0.22em;
  will-change: transform, opacity, filter;
}

.hero-line-inner {
  display: inline-block;
  transform: translateX(-105%);
  opacity: 0;
  will-change: transform, opacity;
}

.hero-line-plain {
  text-transform: none;
}

.hero-line-mixed {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  flex-wrap: wrap;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0.06em 0.18em 0.1em 0;
  line-height: 0.9;
  isolation: isolate;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.26em;
  width: calc(100% + 0.44em);
  height: 100%;
  z-index: -1;
}

.hero-highlight-dark::before {
  background: var(--charcoal);
}

.hero-word-restaurants {
  color: var(--sunglow);
}

.hero-word-cafes {
  color: var(--rouge);
}

.hero-word-takeaways {
  color: var(--sky);
}

.hero-word-and {
  color: var(--charcoal);
  text-transform: none;
}

/* ==================================== */
/* COMING SOON PAGE                    */
/* Placeholder page hero section       */
/* ==================================== */

.coming-soon-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 3rem 0 2rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(251, 249, 250, 0.68), rgba(251, 249, 250, 0.80)),
    url("assets/images/Web-Background-2.jpg") center center / cover no-repeat;
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}

.coming-soon-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(175, 222, 249, 0.10), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255, 232, 151, 0.10), transparent 28%);
  pointer-events: none;
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.coming-soon-title {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
}

.coming-soon-copy {
  max-width: 850px;
  margin: 1.2rem auto 0;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.coming-soon-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ==================================== */
/* HERO ANIMATION                      */
/* Intro animations for hero heading   */
/* ==================================== */

.hero-animate .hero-line-1 .hero-line-inner,
.hero-animate .hero-line-2 .hero-line-inner,
.hero-animate .hero-line-3 .hero-line-inner,
.hero-animate .hero-line-4 .hero-line-inner {
  animation: heroLineReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate .hero-line-1 .hero-line-inner { animation-delay: 0.08s; }
.hero-animate .hero-line-2 .hero-line-inner { animation-delay: 0.38s; }
.hero-animate .hero-line-3 .hero-line-inner { animation-delay: 0.72s; }
.hero-animate .hero-line-4 .hero-line-inner { animation-delay: 1.06s; }

.hero-fade-in {
  opacity: 0;
  transform: translateY(14px);
}

.hero-animate .hero-fade-in {
  animation: heroFadeIn 0.65s ease forwards;
  animation-delay: 1.45s;
}

.hero-actions-pop .hero-btn {
  opacity: 0;
  transform: scale(0.88);
  transform-origin: center;
}

.hero-animate .hero-actions-pop .hero-btn-1 {
  animation: heroPopIn 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.82s;
}

.hero-animate .hero-actions-pop .hero-btn-2 {
  animation: heroPopIn 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 2.02s;
}

@keyframes heroLineReveal {
  from {
    transform: translateX(-105%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPopIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/* ==================================== */
/* SHARED PAGE BACKGROUND              */
/* Background for flow sections        */
/* ==================================== */

.site-flow-background {
  background:
    linear-gradient(rgba(251, 249, 250, 0.28), rgba(251, 249, 250, 0.38)),
    url("assets/images/Web-Background.jpg") center center / cover no-repeat fixed;
}



/* ==================================== */
/* INTRO SECTION                       */
/* Practical support split layout      */
/* ==================================== */

.intro-parallax-section {
  background: transparent;
}

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.intro-split-title {
  align-self: start;
}

.intro-split-title h2 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.45rem, 5.75vw, 6rem);
  line-height: 0.92;
}

.intro-split-copy {
  align-self: start;
  justify-self: start;
  max-width: 620px;
  padding-top: 0.1rem;
}

.intro-split-copy p {
  max-width: 37ch;
  margin: 0 0 1.6rem 0;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  line-height: 1.45;
  text-align: right;
}

.intro-split-copy p:last-child {
  margin-bottom: 0;
}



/* ==================================== */
/* INTRO HIGHLIGHTS                    */
/* Coloured mark/highlight effects     */
/* ==================================== */

.intro-highlight {
  position: relative;
  display: inline-block;
  padding: 0.04em 0.14em 0.08em 0;
  line-height: 0.9;
  isolation: isolate;
}

.intro-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.2em;
  width: calc(100% + 0.34em);
  height: 100%;
  z-index: -1;
}

.intro-highlight-dark::before {
  background: var(--charcoal);
}

.intro-word-support {
  color: var(--rouge);
}

.intro-highlight-yellow {
  position: relative;
  display: inline-block;
  padding: 0.1em 0.14em 0.1em 0;
  line-height: 0.9;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.intro-highlight-yellow::after {
  content: "";
  position: absolute;
  top: 0.07em;
  left: -0.32em;
  width: calc(100% + 0.46em);
  height: calc(100% - 0.16em);
  background: var(--sunglow);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
}

.intro-word-business {
  position: relative;
  z-index: 1;
  color: var(--charcoal);
}



/* ==================================== */
/* INTRO ANIMATION                     */
/* Practical / Support / Business seq  */
/* ==================================== */

.intro-title-custom {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
}

.intro-line {
  display: block;
  padding-left: 0.22em;
  margin-left: -0.22em;
  will-change: transform, opacity, filter;
}

.intro-line-practical,
.intro-line-support,
.intro-line-business {
  opacity: 0;
}

.intro-line-practical {
  transform: translateY(-140px) scale(1.45);
  transform-origin: center top;
}

.intro-line-support {
  transform: translateY(20px);
}

.intro-line-for-your {
  display: flex;
  gap: 0.18em;
}

.intro-word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}

.intro-word-for {
  transform: translateX(-120px);
}

.intro-word-your {
  transform: translateX(120px);
}

.intro-line-business {
  transform: scaleY(1.8) scaleX(1.12);
  transform-origin: center top;
  filter: blur(8px);
}

.intro-animate-start .intro-line-practical {
  animation: practicalCrash 0.95s cubic-bezier(0.2, 1.2, 0.3, 1) forwards;
}

.intro-animate-start .intro-line-support {
  animation: supportMaterialise 0.5s ease forwards;
  animation-delay: 0.25s;
}

.intro-animate-start .intro-word-for {
  animation: forGlide 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.78s;
}

.intro-animate-start .intro-word-your {
  animation: yourGlide 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.78s;
}

.intro-animate-start .intro-line-business {
  animation: businessDeflate 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.25s;
}

.intro-copy-fade {
  opacity: 0;
  transform: translateY(8px);
}

.intro-animate-start .intro-copy-fade {
  animation: introCopyFade 2s ease forwards;
  animation-delay: 1.95s;
}

.intro-animate-start .intro-line-business .intro-highlight-yellow::after {
  animation: businessHighlightReveal 0.42s ease forwards;
  animation-delay: 1.92s;
}

@keyframes practicalCrash {
  0% {
    opacity: 0;
    transform: translateY(-140px) scale(1.45);
  }
  55% {
    opacity: 1;
    transform: translateY(24px) scale(0.96);
  }
  72% {
    opacity: 1;
    transform: translateY(12px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes supportMaterialise {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.06em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}

@keyframes forGlide {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes yourGlide {
  0% {
    opacity: 0;
    transform: translateX(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes businessDeflate {
  0% {
    opacity: 0;
    transform: translateY(-18px) scaleY(1.8) scaleX(1.12);
    filter: blur(8px);
  }
  58% {
    opacity: 1;
    transform: translateY(12px) scaleY(0.9) scaleX(1.03);
    filter: blur(0);
  }
  78% {
    opacity: 1;
    transform: translateY(-4px) scaleY(1.04) scaleX(0.99);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1) scaleX(1);
    filter: blur(0);
  }
}

@keyframes introCopyFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes businessHighlightReveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* ==================================== */
/* TERMS PAGE                          */
/* Terms and conditions layout         */
/* ==================================== */

.terms-page {
  background:
    url("assets/images/Web-Background.jpg") center center / cover no-repeat fixed;
}

.terms-section {
  padding: 2.5rem 0 4.5rem;
}

.terms-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.terms-title {
  margin: 0 0 2.8rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(4.8rem, 10vw, 10.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(47, 55, 58, 0.72);
}

.terms-content {
  max-width: 1120px;
}

.terms-block {
  margin-bottom: 1.85rem;
}

.terms-block h2 {
  margin: 0 0 0.2rem;
  font-family: "Barlow", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.18;
  text-transform: none;
  color: rgba(47, 55, 58, 0.9);
}

.terms-block p,
.terms-bullets li,
.terms-numbered li,
.terms-closing {
  font-family: "Barlow", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(47, 55, 58, 0.92);
}

.terms-block p {
  margin: 0 0 0.85rem;
  max-width: 1100px;
}

.terms-bullets {
  margin: 0.3rem 0 0;
  padding-left: 1.55rem;
}

.terms-bullets li {
  margin-bottom: 0.6rem;
}

.terms-numbered {
  margin: 0.35rem 0 0;
  padding-left: 1.6rem;
}

.terms-numbered li {
  margin-bottom: 0.45rem;
}

.terms-block strong,
.terms-numbered strong,
.terms-bullets strong {
  font-weight: 700;
}

.terms-closing {
  margin-top: 1.6rem;
}

@media (max-width: 980px) {
  .terms-section {
    padding: 2rem 0 4rem;
  }

  .terms-title {
    margin-bottom: 2rem;
    font-size: clamp(3.8rem, 14vw, 7rem);
  }
}

@media (max-width: 680px) {
  .terms-section {
    padding: 1.6rem 0 3rem;
  }

  .terms-title {
    margin-bottom: 1.6rem;
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.9;
  }

  .terms-block {
    margin-bottom: 1.4rem;
  }

  .terms-block h2 {
    font-size: 1.25rem;
  }

  .terms-block p,
  .terms-bullets li,
  .terms-numbered li,
  .terms-closing {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* ==================================== */
/* FULL-WIDTH GALLERIES                */
/* Homepage image sliders              */
/* ==================================== */

.logo-gallery-strip {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}

.logo-gallery-track {
  display: flex;
  width: max-content;
  transform: translateX(0);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-gallery-slide {
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 420px;
}

.logo-gallery-slide img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.logo-gallery-strip .logo-gallery-slide img {
  cursor: pointer;
}

/* ==================================== */
/* ILLUSTRATION GALLERY                */
/* Placeholder page sliding artwork    */
/* ==================================== */

.illustration-gallery-strip {
  width: 100%;
  min-height: 775px;
  background: transparent;
}

.illustration-gallery-strip .logo-gallery-slide {
  width: 100vw;
  flex: 0 0 100vw;
  min-height: 775px;
}

.illustration-gallery-strip .logo-gallery-slide img {
  width: 100%;
  height: 775px;
  object-fit: cover;
  object-position: center center;
  cursor: pointer;
}

/* ==================================== */
/* FULLSCREEN OVERLAY                  */
/* Click-to-enlarge gallery image      */
/* ==================================== */

.slide-fullscreen-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(15, 18, 20, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.slide-fullscreen-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.slide-fullscreen-overlay img {
  display: block;
  width: auto;
  height: auto;
  max-width: 96vw;
  max-height: 96vh;
  object-fit: contain;
  cursor: pointer;
}

/* ==================================== */
/* FULLSCREEN GALLERY ARROWS           */
/* Left / right navigation buttons     */
/* ==================================== */

.slide-fullscreen-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(251, 249, 250, 0.75);
  border-radius: 50%;
  background: rgba(15, 18, 20, 0.45);
  color: var(--ivory);
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.slide-fullscreen-arrow:hover {
  background: rgba(15, 18, 20, 0.72);
  border-color: var(--ivory);
}

.slide-fullscreen-arrow-left {
  left: 1.5rem;
}

.slide-fullscreen-arrow-right {
  right: 1.5rem;
}

@media (max-width: 680px) {
  .slide-fullscreen-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .slide-fullscreen-arrow-left {
    left: 0.75rem;
  }

  .slide-fullscreen-arrow-right {
    right: 0.75rem;
  }
}

/* ==================================== */
/* SERVICES SECTION                    */
/* Homepage service cards area         */
/* ==================================== */

.services-preview,
.about-preview,
.supporting-work,
.why-dov,
.process,
.closing-cta,
.cta,
.intro-parallax-section,
.web-pricing,
.print-pricing {
  background: transparent;
}

.services-preview .section-heading,
.services-heading-block {
  width: 100%;
  max-width: none;
}

.services-preview .container {
  display: block;
  overflow: visible;
}

.services-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}



/* ==================================== */
/* SERVICES HEADING ANIMATION          */
/* What I Can Help With heading        */
/* ==================================== */

.services-heading-block {
  display: flex;
  justify-content: center;
}

.services-title-custom {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  width: 100%;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  line-height: 0.95;
  white-space: nowrap;
  text-align: center;
}

.services-intro {
  margin: 0.7rem auto 3rem;
  max-width: 78ch;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.services-word {
  position: relative;
  display: inline-flex;
  gap: 0.01em;
  white-space: nowrap;
}

.services-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-120px);
  will-change: transform, opacity;
}

.services-heading-animate .services-letter {
  animation: servicesLetterBolt 0.3s cubic-bezier(0.2, 1.2, 0.3, 1) forwards;
}

.services-heading-animate .services-letter:nth-child(1) { animation-delay: 0s; }
.services-heading-animate .services-letter:nth-child(2) { animation-delay: 0.025s; }
.services-heading-animate .services-letter:nth-child(3) { animation-delay: 0.05s; }
.services-heading-animate .services-letter:nth-child(4) { animation-delay: 0.075s; }

.services-word-i .services-letter:nth-child(1)    { animation-delay: 0.11s; }

.services-word-can .services-letter:nth-child(1)  { animation-delay: 0.145s; }
.services-word-can .services-letter:nth-child(2)  { animation-delay: 0.17s; }
.services-word-can .services-letter:nth-child(3)  { animation-delay: 0.195s; }

.services-word-help .services-letter:nth-child(1) { animation-delay: 0.23s; }
.services-word-help .services-letter:nth-child(2) { animation-delay: 0.255s; }
.services-word-help .services-letter:nth-child(3) { animation-delay: 0.28s; }
.services-word-help .services-letter:nth-child(4) { animation-delay: 0.305s; }

.services-word-with .services-letter:nth-child(1) { animation-delay: 0.34s; }
.services-word-with .services-letter:nth-child(2) { animation-delay: 0.365s; }
.services-word-with .services-letter:nth-child(3) { animation-delay: 0.39s; }
.services-word-with .services-letter:nth-child(4) { animation-delay: 0.415s; }

.services-highlight-blue-wrap {
  position: relative;
  padding: 0.05em 0.1em 0.08em;
  overflow: hidden;
  isolation: isolate;
}

.services-highlight-blue-wrap::after {
  content: "";
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 100%;
  height: calc(100% - 0.16em);
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
}

.services-heading-animate .services-highlight-blue-wrap::after {
  animation: servicesHelpHighlightReveal 0.18s ease forwards;
  animation-delay: 0.8s;
}

@keyframes servicesLetterBolt {
  0% {
    opacity: 0;
    transform: translateY(-120px) scaleY(1.2);
    filter: blur(2px);
  }
  62% {
    opacity: 1;
    transform: translateY(10px) scaleY(0.94);
    filter: blur(0);
  }
  80% {
    opacity: 1;
    transform: translateY(-3px) scaleY(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes servicesHelpHighlightReveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}



/* ==================================== */
/* SERVICE CARDS                       */
/* Homepage service card styling       */
/* ==================================== */

.service-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: none;
  border-radius: 28px;
  background: linear-gradient(135deg, #56646d 0%, #31393d 52%, #14191c 100%);
  box-shadow: 0 16px 40px rgba(47, 55, 58, 0.18);
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: scale(0.96);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 4px solid var(--card-accent);
  border-radius: 24px;
  pointer-events: none;
  opacity: 1;
  clip-path: inset(0 100% 100% 0 round 24px);
}

.service-card:nth-child(3n + 1) {
  --card-accent: var(--rouge);
}

.service-card:nth-child(3n + 2) {
  --card-accent: var(--sunglow);
}

.service-card:nth-child(3n + 3) {
  --card-accent: var(--sky);
}

.service-card:nth-child(1) .service-title,
.service-card:nth-child(4) .service-title {
  color: #ffffff;
}

.service-card-inner {
  position: relative;
  z-index: 2;
  min-height: 270px;
  padding: 2.1rem 1.6rem 1.8rem;
  border-radius: 28px;
  opacity: 0;
}

.service-card h3,
.service-card p {
  color: #ffffff;
  text-align: center;
}

.service-card h3 {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--card-accent);
  opacity: 0;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.15rem;
  opacity: 0;
  transform: scale(0.65);
}

.service-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-copy {
  margin: 0;
}

.service-line {
  display: block;
  width: 0;
  overflow: hidden;
  margin: 0 auto 0.25rem;
  white-space: nowrap;
  color: #ffffff;
}

.service-line:last-child {
  margin-bottom: 0;
}

.service-card.card-animate {
  opacity: 1;
  animation: cardSettlePop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.02s;
}

.service-card.card-animate::after {
  animation: drawCardFrame 0.42s ease forwards;
}

.service-card.card-animate .service-card-inner {
  animation: fadeCardFill 0.45s ease forwards;
  animation-delay: 0.06s;
}

.service-card.card-animate .service-icon {
  animation: popCardIcon 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.24s;
}

.service-card.card-animate .service-title {
  animation: fadeCardTitle 0.18s ease forwards;
  animation-delay: 0.34s;
}

.service-card.card-animate .service-line:nth-child(1) {
  animation: typeLine 0.24s steps(30, end) forwards;
  animation-delay: 0.42s;
}

.service-card.card-animate .service-line:nth-child(2) {
  animation: typeLine 0.24s steps(30, end) forwards;
  animation-delay: 0.6s;
}

.service-card.card-animate .service-line:nth-child(3) {
  animation: typeLine 0.24s steps(30, end) forwards;
  animation-delay: 0.78s;
}

@keyframes drawCardFrame {
  0% {
    clip-path: inset(0 100% 100% 0 round 24px);
  }
  25% {
    clip-path: inset(0 0 100% 0 round 24px);
  }
  50% {
    clip-path: inset(0 0 0 100% round 24px);
  }
  75% {
    clip-path: inset(100% 0 0 0 round 24px);
  }
  100% {
    clip-path: inset(0 0 0 0 round 24px);
  }
}

@keyframes fadeCardFill {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popCardIcon {
  0% {
    opacity: 0;
    transform: scale(0.65);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeCardTitle {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typeLine {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes cardSettlePop {
  0% { transform: scale(0.96); }
  55% { transform: scale(1.03); }
  100% { transform: scale(1); }
}



/* ==================================== */
/* WEB PRICING SECTION                 */
/* Web design pricing area             */
/* ==================================== */

.pricing-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-heading h2 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: none;
}

.pricing-heading p {
  margin: 0 auto;
  max-width: 78ch;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.pricing-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}



/* ==================================== */
/* PRICING CARDS                       */
/* Shared pricing card styles          */
/* ==================================== */

.pricing-card {
  position: relative;
  min-height: 100%;
  padding: 2rem 1.7rem 1.9rem;
  overflow: hidden;
  border: none;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 16px 40px rgba(47, 55, 58, 0.18);
  color: #ffffff;
  opacity: 1;
  transform: scale(0.96);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #56646d 0%, #31393d 52%, #14191c 100%);
  opacity: 0;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 4px solid var(--card-accent);
  border-radius: 24px;
  pointer-events: none;
  clip-path: inset(0 100% 100% 0 round 24px);
}

.pricing-card > * {
  position: relative;
  z-index: 2;
}

.pricing-card h3,
.pricing-tagline,
.pricing-price,
.pricing-list li {
  opacity: 0;
}

.pricing-card.card-animate {
  opacity: 1;
  animation: cardSettlePop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.92s;
}

.pricing-card.card-animate::before {
  animation: fadeCardFill 0.45s ease forwards;
  animation-delay: 0.06s;
}

.pricing-card.card-animate::after {
  animation: drawCardFrame 0.42s ease forwards;
}

.pricing-card.card-animate h3 {
  animation: fadeCardTitle 0.18s ease forwards;
  animation-delay: 0.18s;
}

.pricing-card.card-animate .pricing-tagline {
  animation: fadeCardTitle 0.18s ease forwards;
  animation-delay: 0.3s;
}

.pricing-card.card-animate .pricing-price {
  animation: fadeCardTitle 0.18s ease forwards;
  animation-delay: 0.42s;
}

.pricing-card.card-animate .pricing-list li:nth-child(1) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.54s; }
.pricing-card.card-animate .pricing-list li:nth-child(2) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.6s; }
.pricing-card.card-animate .pricing-list li:nth-child(3) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.66s; }
.pricing-card.card-animate .pricing-list li:nth-child(4) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.72s; }
.pricing-card.card-animate .pricing-list li:nth-child(5) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.78s; }
.pricing-card.card-animate .pricing-list li:nth-child(6) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.84s; }
.pricing-card.card-animate .pricing-list li:nth-child(7) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.9s; }
.pricing-card.card-animate .pricing-list li:nth-child(8) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 0.96s; }
.pricing-card.card-animate .pricing-list li:nth-child(9) { animation: fadeCardTitle 0.16s ease forwards; animation-delay: 1.02s; }

.pricing-card-red {
  --card-accent: var(--rouge);
}

.pricing-card-yellow {
  --card-accent: var(--sunglow);
}

.pricing-card-sky {
  --card-accent: var(--sky);
}

.pricing-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(2rem, 2.3vw, 2.35rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: none;
  color: var(--card-accent);
}

.pricing-card-red h3 {
  color: #ffffff;
}

.pricing-tagline {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.pricing-price {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.65rem, 1.95vw, 1.9rem);
  font-weight: 700;
  line-height: 0.95;
  color: #ffffff;
}

.pricing-price .pricing-price-lite,
.pricing-price span {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: none;
}

.pricing-list li {
  margin: 0 0 0.32rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.22;
  color: #ffffff;
  list-style: "▶  ";
}

.pricing-list li::marker {
  font-size: 0.72rem;
  color: var(--card-accent);
}



/* ==================================== */
/* PRICING HEADING EFFECTS             */
/* Print and digital heading effects   */
/* ==================================== */

.print-heading-animate {
  opacity: 0;
  transform: translateY(-18px) scaleY(1.12);
  filter: blur(5px);
  will-change: transform, opacity, filter;
}

.print-heading-animate.is-printed {
  animation: printHeadingReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.digital-heading-animate {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(2px);
  text-shadow:
    -0.04em 0 0 rgba(225, 46, 53, 0.45),
     0.04em 0 0 rgba(175, 222, 249, 0.45);
  will-change: transform, opacity, filter;
}

.digital-heading-animate.is-digital {
  animation: digitalHeadingReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes printHeadingReveal {
  0% {
    opacity: 0;
    transform: translateY(-18px) scaleY(1.12);
    filter: blur(5px);
  }
  58% {
    opacity: 1;
    transform: translateY(6px) scaleY(0.97);
    filter: blur(0);
  }
  80% {
    opacity: 1;
    transform: translateY(-2px) scaleY(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
  }
}

@keyframes digitalHeadingReveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(3px);
    text-shadow:
      -0.08em 0 0 rgba(225, 46, 53, 0.55),
       0.08em 0 0 rgba(175, 222, 249, 0.55);
  }
  18% {
    opacity: 0.45;
    transform: translateX(-3px) translateY(4px);
    filter: blur(1px);
  }
  28% {
    opacity: 0.7;
    transform: translateX(3px) translateY(2px);
    filter: blur(0);
  }
  42% {
    opacity: 0.9;
    transform: translateX(-2px) translateY(1px);
    text-shadow:
      -0.03em 0 0 rgba(225, 46, 53, 0.35),
       0.03em 0 0 rgba(175, 222, 249, 0.35);
  }
  60% {
    opacity: 1;
    transform: translateX(1px) translateY(0);
    text-shadow:
      -0.015em 0 0 rgba(225, 46, 53, 0.2),
       0.015em 0 0 rgba(175, 222, 249, 0.2);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
    filter: blur(0);
    text-shadow: none;
  }
}



/* ==================================== */
/* GENERIC PANELS / CARDS              */
/* Shared card surfaces across pages   */
/* ==================================== */

.panel,
.project-card,
.benefit-card,
.value-card,
.support-card,
.service-panel,
.cta-box,
.about-visual {
  background: rgba(255, 255, 255, 0.78);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.panel,
.service-panel,
.cta-box {
  border-radius: var(--radius);
}

.panel,
.service-panel {
  padding: 1.8rem;
}

.service-card,
.benefit-card,
.value-card {
  padding: 1.35rem;
  border-radius: var(--radius);
}

.about-visual {
  border-radius: var(--radius);
}



/* ==================================== */
/* DECORATIVE BAND                     */
/* Spacer band between lower sections  */
/* ==================================== */

.brand-band,
.band {
  min-height: 10px;
  background: transparent;
}

.print-pricing.section {
  padding-bottom: 1rem;
}

.cta.section {
  padding-top: 1rem;
  padding-bottom: 3rem;
}



/* ==================================== */
/* CTA SECTION                         */
/* Final homepage call to action       */
/* ==================================== */

.cta-box {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cta-title-custom {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.cta-copy-custom {
  margin: 0 auto 2rem;
  max-width: 78ch;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}



/* ==================================== */
/* CLIENT LOGO MARQUEE                 */
/* Two-row infinite logo gallery       */
/* ==================================== */

.logo-marquee-section {
  background: transparent;
  padding: 1.5rem 0 2rem;
}

.logo-marquee-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-marquee-row {
  position: relative;
  width: 100%;
  margin-bottom: 0.9rem;
}

.logo-marquee-row:last-child {
  margin-bottom: 0;
}

.logo-marquee-fade {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-marquee-fade::before,
.logo-marquee-fade::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 5;
  pointer-events: none;
}

.logo-marquee-fade::before {
  left: 0;
  background: linear-gradient(to right, rgba(251, 249, 250, 1) 0%, rgba(251, 249, 250, 0) 100%);
}

.logo-marquee-fade::after {
  right: 0;
  background: linear-gradient(to left, rgba(251, 249, 250, 1) 0%, rgba(251, 249, 250, 0) 100%);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-shrink: 0;
  padding-right: 3.5rem;
}

.logo-marquee-group img {
  display: block;
  width: auto;
  max-width: none;
  opacity: 0.96;
}

.logo-marquee-row-top .logo-marquee-group img {
  height: 70px;
}

.logo-marquee-row-bottom .logo-marquee-group img {
  height: 100px;
}

.logo-marquee-row-top .logo-marquee-track {
  animation: logoMarqueeLeft 55s linear infinite;
}

.logo-marquee-row-bottom .logo-marquee-track {
  animation: logoMarqueeRight 55s linear infinite;
}

@keyframes logoMarqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes logoMarqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}



/* ==================================== */
/* STATS BAND                          */
/* Black strip above footer            */
/* ==================================== */

.stats-band {
  background: var(--charcoal);
  padding: 2rem 0 3.5rem;
}

.stats-band .container {
  display: flex;
  justify-content: center;
}

.stats-band-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  width: 100%;
  max-width: 980px;
  min-height: 114px;
  padding: 1.6rem 0;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  text-align: center;
}

.stats-number,
.stats-label {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  text-transform: none;
  color: var(--sky);
}

.stats-number {
  font-size: clamp(2.1rem, 3vw, 3rem);
  letter-spacing: 0.01em;
}

.stats-label {
  margin-top: 0.15rem;
  font-size: clamp(1.05rem, 1.5vw, 1.6rem);
}

.stats-divider {
  width: 2px;
  height: 66px;
  background: var(--sky);
  opacity: 0.9;
  justify-self: center;
}



/* ==================================== */
/* PROJECTS / OTHER SECTIONS           */
/* Shared cards for internal pages     */
/* ==================================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.project-card,
.support-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.project-image,
.support-card-image {
  overflow: hidden;
  background: #f1eff0;
}

.project-image,
.support-card-image {
  aspect-ratio: 16 / 11;
}

.project-image img,
.support-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info,
.support-card-copy {
  padding: 1.2rem 1.2rem 1.3rem;
}

.benefits-grid,
.values-grid {
  display: grid;
  gap: 1.25rem;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-visual,
.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 2rem;
}

.about-visual img,
.logo-panel img {
  width: min(100%, 280px);
  height: auto;
}



/* ==================================== */
/* SERVICES PAGE                       */
/* Dedicated internal services page    */
/* ==================================== */

.services-list,
.work-grid {
  display: grid;
  gap: 1.5rem;
}

.service-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.service-meta,
.project-notes {
  padding: 1rem;
  border: var(--border-soft);
  border-radius: 18px;
}

.service-meta {
  background: linear-gradient(180deg, rgba(175, 222, 249, 0.18), rgba(255, 255, 255, 0.5));
}

.project-notes {
  background: linear-gradient(180deg, rgba(255, 232, 151, 0.2), rgba(255, 255, 255, 0.48));
}



/* ==================================== */
/* RESTAURANT WORK PAGE                */
/* Larger split project panels         */
/* ==================================== */

.project-panel {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  padding: 1.5rem;
  border: var(--border-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.project-panel .project-image {
  min-height: 340px;
  border-radius: 18px;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(47, 55, 58, 0.1);
  border-radius: 999px;
  background: rgba(175, 222, 249, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
}

.supporting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}



/* ==================================== */
/* CONTACT                             */
/* Form layout and field styles        */
/* ==================================== */

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(47, 55, 58, 0.16);
  border-radius: var(--radius-small);
  background: #fff;
  color: var(--charcoal);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--rouge);
  box-shadow: 0 0 0 4px rgba(225, 46, 53, 0.1);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  padding-top: 0.25rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.96rem;
}

.checkbox-item input {
  width: auto;
  margin: 0;
}

.note {
  font-size: 0.92rem;
  opacity: 0.85;
}



/* ==================================== */
/* FOOTER                              */
/* Footer layout and link styling      */
/* ==================================== */

.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--charcoal);
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.footer-brand {
  justify-self: start;
}

.footer-links {
  justify-self: center;
}

.footer-contact {
  justify-self: end;
  align-self: start;
  text-align: right;
}

.footer-contact h3,
.footer-contact p,
.footer-contact a {
  display: block;
  text-align: right;
}

.footer-brand img {
  width: 76px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-contact p,
.footer-brand p {
  margin: 0 0 0.55rem;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(251, 249, 250, 0.92);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sunglow);
}



.footer-nav-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  column-gap: 2.5rem;
  row-gap: 0.45rem;
  align-items: start;
}

/* tighter spacing in middle footer links */
.footer-nav-two-col li {
  margin-bottom: 0.05rem;
}

.footer-links h3 {
  text-align: center;
}

.footer-nav-two-col li:nth-child(even) {
  text-align: right;
}

.footer-nav-two-col li:nth-child(even) a {
  display: block;
  text-align: right;
}

.footer-brand strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-contact {
  justify-self: end;
  align-self: start;
  text-align: right;
}

.footer-contact h3,
.footer-contact p,
.footer-contact a {
  display: block;
  text-align: right;
}




/* ==================================== */
/* REVEAL                              */
/* Generic reveal-on-scroll utility    */
/* ==================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================== */
/* CONTACT PAGE                        */
/* Contact page heading and form       */
/* ==================================== */

.contact-page {
  background:
    linear-gradient(rgba(251, 249, 250, 0.28), rgba(251, 249, 250, 0.38)),
    url("assets/images/Web-Background.jpg") center center / cover no-repeat fixed;
}

.contact-section {
  padding: 3rem 0 5rem;
}

.contact-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-page .pricing-heading {
  margin-bottom: 2.5rem;
}

.contact-page .pricing-heading h1 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  text-align: center;
  text-transform: none;
}

.contact-page .pricing-heading p {
  max-width: 78ch;
  margin: 0 auto;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}


/* ==================================== */
/* CONTACT FORM CARD                   */
/* Form styled like homepage cards     */
/* ==================================== */

.contact-card-form {
  position: relative;
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #56646d 0%, #31393d 52%, #14191c 100%);
  box-shadow: 0 16px 40px rgba(47, 55, 58, 0.18);
}

.contact-card-form::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 4px solid var(--sky);
  border-radius: 24px;
  pointer-events: none;
}

.contact-card-inner {
  position: relative;
  z-index: 2;
  padding: 2.2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-field {
  width: 100%;
}

.contact-field-message {
  grid-column: 1 / -1;
}

.contact-card-form input,
.contact-card-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 2px solid rgba(175, 222, 249, 0.38);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.contact-card-form input::placeholder,
.contact-card-form textarea::placeholder {
  color: rgba(251, 249, 250, 0.78);
}

.contact-card-form input:focus,
.contact-card-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(175, 222, 249, 0.14);
}

.contact-card-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(251, 249, 250, 0.82);
}

.contact-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}


/* ==================================== */
/* CONTACT PAGE RESPONSIVE             */
/* Tablet and mobile contact layout    */
/* ==================================== */

@media (max-width: 860px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-message {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .contact-section {
    padding: 2rem 0 3rem;
  }

  .contact-card-inner {
    padding: 1.4rem;
  }

  .contact-card-form textarea {
    min-height: 180px;
  }
}




/* ==================================== */
/* RESPONSIVE                          */
/* Tablet and mobile adjustments       */
/* ==================================== */

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .values-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================== */
/* CONTACT CARD ANIMATION              */
/* Match homepage pricing card reveal  */
/* ==================================== */

.contact-card-form {
  opacity: 0;
  transform: scale(0.96);
}

.contact-card-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #56646d 0%, #31393d 52%, #14191c 100%);
  opacity: 0;
  z-index: 1;
}

.contact-card-form::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 4px solid var(--sky);
  border-radius: 24px;
  pointer-events: none;
  z-index: 3;
  clip-path: inset(0 100% 100% 0 round 24px);
}

.contact-card-inner {
  position: relative;
  z-index: 2;
  opacity: 0;
}


/* ==================================== */
/* CONTACT FORM STATUS                 */
/* Success and error messages          */
/* ==================================== */

.form-status {
  margin: 0 auto 1.4rem;
  max-width: 900px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.form-status-success {
  background: rgba(175, 222, 249, 0.18);
  border: 2px solid rgba(175, 222, 249, 0.45);
  color: var(--charcoal);
}

.form-status-error {
  background: rgba(225, 46, 53, 0.12);
  border: 2px solid rgba(225, 46, 53, 0.35);
  color: var(--charcoal);
}
.contact-card-form.card-animate {
  opacity: 1;
  animation: cardSettlePop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s;
}

.contact-card-form.card-animate::before {
  animation: fadeCardFill 0.45s ease forwards;
  animation-delay: 0.06s;
}

.contact-card-form.card-animate::after {
  animation: drawCardFrame 0.42s ease forwards;
}

.contact-card-form.card-animate .contact-card-inner {
  animation: fadeCardFill 0.45s ease forwards;
  animation-delay: 0.2s;
}

@media (max-width: 980px) {
  .service-panel,
  .project-panel,
  .supporting-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .intro-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-split-title h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .intro-split-copy {
    max-width: none;
    justify-self: stretch;
    padding-top: 0;
  }

  .intro-split-copy p {
    max-width: 40ch;
    margin: 0 0 1.2rem 0;
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    line-height: 1.5;
    text-align: left;
  }

  .logo-gallery-strip,
  .logo-gallery-slide {
    min-height: 320px;
  }

  .logo-gallery-slide img {
    height: 320px;
  }
}



@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-right .btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: var(--border-soft);
    border-radius: 20px;
    background: rgba(251, 249, 250, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .nav-links li a:hover {
    background: rgba(175, 222, 249, 0.18);
  }

  .hero,
  .brand-band,
  .band {
    background-attachment: scroll !important;
  }

  .site-flow-background {
    background-attachment: scroll;
  }
}



@media (max-width: 680px) {
  .section {
    padding: 4.25rem 0;
  }

  .stats-band {
    padding: 1.5rem 0 3rem;
  }

  .stats-band-inner {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.4rem 0;
  }

  .stats-divider {
    width: 72px;
    height: 2px;
  }

  .stats-number {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .stats-label {
    font-size: clamp(1rem, 5vw, 1.35rem);
  }

  .logo-marquee-fade::before,
  .logo-marquee-fade::after {
    width: 42px;
  }

  .logo-marquee-group {
    gap: 2rem;
    padding-right: 2rem;
  }

  .logo-marquee-row-top .logo-marquee-group img {
    height: 46px;
  }

  .logo-marquee-row-bottom .logo-marquee-group img {
    height: 64px;
  }

  .services-grid,
  .benefits-grid,
  .values-grid,
  .projects-grid,
  .supporting-grid,
  .footer-grid,
  .form-row,
  .checkbox-group,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-band,
  .band {
    min-height: 110px;
  }

  .logo-text {
    display: none;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .project-panel .project-image {
    min-height: 240px;
  }

  .logo-gallery-strip,
  .logo-gallery-slide {
    min-height: 240px;
  }

  .logo-gallery-slide img {
    height: 240px;
  }

  .services-title-custom {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .illustration-gallery-strip,
  .illustration-gallery-strip .logo-gallery-slide {
    min-height: 300px;
  }

  .illustration-gallery-strip .logo-gallery-slide img {
    height: 300px;
  }
}