:root {
  --bg: #f7f3ec;
  --bg-soft: #fcfaf7;
  --panel: rgba(255,255,255,0.92);
  --white: #ffffff;
  --navy: #10273f;
  --navy-2: #183b5d;
  --ink: #1e2b36;
  --text: #5c6975;
  --muted: #7e8993;
  --terracotta: #cf6b49;
  --terracotta-dark: #b95636;
  --sage: #7f9371;
  --sage-dark: #667857;
  --gold: #b4955f;
  --line: rgba(16,39,63,0.10);
  --line-light: rgba(255,255,255,0.16);
  --shadow-sm: 0 12px 30px rgba(16,39,63,0.08);
  --shadow-md: 0 24px 60px rgba(16,39,63,0.14);
  --shadow-lg: 0 38px 100px rgba(16,39,63,0.22);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 36px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% 0%, rgba(127,147,113,0.12), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(207,107,73,0.08), transparent 20%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(252,250,247,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,39,63,0.08);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.navbar-brand strong {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.navbar-brand span {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-dark);
}

.nav-link {
  color: var(--navy);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus,
.navbar .current-menu-item .nav-link,
.navbar .current_page_item .nav-link {
  color: var(--terracotta);
}

.btn-brand,
.btn-outline-brand,
.btn-light-brand {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-brand {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 18px 36px rgba(207,107,73,0.25);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16,39,63,0.12);
  color: var(--navy);
}

.btn-outline-brand:hover {
  color: var(--navy);
  background: #fff;
}

.btn-light-brand {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}

.btn-light-brand:hover {
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.section-pad {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(127,147,113,0.22);
  color: var(--navy-2);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(127,147,113,0.14);
}

.eyebrow-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(16,39,63,0.08), transparent 18%),
    radial-gradient(circle at 8% 88%, rgba(180,149,95,0.12), transparent 18%),
    linear-gradient(180deg, #fdfaf5 0%, #f1e9dd 100%);
}

.hero-copy-wrap {
  padding-top: 0.35rem;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(4.5rem, 6vw, 3rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--navy);
  margin: 1.1rem 0 1.4rem;
}

.hero-title .accent-1 {
  color: var(--terracotta);
}

.hero-title .accent-2 {
  color: var(--sage-dark);
}

.hero-copy {
  max-width: 640px;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  list-style: none;
  padding: 20px 0 0 0;
  margin: 0 0 2rem;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-image-card,
.service-card,
.feature-panel,
.article-card,
.contact-panel,
.form-panel,
.about-panel,
.proof-strip,
.case-card,
.case-card-empty,
.page-content-wrap,
.content-single {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-image-card {
  position: relative;
  min-height: 800px;
  margin: 10% 0 0 0;
  background-image:
    linear-gradient(180deg, rgba(9,23,38,0.08), rgba(9,23,38,0.72)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80');
	/*url('https://geoffrey.com.au/wp-content/uploads/2026/05/geoffrey-digital-web-services.webp');*/
	
  background-size: cover;
  background-position: 30% center;
  border: 8px #fff solid;
  box-shadow: var(--shadow-lg);
}

.hero-note {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.glass-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.15);
}

.mini-card {
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(16,39,63,0.08);
  box-shadow: var(--shadow-md);
}

.mini-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.3;
  font-size: 1rem;
}

.hero-image-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.hero-image-content h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero-image-content p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16,39,63,0.08);
  box-shadow: var(--shadow-sm);
}

.proof-item {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(16,39,63,0.08);
}

.proof-item:last-child {
  border-right: none;
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h1,
.section-heading h2,
.about-copy h2,
.inner-page-title {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 1rem 0;
}

.section-heading p {
  color: var(--text);
  font-size: 1.04rem;
  margin-bottom: 0;
}

.service-card,
.article-card,
.case-card,
.page-content-wrap,
.content-single {
  height: 100%;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.service-image,
.article-image,
.case-card-image,
.case-card-placeholder {
  height: 235px;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.service-image-1 {
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80');
}

.service-image-2 {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80');
}

.service-image-3 {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
}

.case-card-placeholder {
  background:
    linear-gradient(135deg, rgba(127,147,113,0.25), rgba(207,107,73,0.25)),
    linear-gradient(180deg, #f8f2e7 0%, #e9ddd0 100%);
}

.service-body,
.article-body,
.case-card-body {
  padding: 1.75rem;
}

.service-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service-body h3,
.article-body h3,
.article-body h2,
.case-card-title {
  color: var(--navy);
  font-size: 1.38rem;
  margin-bottom: 0.75rem;
}

.service-body p,
.article-body p,
.case-card-body p,
.about-copy p,
.content-styled,
.content-styled p {
  color: var(--text);
}

.feature-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(180,149,95,0.18), transparent 18%),
    linear-gradient(135deg, #0b1827 0%, #112a44 52%, #647857 100%);
  color: #fff;
}

.feature-panel {
  height: 100%;
  min-height: 280px;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,23,38,0.10), rgba(9,23,38,0.76));
}

.feature-panel-1 {
  background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80');
}

.feature-panel-2 {
  background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80');
}

.feature-panel-3 {
  background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1400&q=80');
}

.feature-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.about-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,241,231,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.about-copy {
  padding: 3rem;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--sage));
  box-shadow: 0 0 0 5px rgba(127,147,113,0.10);
}

.about-image {
  min-height: 100%;
  background-image:
    linear-gradient(180deg, rgba(9,23,38,0.08), rgba(9,23,38,0.28)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
}

.article-section {
  background: linear-gradient(180deg, #fbf7f0 0%, #f1e7d9 100%);
}

.contact-panel {
  height: 100%;
  padding: 2.3rem;
  background:
    radial-gradient(circle at top right, rgba(180,149,95,0.18), transparent 20%),
    linear-gradient(135deg, #10273f 0%, #18385b 55%, #687c59 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.contact-panel h2,
.contact-panel h3 {
  color: #fff;
}

.contact-panel p {
  color: rgba(255,255,255,0.82);
}

.contact-box {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-box strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
}

.contact-box span {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
}

.form-panel {
  height: 100%;
  padding: 2rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.form-control,
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea {
  min-height: 56px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(16,39,63,0.12);
  padding: 0.95rem 1rem;
}

.form-control:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 0.25rem rgba(127,147,113,0.14);
  outline: none;
}

textarea.form-control,
.wpcf7 textarea {
  min-height: 150px;
}

.wpcf7 input[type="submit"] {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 18px 36px rgba(207,107,73,0.25);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
}

.site-footer {
  padding: 3.5rem 0;
  background: #0a1624;
  color: rgba(255,255,255,0.70);
}

.site-footer h4,
.site-footer h5 {
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255,255,255,0.70);
}

.site-footer a:hover {
  color: #fff;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 12px;
  background: rgba(10,22,36,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-bar small {
  display: block;
  color: rgba(255,255,255,0.66);
  text-align: center;
  font-size: 0.78rem;
  margin-top: 6px;
}

.content-styled {
  font-size: 1.06rem;
}

.content-styled h2,
.content-styled h3,
.content-styled h4 {
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-styled ul,
.content-styled ol {
  padding-left: 1.25rem;
}

.case-card-empty,
.page-content-wrap,
.content-single {
  padding: 2rem;
}

.page-header-simple {
  max-width: 840px;
}

.page-featured-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 4.2rem;
  }

  .hero-title,
  .section-heading h2,
  .about-copy h2,
  .section-heading h1,
  .inner-page-title {
    max-width: none;
  }

  .hero-image-card {
    min-height: 520px;
    margin-top: 0.5rem;
  }

  .hero-note {
    position: static;
    padding: 18px 18px 0;
    display: block;
  }

  .mini-card {
    margin-top: 12px;
    max-width: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: none;
    border-bottom: 1px solid rgba(16,39,63,0.08);
  }

  .proof-item:last-child {
    border-bottom: none;
  }

  .about-copy,
  .contact-panel,
  .form-panel,
  .page-content-wrap,
  .content-single {
    padding: 1.75rem;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}