* {
  box-sizing: border-box;
}

:root {
  --wild-green: #1BB82C;
  --wild-green-bright: #27BF36;
  --wild-green-light: #5DCC66;
  --wild-green-soft: #C0EAC2;

  --wild-orange: #EE5D21;
  --wild-orange-light: #F08942;
  --wild-yellow-orange: #FFB300;
  --wild-gold: #E3B04D;

  --wild-white: #FFFFFF;

  --black: #111111;
  --white: #ffffff;
  --page-bg: #fbfbf7;
  --soft-bg: #f5f7f0;
  --soft-green-bg: #f0fbf2;
  --border-soft: rgba(17, 17, 17, 0.08);
  --text-muted: #5f625c;
  --text-dark: #222222;

  --radius-lg: 34px;
  --radius-md: 26px;
  --radius-sm: 18px;

  --shadow-soft: 0 18px 44px rgba(17, 17, 17, 0.065);
  --shadow-hover: 0 26px 62px rgba(17, 17, 17, 0.11);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(27, 184, 44, 0.07),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(93, 204, 102, 0.08),
      transparent 30%
    ),
    var(--page-bg);

  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: relative;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  padding: 22px 0;

  background: rgba(251, 251, 247, 0.82);
  border-bottom: none;

  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: var(--black);
  text-decoration: none;

  transition: transform 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 68px;
  height: 68px;

  object-fit: contain;
  flex-shrink: 0;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-3deg) scale(1.04);
  filter: drop-shadow(
    0 10px 16px rgba(27, 184, 44, 0.18)
  );
}

.brand-name {
  color: var(--black);

  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;

  border: none;
  background: transparent;
  color: var(--black);

  padding: 10px 0;
  border-radius: 0;

  cursor: pointer;

  font-size: 14px;
  font-weight: 800;

  overflow: visible;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-link::before {
  display: none;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 2px;

  height: 3px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #118c20,
    var(--wild-green),
    var(--wild-green-bright),
    var(--wild-green-light)
  );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--wild-green);

  transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--wild-green);
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

main {
  padding: 68px 0 96px;
}

.page-section {
  display: none;

  animation: fadeIn 0.3s ease;
}

.active-section {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;

    transform: translateY(12px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 18px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;

  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    #118c20,
    var(--wild-green),
    var(--wild-green-bright),
    var(--wild-green-light)
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: var(--wild-green);

  -webkit-text-fill-color: transparent;
}

.eyebrow::before {
  content: "";

  width: 34px;
  height: 3px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #118c20,
    var(--wild-green),
    var(--wild-green-light)
  );

  box-shadow: none;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;

  margin-bottom: 24px;

  color: var(--black);

  font-size: clamp(42px, 7vw, 82px);

  line-height: 0.96;

  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 14px;

  color: var(--black);

  font-size: 26px;

  line-height: 1.08;

  letter-spacing: -0.04em;
}

p {
  color: var(--text-dark);

  font-size: 16px;

  line-height: 1.65;
}

.lead {
  max-width: 640px;

  color: var(--text-dark);

  font-size: 19px;
}


/* =========================================================
   WELCOME
   ========================================================= */

.hero-centred {
  min-height: calc(100vh - 150px);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 26px;

  padding: 22px 0 72px;

  text-align: center;
}

.hero-logo-wrap {
  display: grid;

  place-items: center;
}

#welcome .hero-logo {
  width: clamp(160px, 17vw, 250px);

  height: auto;

  object-fit: contain;

  filter: drop-shadow(
    0 18px 28px rgba(17, 17, 17, 0.08)
  );

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

#welcome .hero-logo:hover {
  transform: scale(1.035) rotate(1deg);

  filter: drop-shadow(
    0 26px 40px rgba(27, 184, 44, 0.18)
  );
}

#welcome .hero-copy {
  width: min(1080px, 100%);

  min-height: auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

#welcome .hero-copy h1 {
  max-width: 1080px;

  margin-left: auto;
  margin-right: auto;

  font-size: clamp(48px, 7.4vw, 96px);

  line-height: 0.94;

  text-align: center;
}

#welcome .lead {
  max-width: 820px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.hero-actions {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}

.primary-button,
.secondary-button {
  border: 1px solid var(--black);

  border-radius: 999px;

  padding: 15px 24px;

  cursor: pointer;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.primary-button {
  background: var(--black);

  color: var(--white);
}

.secondary-button {
  background: var(--white);

  color: var(--black);
}

.primary-button:hover {
  background: var(--wild-green);

  border-color: var(--wild-green);

  box-shadow:
    0 16px 34px rgba(27, 184, 44, 0.22);

  transform: translateY(-2px);
}

.secondary-button:hover {
  color: var(--wild-green);

  border-color: var(--wild-green);

  box-shadow:
    0 16px 34px rgba(27, 184, 44, 0.14);

  transform: translateY(-2px);
}


/* =========================================================
   SHARED LAYOUT
   ========================================================= */

.section-heading {
  max-width: 820px;

  margin-bottom: 42px;
}

.section-heading h1,
.contact-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.section-heading p {
  max-width: 660px;
}

.section-heading-centred {
  width: min(1040px, 100%);

  max-width: none;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-heading-centred h1 {
  max-width: 980px;

  margin-left: auto;
  margin-right: auto;
}

.section-heading-centred p {
  max-width: 780px;

  margin-left: auto;
  margin-right: auto;
}

.content-block {
  margin-top: 78px;

  padding-top: 70px;

  border-top:
    1px solid var(--border-soft);
}

.compact-heading {
  margin-bottom: 34px;
}


/* =========================================================
   ABOUT US
   ========================================================= */

.about-page {
  display: grid;

  gap: 42px;
}

.gallery-placeholder {
  width: min(980px, 100%);

  min-height: 460px;

  display: grid;

  place-items: center;

  justify-self: center;

  overflow: hidden;

  background: var(--soft-bg);

  border:
    1px solid var(--border-soft);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);
}

.gallery-image {
  width: 100%;

  height: 100%;

  min-height: 460px;

  object-fit: cover;

  display: block;

  transition:
    transform 0.45s ease;
}

.gallery-placeholder:hover .gallery-image {
  transform: scale(1.035);
}

.about-text {
  width: min(840px, 100%);

  justify-self: center;

  text-align: center;
}

.about-text-wide {
  width: min(880px, 100%);
}

.about-text h1 {
  margin-left: auto;
  margin-right: auto;

  font-size: clamp(38px, 5vw, 64px);
}

.about-text p {
  max-width: 720px;

  margin-left: auto;
  margin-right: auto;
}

.about-lead {
  margin-left: auto;
  margin-right: auto;
}

.about-quote {
  width: min(900px, 100%);

  justify-self: center;

  position: relative;

  overflow: hidden;

  padding: 38px;

  background:
    linear-gradient(
      135deg,
      rgba(192, 234, 194, 0.52),
      rgba(255, 255, 255, 0.95)
    ),
    var(--white);

  border:
    1px solid rgba(27, 184, 44, 0.14);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);

  text-align: center;
}

.about-quote::after {
  content: "";

  position: absolute;

  right: -40px;
  bottom: -60px;

  width: 170px;
  height: 170px;

  border-radius: 50%;

  background:
    rgba(192, 234, 194, 0.28);
}

.about-quote p {
  position: relative;

  z-index: 1;

  max-width: 720px;

  margin: 0 auto;

  color: var(--black);

  font-size: clamp(24px, 3vw, 38px);

  line-height: 1.18;

  letter-spacing: -0.04em;

  font-weight: 900;
}

.about-detail-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.about-detail-card,
.service-card,
.team-card,
.contact-form,
.contact-details {
  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid var(--border-soft);

  box-shadow:
    var(--shadow-soft);
}

.about-detail-card {
  position: relative;

  overflow: hidden;

  min-height: 330px;

  padding: 36px;

  border-radius: var(--radius-md);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-detail-card::after {
  content: "";

  position: absolute;

  right: -52px;
  bottom: -52px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background:
    rgba(192, 234, 194, 0.56);

  z-index: 0;

  transition:
    transform 0.25s ease;
}

.about-detail-card:nth-child(even)::after {
  background:
    rgba(93, 204, 102, 0.18);
}

.about-detail-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(27, 184, 44, 0.2);

  box-shadow:
    var(--shadow-hover);
}

.about-detail-card:hover::after {
  transform:
    scale(1.18);
}

.about-detail-card > * {
  position: relative;

  z-index: 1;
}

.about-detail-card h2 {
  max-width: 470px;

  margin-bottom: 16px;

  font-size: 30px;
}

.about-detail-card p:last-child {
  margin-bottom: 0;
}

.about-values {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.about-value {
  display: grid;

  place-items: center;

  min-height: 118px;

  padding: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(192, 234, 194, 0.68),
      rgba(255, 255, 255, 0.95)
    );

  border:
    1px solid rgba(27, 184, 44, 0.12);

  border-radius: var(--radius-md);

  text-align: center;

  box-shadow:
    0 14px 30px rgba(17, 17, 17, 0.045);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-value:nth-child(even) {
  background:
    linear-gradient(
      135deg,
      rgba(93, 204, 102, 0.22),
      rgba(255, 255, 255, 0.95)
    );
}

.about-value:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 20px 40px rgba(17, 17, 17, 0.08);
}

.about-value span {
  color: var(--black);

  font-size: 18px;

  font-weight: 900;

  letter-spacing: -0.03em;
}


/* =========================================================
   CARDS
   ========================================================= */

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;

  margin-top: 36px;
}

.service-card {
  position: relative;

  min-height: 245px;

  padding: 36px;

  overflow: hidden;

  border-radius: var(--radius-md);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card::after {
  content: "";

  position: absolute;

  right: -52px;
  bottom: -52px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background:
    rgba(192, 234, 194, 0.58);

  z-index: 0;

  transition:
    transform 0.25s ease;
}

.service-card:nth-child(even)::after {
  background:
    rgba(93, 204, 102, 0.18);
}

.service-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(27, 184, 44, 0.2);

  box-shadow:
    var(--shadow-hover);
}

.service-card:hover::after {
  transform:
    scale(1.18);
}

.service-card > * {
  position: relative;

  z-index: 1;
}

.service-label {
  display: inline-flex;

  align-items: center;

  margin-bottom: 22px;

  color: var(--wild-green);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.service-label::before {
  content: "";

  width: 26px;
  height: 3px;

  margin-right: 10px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #118c20,
      var(--wild-green),
      var(--wild-green-light)
    );
}

.service-card h2 {
  max-width: 430px;

  margin-bottom: 14px;

  font-size: 30px;
}

.service-card p {
  margin-bottom: 0;
}


/* =========================================================
   PANELS
   ========================================================= */

.opening-panel {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 42px;

  margin-top: 44px;

  padding: 40px;

  overflow: hidden;

  position: relative;

  background:
    radial-gradient(
      circle at top right,
      rgba(93, 204, 102, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(27, 184, 44, 0.25),
      transparent 34%
    ),
    var(--black);

  color: var(--white);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);
}

.opening-panel::after {
  content: "";

  position: absolute;

  right: -60px;
  bottom: -80px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, 0.16);
}

.opening-panel p,
.opening-panel .eyebrow {
  color: var(--white);
}

.opening-panel .eyebrow {
  background:
    linear-gradient(
      90deg,
      var(--wild-green-soft),
      var(--wild-green-light),
      var(--wild-green-bright)
    );

  background-clip: text;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.opening-panel .eyebrow::before {
  background:
    linear-gradient(
      90deg,
      var(--wild-green-soft),
      var(--wild-green-light),
      var(--wild-green-bright)
    );
}

.opening-panel h2 {
  margin-bottom: 0;

  color: var(--white);

  font-size: 38px;
}

.times-list {
  position: relative;

  z-index: 1;
}

.times-list p {
  display: flex;

  justify-content: space-between;

  gap: 24px;

  margin: 0;

  padding: 16px 0;

  color:
    rgba(255, 255, 255, 0.84);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.2);
}

.times-list p:last-child {
  border-bottom: none;
}

.times-list span {
  color: var(--white);

  font-weight: 900;
}

.light-panel {
  background:
    linear-gradient(
      135deg,
      rgba(192, 234, 194, 0.34),
      rgba(255, 255, 255, 0.92)
    ),
    var(--white);

  color: var(--black);

  border:
    1px solid var(--border-soft);
}

.light-panel::after {
  border-color:
    rgba(27, 184, 44, 0.16);
}

.light-panel h2,
.light-panel p,
.light-panel .eyebrow {
  color: var(--black);
}

.light-panel .eyebrow {
  background:
    linear-gradient(
      90deg,
      #118c20,
      var(--wild-green),
      var(--wild-green-bright),
      var(--wild-green-light)
    );

  background-clip: text;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.light-panel .times-list p {
  color: var(--text-dark);

  border-bottom:
    1px solid rgba(17, 17, 17, 0.08);
}

.light-panel .times-list span {
  color: var(--black);
}


/* =========================================================
   MEET THE TEAM
   ========================================================= */

.team-grid {
  display: grid;

  gap: 24px;
}

.team-card {
  display: grid;

  grid-template-columns:
    160px 1fr;

  gap: 30px;

  align-items: center;

  padding: 30px;

  border-radius:
    var(--radius-md);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.team-card:hover {
  transform:
    translateY(-3px);

  border-color:
    rgba(27, 184, 44, 0.2);

  box-shadow:
    var(--shadow-hover);
}


/* Placeholder image */

.portrait-placeholder {
  width: 200px;
  height: 200px;

  aspect-ratio: 1 / 1;

  display: grid;

  place-items: center;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at center,
      rgba(27, 184, 44, 0.22),
      transparent 58%
    ),
    linear-gradient(
      135deg,
      rgba(192, 234, 194, 0.55),
      rgba(255, 255, 255, 0.88)
    );

  transition:
    transform 0.25s ease;
}

.team-card:hover .portrait-placeholder {
  transform:
    rotate(-2deg) scale(1.03);
}

.portrait-placeholder span {
  color: var(--wild-green);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.team-card p {
  margin-bottom: 0;
}


/* Actual team photograph */

.team-photo-wrap {
  width: 200px;
  height: 200px;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at center,
      rgba(27, 184, 44, 0.16),
      transparent 58%
    ),
    linear-gradient(
      135deg,
      rgba(192, 234, 194, 0.55),
      rgba(255, 255, 255, 0.88)
    );

  box-shadow:
    0 14px 30px rgba(17, 17, 17, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.team-photo {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center top;
}

.team-card:hover .team-photo-wrap {
  transform:
    rotate(-2deg) scale(1.03);

  box-shadow:
    0 20px 40px rgba(17, 17, 17, 0.12);
}

.team-title {
  margin: -4px 0 12px;

  color: var(--wild-green);

  font-size: 14px;

  font-weight: 900;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* Two-column team grid on desktop */

@media (min-width: 901px) {

  #team .team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  #team .team-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  #team .portrait-placeholder {
    margin: 0 auto;
  }

  #team .team-card h2,
  #team .team-card p {
    text-align: center;
  }
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-page {
  width: min(1040px, 100%);

  margin: 0 auto;

  display: grid;

  justify-items: center;

  text-align: center;
}

.contact-logo {
  width: 110px;

  height: auto;

  margin-bottom: 24px;

  filter:
    drop-shadow(
      0 12px 20px rgba(17, 17, 17, 0.08)
    );
}

.contact-logo-centred {
  margin-left: auto;
  margin-right: auto;
}

.contact-heading {
  margin-bottom: 34px;
}

.contact-details {
  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid var(--border-soft);

  border-radius:
    var(--radius-md);

  box-shadow:
    var(--shadow-soft);
}

.contact-details-centred {
  width: min(760px, 100%);

  margin: 0 auto;
}

.contact-details p {
  display: flex;

  justify-content: space-between;

  gap: 24px;

  margin: 0;

  padding: 18px 22px;

  color: var(--text-dark);

  border-bottom:
    1px solid var(--border-soft);

  text-align: left;
}

.contact-details p:last-child {
  border-bottom: none;
}

.contact-details span {
  color: var(--black);

  font-weight: 900;
}

.contact-actions {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 18px;

  margin-top: 34px;
}

.secondary-link {
  color: var(--black);

  font-size: 15px;

  font-weight: 900;

  text-decoration: none;

  border-bottom:
    3px solid var(--wild-green);

  padding-bottom: 4px;

  transition:
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.secondary-link:hover {
  color: var(--wild-green);

  border-color:
    var(--wild-green-light);

  transform:
    translateY(-2px);
}


/* =========================================================
   CONTACT MODAL
   ========================================================= */

.modal-overlay {
  position: fixed;

  inset: 0;

  z-index: 999;

  display: none;

  align-items: center;

  justify-content: center;

  padding: 24px;

  background:
    rgba(17, 17, 17, 0.42);

  backdrop-filter: blur(8px);
}

.modal-overlay.modal-open {
  display: flex;
}

.modal-card {
  position: relative;

  width: min(620px, 100%);

  max-height:
    calc(100vh - 48px);

  overflow-y: auto;

  padding: 34px;

  background:
    var(--page-bg);

  border-radius:
    var(--radius-lg);

  box-shadow:
    0 30px 90px rgba(17, 17, 17, 0.28);

  animation:
    modalIn 0.25s ease;
}

@keyframes modalIn {

  from {
    opacity: 0;

    transform:
      translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 999px;

  background:
    var(--black);

  color:
    var(--white);

  cursor: pointer;

  font-size: 28px;

  line-height: 1;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.modal-close:hover {
  background:
    var(--wild-green);

  transform:
    rotate(6deg) scale(1.04);
}

.modal-heading {
  padding-right: 42px;

  margin-bottom: 24px;
}

.modal-heading h2 {
  margin-bottom: 12px;

  font-size:
    clamp(30px, 4vw, 44px);
}

.modal-heading p {
  max-width: 460px;
}

.contact-form {
  padding: 36px;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid var(--border-soft);

  border-radius:
    var(--radius-lg);

  box-shadow:
    var(--shadow-soft);
}

.contact-form-modal {
  padding: 0;

  background: transparent;

  border: none;

  border-radius: 0;

  box-shadow: none;
}

.contact-form label {
  display: block;

  margin-bottom: 18px;

  color: var(--black);

  font-size: 14px;

  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  margin-top: 8px;

  border:
    1px solid rgba(17, 17, 17, 0.12);

  border-radius:
    var(--radius-sm);

  background:
    var(--white);

  color:
    var(--black);

  padding: 15px;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form textarea {
  min-height: 160px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background:
    var(--white);

  border-color:
    var(--wild-green);

  box-shadow:
    0 0 0 4px rgba(27, 184, 44, 0.13);
}

.contact-form button {
  width: 100%;

  border:
    1px solid var(--black);

  border-radius:
    999px;

  background:
    var(--black);

  color:
    var(--white);

  padding:
    15px 20px;

  cursor: pointer;

  font-weight: 900;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form button:hover {
  background:
    var(--wild-green);

  border-color:
    var(--wild-green);

  box-shadow:
    0 16px 34px rgba(27, 184, 44, 0.22);

  transform:
    translateY(-2px);
}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 900px) {

  .site-header {
    align-items: flex-start;

    flex-direction: column;
  }

  .site-nav {
    width: 100%;

    overflow-x: auto;

    padding-bottom: 6px;
  }

  .nav-link {
    white-space: nowrap;
  }

  .opening-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-centred {
    min-height: auto;

    padding:
      34px 0 64px;
  }

  .gallery-placeholder,
  .gallery-image {
    min-height: 340px;
  }

  .about-detail-grid,
  .about-values,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-detail-card {
    min-height: auto;
  }

  .team-card {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 560px) {

  .site-shell {
    width:
      min(100% - 24px, 1180px);
  }

  .site-header {
    padding:
      16px 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 16px;
  }

  main {
    padding:
      36px 0 64px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .about-quote,
  .about-detail-card,
  .service-card,
  .team-card,
  .contact-form,
  .opening-panel {
    padding: 24px;

    border-radius: 22px;
  }

  .times-list p,
  .contact-details p {
    flex-direction: column;

    gap: 4px;
  }

  #welcome .hero-logo {
    width:
      min(260px, 76%);
  }

  .contact-logo {
    width: 90px;
  }

  .service-card h2,
  .about-detail-card h2 {
    font-size: 26px;
  }

  .opening-panel h2 {
    font-size: 30px;
  }

  #team .portrait-placeholder,
  #team .team-photo-wrap {
    width: 165px;
    height: 165px;
  }
}


/* =========================================================
   FINAL HEADER RESET
   Removes boxes, borders and white header bar
   ========================================================= */

.site-header {
  background:
    transparent !important;

  border:
    none !important;

  border-bottom:
    none !important;

  box-shadow:
    none !important;

  backdrop-filter:
    none !important;
}

.brand {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;

  outline:
    none !important;
}

.brand-logo {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;
}

.brand-name {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;
}

.site-nav {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;
}

.nav-link {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;

  outline:
    none !important;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus,
.nav-link:focus-visible {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;

  outline:
    none !important;
}


/* =========================================================
   CENTRE TEAM IMAGES AND TEXT
   ========================================================= */

#team .team-card {
  grid-template-columns:
    1fr !important;

  justify-items:
    center !important;

  text-align:
    center !important;
}

#team .team-photo-wrap,
#team .portrait-placeholder {
  margin:
    0 auto 22px auto !important;

  justify-self:
    center !important;

  align-self:
    center !important;
}

#team .team-card h2,
#team .team-card p {
  text-align:
    center !important;
}

#team .team-title {
  text-align:
    center !important;
}


/* =========================================================
   ABOUT US GALLERY SLIDER
   ========================================================= */

.about-gallery {
  width:
    min(100%, 900px);

  margin:
    0 auto 48px;
}

.gallery-slider {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.12);

  background:
    #f3f3f3;
}

.gallery-slide-image {
  display: block;

  width: 100%;

  height: 560px;

  object-fit: cover;

  transition:
    opacity 0.25s ease;
}

.gallery-arrow {
  position: absolute;

  top: 50%;

  transform:
    translateY(-50%);

  z-index: 2;

  width: 48px;
  height: 48px;

  border: none;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.9);

  color: #111;

  font-size: 24px;

  line-height: 1;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.15);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-arrow:hover {
  background: #ffffff;

  transform:
    translateY(-50%) scale(1.08);
}

.gallery-arrow-left {
  left: 18px;
}

.gallery-arrow-right {
  right: 18px;
}

.gallery-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 16px;
}

.gallery-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #c8c8c8;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.gallery-dot.active {
  background: #55bd62;

  transform:
    scale(1.25);
}


/* Gallery on smaller screens */

@media (max-width: 700px) {

  .gallery-slide-image {
    height: 400px;
  }

  .gallery-arrow {
    width: 42px;
    height: 42px;

    font-size: 20px;
  }

  .gallery-arrow-left {
    left: 12px;
  }

  .gallery-arrow-right {
    right: 12px;
  }
}