@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Spectral:wght@500;600;700&display=swap');


/* =========================================================
   ROOT COLOURS
========================================================= */

:root {
  --gm-ink: #1c2921;

  --gm-forest: #263a2c;
  --gm-forest-deep: #17241b;

  --gm-olive: #70745b;
  --gm-olive-dark: #5f654e;

  --gm-chalk: #f7f5ef;
  --gm-paper: #fffefa;
  --gm-stone: #ebe7dc;
  --gm-clay: #a66143;
  --gm-clay-light: #bc7a5d;

  --gm-muted: #526058;
  --gm-line: rgba(28, 41, 33, .15);
}


/* =========================================================
   BASE
========================================================= */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 116px; }

body { margin: 0; background: var(--gm-paper); color: var(--gm-ink); font-family: 'DM Sans', Arial, sans-serif; font-size: 18px; line-height: 1.75; }

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

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

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


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1, h2, h3 { color: var(--gm-ink); font-family: 'Spectral', Georgia, serif; font-style: normal; font-weight: 500; letter-spacing: -.025em; line-height: 1.08; }

h1 { font-size: clamp(2.9rem, 4.5vw, 4.8rem); }

h2 { font-size: clamp(2.3rem, 3.4vw, 3.6rem); }

h3 { font-size: 1.5rem; line-height: 1.2; }
/* ==========================================================
   G M PLASTERING & LIME RENDERING LOGO
   ========================================================== */

.gm-brand-logo {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;

  width: clamp(245px, 20vw, 320px);

  color: var(--gm-ink, #17241b);
  text-align: center;
  text-decoration: none;
}


/* Top decorative clay rule */

.gm-brand-logo-rule {
  display: block;

  width: 48px;
  height: 2px;

  margin-bottom: 9px;

  background: var(--gm-clay, #c9794e);

  transition: width .3s ease;
}


/* Both parts of the business name */

.gm-brand-logo-name,
.gm-brand-logo-service {
  display: block;

  color: var(--gm-ink, #17241b);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size: clamp(.92rem, 1.05vw, 1.08rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}


.gm-brand-logo-service {
  margin-top: 5px;
}


/* Bottom decorative line and dot */

.gm-brand-logo-bottom {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  width: 100%;
  max-width: 155px;

  margin-top: 9px;
}


.gm-brand-logo-line {
  display: block;
  flex: 1;

  height: 1px;

  background: rgba(23, 36, 27, .28);
}


.gm-brand-logo-dot {
  display: block;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--gm-clay, #c9794e);
}


/* Logo hover */

.gm-brand-logo:hover,
.gm-brand-logo:focus {
  color: var(--gm-ink, #17241b);
  text-decoration: none;
}


.gm-brand-logo:hover .gm-brand-logo-rule,
.gm-brand-logo:focus .gm-brand-logo-rule {
  width: 64px;
}


/* ==========================================================
   LOGO: MEDIUM DESKTOP
   ========================================================== */

@media (max-width: 1199.98px) {

  .gm-brand-logo {
    width: 240px;
  }


  .gm-brand-logo-name,
  .gm-brand-logo-service {
    font-size: .9rem;
    letter-spacing: .09em;
  }

}


/* ==========================================================
   LOGO: TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-brand-logo {
    width: 225px;
  }


  .gm-brand-logo-rule {
    width: 42px;
    margin-bottom: 7px;
  }


  .gm-brand-logo-name,
  .gm-brand-logo-service {
    font-size: .84rem;
    letter-spacing: .08em;
  }


  .gm-brand-logo-service {
    margin-top: 4px;
  }


  .gm-brand-logo-bottom {
    max-width: 135px;
    margin-top: 7px;
  }

}


/* ==========================================================
   LOGO: MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .gm-brand-logo {
    width: 205px;
  }


  .gm-brand-logo-rule {
    width: 38px;
    height: 1px;
    margin-bottom: 6px;
  }


  .gm-brand-logo-name,
  .gm-brand-logo-service {
    font-size: .76rem;
    letter-spacing: .07em;
  }


  .gm-brand-logo-service {
    margin-top: 4px;
  }


  .gm-brand-logo-bottom {
    max-width: 122px;
    margin-top: 6px;
  }


  .gm-brand-logo-dot {
    width: 3px;
    height: 3px;
  }

}

.gm-brand-logo .gm-brand-logo-name,
.gm-brand-logo .gm-brand-logo-service {
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(.92rem, 1.05vw, 1.08rem);
  font-weight: 500 !important;
  line-height: 1.08;
  letter-spacing: .11em;
  color: var(--gm-ink, #17241b);
  text-transform: uppercase;
  font-synthesis: none;
}
/* ==========================================================
   LOGO: VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 389.98px) {

  .gm-brand-logo {
    width: 185px;
  }


  .gm-brand-logo-name,
  .gm-brand-logo-service {
    font-size: .69rem;
    letter-spacing: .055em;
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-brand-logo-rule {
    transition: none;
  }

}
/* ==========================================================
   NAVIGATION SOCIAL LINKS
   ========================================================== */

.gm-nav-social {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-left: 4px;
}


.gm-nav .gm-nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  padding: 0;

  border:
    1px solid rgba(23, 36, 28, .18);

  border-radius: 50%;

  color: var(--gm-ink, #17241c);

  font-size: .9rem;
  line-height: 1;

  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gm-nav .gm-nav-social-link::after {
  display: none;
}


.gm-nav .gm-nav-social-link:hover,
.gm-nav .gm-nav-social-link:focus {
  color: #fff;

  background:
    var(--gm-clay, #c9794e);

  border-color:
    var(--gm-clay, #c9794e);

  transform: translateY(-2px);
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 991.98px) {

  .gm-nav-social {
    justify-content: center;

    width: 100%;

    margin:
      12px 0 4px;
  }


  .gm-nav .gm-nav-social-link {
    width: 40px;
    height: 40px;

    font-size: 1rem;
  }

}

/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.gm-container { width: min(100%, 1540px); padding-left: clamp(22px, 4.8vw, 78px); padding-right: clamp(22px, 4.8vw, 78px); margin-inline: auto; }

.gm-copy-container { max-width: 900px; }

.gm-section { padding: clamp(86px, 9vw, 138px) 0; }

.gm-section-heading { max-width: 780px; margin-bottom: 58px; }

.gm-section-heading p { max-width: 670px; margin: 22px auto 0; color: var(--gm-muted); }


/* =========================================================
   NAVIGATION
========================================================= */

.gm-navbar { min-height: 116px; padding: 0; background: rgba(255,254,250,.98); border-bottom: 1px solid rgba(28,41,33,.12); box-shadow: none; }

.gm-navbar .gm-container { min-height: 116px; }

.gm-wordmark { display: inline-flex; flex-direction: column; width: max-content; color: var(--gm-ink); line-height: 1; }

.gm-wordmark strong { font-family: 'Spectral', Georgia, serif; font-size: 1.65rem; font-weight: 600; letter-spacing: -.015em; }

.gm-wordmark small { margin-top: 10px; color: var(--gm-clay); font-size: .62rem; font-weight: 600; letter-spacing: .32em; }

.gm-nav { display: flex; align-items: center; gap: clamp(24px, 2.7vw, 46px); margin-left: auto; }

.gm-nav > a:not(.gm-btn) { position: relative; color: #26342c; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.gm-nav > a:not(.gm-btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gm-clay); transition: right .25s ease; }

.gm-nav > a:not(.gm-btn):hover::after,
.gm-nav > a.active::after { right: 0; }

.gm-nav > a.active { color: var(--gm-clay); }

.gm-nav-cta { min-width: 210px; justify-content: center; margin-left: 10px; padding: 17px 24px; }

.nav-toggle,
.nav-toggle-label { display: none; }


/* =========================================================
   BUTTONS
========================================================= */

.gm-btn { min-width: 205px; padding: 18px 30px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; border: 1px solid rgba(0,0,0,.12); border-radius: 3px; font-size: .72rem; font-weight: 600; line-height: 1.2; letter-spacing: .13em; text-transform: uppercase; box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 18px rgba(25,30,24,.08); transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease; }

.gm-btn:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 12px 24px rgba(25,30,24,.12); }

.gm-btn-dark { background: var(--gm-olive); border-color: var(--gm-olive-dark); color: #fff; }

.gm-btn-dark:hover { background: #837660; border-color: #837660; color: #fff; }

.gm-btn-light { background: #f7f3ea; border-color: #d8d0bf; color: var(--gm-ink); }

.gm-btn-light:hover { background: #fdfbf6; border-color: #b79b79; color: var(--gm-ink); }

.gm-btn-clay { background: var(--gm-clay); border-color: var(--gm-clay); color: #fff; }

.gm-btn-clay:hover { background: var(--gm-clay-light); border-color: var(--gm-clay-light); color: #fff; }

.gm-btn-outline { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }

.gm-btn-outline:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }

.btn-arrow { font-size: 1rem; line-height: 1; transition: transform .25s ease; }

.gm-btn:hover .btn-arrow { transform: translateX(3px); }


/* =========================================================
   HERO
========================================================= */
/* =========================================================
   G M PLASTERING HERO CAROUSEL
========================================================= */

:root {
  --gm-hero-forest: #17241b;
  --gm-hero-clay: #a66143;
  --gm-hero-white: #ffffff;
}
/* ==========================================================
   HOME HERO CAROUSEL
   Bright photography with fixed warm content panel
   ========================================================== */

.gm-hero {
  position: relative;
  isolation: isolate;

  height: clamp(620px, 42vw, 720px);
  min-height: 620px;

  overflow: hidden;

  background:
    var(--gm-paper, #f6f1e8);

  color:
    var(--gm-ink, #17241b);
}
/* ==========================================================
   HERO PHOTOGRAPHS
   Smooth fade without image movement
   ========================================================== */

.gm-hero-slides,
.gm-hero-slide {
  position: absolute;
  inset: 0;
}


.gm-hero-slides {
  z-index: 0;

  background:
    var(--gm-paper, #f6f1e8);
}


.gm-hero-slide {
  margin: 0;

  visibility: hidden;
  opacity: 0;

  /* Prevents fine architectural details from quivering */

  transform: none;

  transition:
    opacity 1.15s
    cubic-bezier(.4, 0, .2, 1),
    visibility 1.15s
    cubic-bezier(.4, 0, .2, 1);

  will-change: opacity;
}


.gm-hero-slide.is-active {
  visibility: visible;
  opacity: 1;

  transform: none;
}


.gm-hero-slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  /* Keep the image completely still */

  transform: translateZ(0);
  backface-visibility: hidden;

  filter:
    saturate(1.03)
    contrast(1.01)
    brightness(1.05);
}
@media (min-width: 1600px) {

  .gm-hero {
    height: 680px;
    min-height: 680px;
  }

}

/* Individual photograph positioning */

.gm-hero-slide:nth-child(1) img {
  object-position: center 48%;
}


.gm-hero-slide:nth-child(2) img {
  object-position: center 48%;
}


.gm-hero-slide:nth-child(3) img {
  object-position: center 54%;
}


/* ==========================================================
   FIRST IMAGE GRACEFUL FADE
   ========================================================== */

.gm-hero-slide:first-child.is-active {
  animation:
    gmHeroFirstFade 1.5s
    cubic-bezier(.4, 0, .2, 1)
    both;
}


@keyframes gmHeroFirstFade {

  from {
    visibility: visible;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }

}

/* ==========================================================
   LIGHT IMAGE TREATMENT
   No dark overlay
   ========================================================== */

.gm-hero-light {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 242, .1) 0%,
      transparent 32%
    ),
    linear-gradient(
      0deg,
      rgba(23, 36, 27, .08) 0%,
      transparent 35%
    );

  pointer-events: none;
}


/* ==========================================================
   HERO CONTAINER
   ========================================================== */

.gm-hero-container {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  width: min(100%, 1700px);
  height: 100%;

  margin-inline: auto;

  padding:
    clamp(44px, 5vw, 82px)
    clamp(24px, 5.5vw, 94px);
}


/* ==========================================================
   FIXED CONTENT PANEL
   ========================================================== */

.gm-hero-panel {
  width:
    min(100%, 610px);

  padding:
    clamp(44px, 4.6vw, 72px)
    clamp(34px, 4.6vw, 68px)
    clamp(36px, 4vw, 58px);

  background:
    rgba(252, 248, 240, .96);

  border:
    1px solid rgba(54, 58, 47, .1);

  box-shadow:
    0 28px 70px rgba(27, 32, 25, .14);

  backdrop-filter:
    blur(7px);

  animation:
    gmHeroPanelEntrance .9s
    .3s
    cubic-bezier(.22, .61, .36, 1)
    both;
}


@keyframes gmHeroPanelEntrance {

  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

}


/* Clay introductory rule */

.gm-hero-rule {
  width: 66px;
  height: 2px;

  margin-bottom: 30px;

  background:
    var(--gm-clay, #c9794e);
}


/* ==========================================================
   HERO TYPOGRAPHY
   ========================================================== */

.gm-hero h1 {
  max-width: 520px;

  margin:
    0 0 27px;

  color:
    var(--gm-ink, #17241b);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(3rem, 4.1vw, 4.7rem);

  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.04em;

  text-shadow: none;
}


.gm-hero-intro {
  max-width: 500px;

  margin: 0;

  color: #4b554e;

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size:
    clamp(1rem, 1.15vw, 1.12rem);

  font-weight: 400;
  line-height: 1.72;
}


/* ==========================================================
   HERO BUTTONS
   ========================================================== */

.gm-hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: 34px;
}


.gm-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  min-width: 202px;
  min-height: 56px;

  padding:
    15px 20px;

  border:
    1px solid transparent;

  border-radius: 0;

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: .7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;

  box-shadow: none;

  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gm-hero-btn span {
  font-size: .95rem;

  transition:
    transform .25s ease;
}


.gm-hero-btn:hover {
  transform:
    translateY(-2px);

  box-shadow: none;
}


.gm-hero-btn:hover span {
  transform:
    translateX(4px);
}


/* Primary button */

.gm-hero-btn-primary {
  background:
    var(--gm-clay, #c9794e);

  border-color:
    var(--gm-clay, #c9794e);

  color: #fff;
}


.gm-hero-btn-primary:hover,
.gm-hero-btn-primary:focus {
  background: #ad603c;
  border-color: #ad603c;
  color: #fff;
}


/* ==========================================================
   HERO SECONDARY BUTTON
   Request a quote
   ========================================================== */

.gm-hero-btn-secondary {
  background: transparent;

  border-color:
    rgba(79, 88, 71, .5);

  color:
    var(--gm-ink, #17241b);
}


.gm-hero-btn-secondary:hover,
.gm-hero-btn-secondary:focus {
  background: #e7dece;

  border-color: #747661;

  color:
    var(--gm-ink, #17241b);
}


.gm-hero-btn-secondary:hover span,
.gm-hero-btn-secondary:focus span {
  color: #626851;
}
/* ==========================================================
   CAROUSEL PROGRESS
   ========================================================== */

.gm-hero-progress {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(52px, 1fr));

  gap: 14px;

  width: min(100%, 320px);

  margin-top: 36px;
}


.gm-hero-progress-button {
  position: relative;

  height: 26px;

  padding: 0;

  overflow: hidden;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.gm-hero-progress-button::before,
.gm-hero-progress-button span {
  content: "";

  position: absolute;
  top: 12px;
  right: 0;
  left: 0;

  height: 2px;
}


.gm-hero-progress-button::before {
  background:
    rgba(23, 36, 27, .2);
}


.gm-hero-progress-button span {
  width: 0;

  background:
    var(--gm-clay, #c9794e);
}


.gm-hero-progress-button.is-active span {
  animation:
    gmHeroProgress 5s
    linear
    forwards;
}


.gm-hero-progress-button:focus-visible {
  outline:
    2px solid var(--gm-clay, #c9794e);

  outline-offset: 2px;
}


@keyframes gmHeroProgress {

  from {
    width: 0;
  }

  to {
    width: 100%;
  }

}


/* ==========================================================
   HERO: TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-hero {
    height: 720px;
    min-height: 680px;
  }


  .gm-hero-container {
    align-items: center;

    padding:
      50px
      38px;
  }


  .gm-hero-panel {
    width: min(100%, 560px);

    padding:
      48px
      42px
      38px;
  }


  .gm-hero h1 {
    font-size:
      clamp(2.8rem, 6vw, 4rem);
  }

}


/* ==========================================================
   HERO: MOBILE
   Photograph above, content panel below
   ========================================================== */

@media (max-width: 767.98px) {

  .gm-hero {
    display: grid;

    grid-template-rows:
      minmax(315px, 48vh)
      auto;

    height: auto;
    min-height: 0;
    max-height: none;

    overflow: hidden;

    background:
      #faf6ee;
  }


  .gm-hero-slides {
    position: relative;
    inset: auto;

    grid-row: 1;
  }


  .gm-hero-slide {
    position: absolute;
    inset: 0;
  }


  .gm-hero-slide img {
    object-position: center;

    filter:
      saturate(1.02)
      contrast(1.01)
      brightness(1.04);
  }


  .gm-hero-slide:nth-child(1) img {
    object-position: center 45%;
  }


  .gm-hero-slide:nth-child(2) img {
    object-position: center 48%;
  }


  .gm-hero-slide:nth-child(3) img {
    object-position: center 52%;
  }


  .gm-hero-light {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
 height: 48vh;
min-height: 315px;

    background:
      linear-gradient(
        0deg,
        rgba(23, 36, 27, .12) 0%,
        transparent 42%
      );
  }


  .gm-hero-container {
    position: relative;

    grid-row: 2;

    display: block;

    width: 100%;
    height: auto;

    padding: 0;
  }


  .gm-hero-panel {
    width: 100%;

    padding:
      40px
      22px
      28px;

    border: 0;

    background:
      #faf6ee;

    box-shadow: none;

    backdrop-filter: none;

    text-align: left;
  }


  .gm-hero-rule {
    width: 54px;

    margin-bottom: 23px;
  }


  .gm-hero h1 {
    max-width: 480px;

    margin:
      0 0 21px;

    font-size:
      clamp(2.45rem, 10.5vw, 3.3rem);

    line-height: 1.02;
  }


  .gm-hero-intro {
    max-width: 460px;

    font-size: .98rem;
    line-height: 1.68;
  }


  .gm-hero-actions {
    margin-top: 28px;
  }


  .gm-hero-progress {
    width: 100%;

    margin-top: 25px;
  }

}


/* ==========================================================
   HERO: SMALL MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .gm-hero {
    grid-template-rows:
      320px
      auto;
  }


  .gm-hero-light {
    height: 320px;
  }


  .gm-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }


  .gm-hero-btn {
    width: 100%;
    min-width: 0;
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-hero-slide,
  .gm-hero-panel,
  .gm-hero-btn,
  .gm-hero-btn span {
    transition: none;
    animation: none;
  }


  .gm-hero-progress-button.is-active span {
    width: 100%;

    animation: none;
  }

}
/* =========================================================
   INTRO / ABOUT
========================================================= */
/* ==========================================================
   G M PLASTERING
   ABOUT / CRAFT INTRO
   ========================================================== */

.gm-craft-intro {
  --gm-craft-paper: #f5f0e8;
  --gm-craft-cream: #fbf8f2;
  --gm-craft-ink: #17241c;
  --gm-craft-muted: #5f625c;
  --gm-craft-olive: #566048;
  --gm-craft-clay: #b86f4b;
  --gm-craft-line: rgba(23, 36, 28, .18);

  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 136px) 0;
  background: linear-gradient(
    rgba(249, 246, 239, .96),
    rgba(249, 246, 239, .96)
  );
}


/* ----------------------------------------------------------
   IMAGE
   ---------------------------------------------------------- */

.gm-craft-visual {
  position: relative;
  width: min(100%, 690px);
  margin-inline: auto;
  padding:
    clamp(20px, 3vw, 40px)
    clamp(16px, 2.5vw, 34px)
    clamp(24px, 3vw, 44px)
    clamp(28px, 4vw, 58px);
}


.gm-craft-texture {
  position: absolute;
  inset: 8% 0 4% 0;

  background: linear-gradient(
    rgba(233, 225, 210, .78),
    rgba(233, 225, 210, .78)
  );

  border: 1px solid rgba(184, 111, 75, .08);
}


.gm-craft-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;

  background: #d7cec0;
  box-shadow:
    0 30px 70px rgba(23, 36, 28, .12);
}


.gm-craft-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(13, 20, 15, 0) 58%,
      rgba(13, 20, 15, .12) 100%
    );
}


.gm-craft-photo img {
  display: block;
  width: 100%;
  height: clamp(490px, 52vw, 680px);

  object-fit: cover;
  object-position: center;

  filter:
    saturate(.88)
    contrast(1.02);

  transition:
    transform .7s cubic-bezier(.2, .7, .2, 1),
    filter .7s ease;
}


.gm-craft-photo:hover img {
  transform: scale(1.018);
  filter:
    saturate(.96)
    contrast(1.025);
}


/* ----------------------------------------------------------
   COPY
   ---------------------------------------------------------- */

.gm-craft-copy {
  position: relative;
  max-width: 720px;

  padding:
    clamp(18px, 2vw, 30px)
    clamp(0px, 2vw, 24px)
    clamp(104px, 9vw, 140px)
    clamp(34px, 4vw, 58px);
}


/* vertical heritage rule */

.gm-craft-copy::before {
  content: "";
  position: absolute;

  left: 0;
  top: 8px;
  bottom: 82px;

  width: 1px;

  background: var(--gm-craft-olive);
  opacity: .9;
}


/* ----------------------------------------------------------
   EYEBROW
   ---------------------------------------------------------- */

.gm-craft-eyebrow {
  margin: 0 0 20px;

  color: var(--gm-craft-olive);

  font-size: .77rem;
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: .24em;
  text-transform: uppercase;
}


.gm-craft-small-rule {
  width: 54px;
  height: 1px;

  margin: 0 0 30px;

  background: var(--gm-craft-olive);
}


/* ----------------------------------------------------------
   HEADLINE
   ---------------------------------------------------------- */

.gm-craft-copy h2 {
  max-width: 710px;

  margin: 0 0 28px;

  color: var(--gm-craft-ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(2.25rem, 3.7vw, 4rem);

  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.028em;
}


.gm-craft-copy h2 span {
  display: inline;
}


/* ----------------------------------------------------------
   BODY COPY
   ---------------------------------------------------------- */

.gm-craft-body {
  max-width: 660px;

  margin: 0 0 28px;

  color: var(--gm-craft-muted);

  font-size: 1rem;
  line-height: 1.9;
}


/* ----------------------------------------------------------
   SIGNATURE
   ---------------------------------------------------------- */

.gm-craft-signature {
	margin: 26px 0 2px;
	color: #949A78;
	font-family: "Segoe Script",
    "Bradley Hand",
    "Brush Script MT",
    cursive;
	font-size: clamp(2rem, 3vw, 2rem);
	font-weight: 400;
	line-height: 1;
	transform: rotate(-3deg);
	transform-origin: left center;
}


.gm-craft-signature-rule {
  width: 42px;
  height: 2px;

  margin: 13px 0 34px 102px;

  background: var(--gm-craft-olive);

  transform: rotate(-2deg);
}


/* ----------------------------------------------------------
   BUTTON
   ---------------------------------------------------------- */

.gm-craft-actions {
  position: relative;
  z-index: 3;
}


.gm-craft-actions .gm-btn {
  min-width: 300px;

  padding:
    1rem
    1.6rem;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .16em;
  text-transform: uppercase;
}


/* ----------------------------------------------------------
   CRAFT SEAL
   ---------------------------------------------------------- */

.gm-craft-seal {
  position: absolute;

  right: -4px;
  bottom: 0;

  width: clamp(140px, 13vw, 190px);
  aspect-ratio: 1;

  opacity: .34;

  transform: rotate(-7deg);

  pointer-events: none;

  transition:
    opacity .4s ease,
    transform .4s ease;
}


.gm-craft-seal img {
  display: block;

  width: 100%;
  height: 100%;
}


/* subtle hover when the whole content area is engaged */

.gm-craft-copy:hover .gm-craft-seal {
  opacity: .44;
  transform: rotate(-4deg);
}


/* ----------------------------------------------------------
   LARGE DESKTOP
   ---------------------------------------------------------- */

@media (min-width: 1200px) {

  .gm-craft-intro .row {
    --mdb-gutter-x: 5rem;
  }

}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 991.98px) {

  .gm-craft-intro {
    padding:
      76px
      0
      94px;
  }


  .gm-craft-visual {
    width: min(100%, 720px);

    padding-left: 42px;
  }


  .gm-craft-photo img {
    height: min(720px, 86vw);
  }


  .gm-craft-copy {
    max-width: 760px;

    margin-inline: auto;

    padding:
      30px
      12px
      120px
      46px;
  }


  .gm-craft-copy::before {
    top: 18px;
    bottom: 90px;
  }


  .gm-craft-seal {
    right: 10px;
    bottom: 4px;

    width: 150px;
  }

}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 575.98px) {

  .gm-craft-intro {
    padding:
      56px
      0
      72px;
  }


  .gm-craft-visual {
    padding:
      20px
      8px
      24px
      24px;
  }


  .gm-craft-texture {
    inset: 5% 0 3% 0;
  }


  .gm-craft-photo img {
    height: 500px;
  }


  .gm-craft-copy {
    padding:
      12px
      0
      132px;
  }


  .gm-craft-copy::before {
    display: none;
  }


  .gm-craft-copy h2 {
    font-size:
      clamp(
        2.3rem,
        10.5vw,
        3.3rem
      );
  }


  .gm-craft-eyebrow {
    font-size: .67rem;
    letter-spacing: .18em;
  }


  .gm-craft-body {
    font-size: .95rem;
    line-height: 1.8;
  }


  .gm-craft-signature {
    font-size: 2.25rem;
  }


  .gm-craft-signature-rule {
    margin-left: 74px;
  }


  .gm-craft-actions .gm-btn {
    width: 100%;
    min-width: 0;
  }


  .gm-craft-seal {
    left: auto;
    right: 0;
    bottom: 0;

    width: 126px;

    opacity: .28;
  }

}


/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-craft-photo img,
  .gm-craft-seal {
    transition: none;
  }

}
/* ==========================================================
   G M PLASTERING
   SPECIALIST SERVICES SECTION
   ========================================================== */

.gm-services {
  --gm-services-cream: #f7f1e7;
  --gm-services-cream-deep: #eee6d9;
  --gm-services-ink: #17241c;
  --gm-services-muted: #68665f;
  --gm-services-clay: #c9794e;
  --gm-services-olive-light: #7d8269;
  --gm-services-olive-mid: #69705a;
  --gm-services-olive-dark: #565f4b;

  position: relative;
  overflow: hidden;

  padding:
    clamp(90px, 8vw, 135px) 0
    clamp(95px, 9vw, 145px);

  background:
    radial-gradient(
      circle at 88% 5%,
      rgba(255, 255, 255, .075),
      transparent 27%
    ),
    radial-gradient(
      circle at 5% 95%,
      rgba(24, 34, 26, .12),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      var(--gm-services-olive-light) 0%,
      var(--gm-services-olive-mid) 48%,
      var(--gm-services-olive-dark) 100%
    );

  color: var(--gm-services-cream);
}


/* ----------------------------------------------------------
   LARGE BACKGROUND G
   ---------------------------------------------------------- */

.gm-services::after {
  content: "G";

  position: absolute;
  z-index: 0;

  top: -70px;
  right: -30px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(250px, 25vw, 440px);
  font-weight: 400;
  line-height: .8;

  color: rgba(255, 255, 255, .04);

  pointer-events: none;
  user-select: none;
}


/* ----------------------------------------------------------
   SUBTLE TEXTURE
   ---------------------------------------------------------- */

.gm-services::before {
  content: "";

  position: absolute;
  z-index: 1;

  inset: 0;

  pointer-events: none;

  opacity: .12;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, .16) .5px,
      transparent .5px
    );

  background-size: 7px 7px;
}


/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */

.gm-services .gm-container {
  position: relative;
  z-index: 2;
}


/* ----------------------------------------------------------
   SECTION HEADING
   ---------------------------------------------------------- */

.gm-services-v2-heading {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(300px, .7fr);

  align-items: end;

  gap: clamp(48px, 8vw, 120px);

  margin-bottom: clamp(52px, 5vw, 72px);
  padding-bottom: clamp(38px, 4vw, 52px);

  border-bottom:
    1px solid rgba(255, 255, 255, .14);
}


/* ----------------------------------------------------------
   KICKER
   ---------------------------------------------------------- */

.gm-kicker {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 24px;

  color: #e1a884;

  font-size: .7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}


.gm-kicker::before {
  content: "";

  display: block;

  width: 36px;
  height: 1px;

  background: currentColor;
}


/* ----------------------------------------------------------
   MAIN HEADING
   ---------------------------------------------------------- */

.gm-services-v2-title h2 {
  max-width: 760px;

  margin: 0;

  color: #fff9ef;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
}


.gm-services-v2-title h2 span {
  display: block;

  color: rgba(255, 249, 239, .7);
}


/* ----------------------------------------------------------
   INTRO
   ---------------------------------------------------------- */

.gm-services-v2-intro {
  position: relative;

  padding: 8px 0 8px 30px;

  border-left:
    1px solid rgba(225, 168, 132, .6);
}


.gm-services-v2-intro::before {
  content: "";

  position: absolute;

  top: 8px;
  left: -3px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #e1a884;
}


.gm-services-v2-intro p {
  max-width: 480px;

  margin: 0;

  color: rgba(255, 249, 239, .82);

  font-size: 1rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   SPECIALISMS
   ---------------------------------------------------------- */

.gm-services-v2-specialisms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;

  margin-top: 22px;
}


.gm-services-v2-specialisms span {
  position: relative;

  padding-left: 13px;

  color: rgba(255, 249, 239, .58);

  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}


.gm-services-v2-specialisms span::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #e1a884;

  transform: translateY(-50%);
}


/* ----------------------------------------------------------
   SERVICE GRID
   ---------------------------------------------------------- */

.gm-service-grid {
  position: relative;
  z-index: 2;

  align-items: stretch;
}


.gm-service-grid > div {
  display: flex;
  align-items: stretch;
}


/* ----------------------------------------------------------
   SERVICE CARDS
   ---------------------------------------------------------- */

.gm-service-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;
  min-height: 420px;

  border:
    1px solid rgba(255, 255, 255, .16) !important;

  border-radius: 0;

  background:
    linear-gradient(
      145deg,
      #fbf7ef 0%,
      #f5eee3 58%,
      #eee6d9 100%
    );

  box-shadow:
    0 18px 42px rgba(27, 34, 25, .10);

  transition:
    transform .35s cubic-bezier(.2, .7, .2, 1),
    box-shadow .35s ease,
    background .35s ease;
}


.gm-service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 68px;
  height: 2px;

  background: var(--gm-services-clay);

  transform: translateX(-50%);

  transition:
    width .35s ease;
}


.gm-service-card:hover {
  transform: translateY(-6px);

  background:
    linear-gradient(
      145deg,
      #fffaf2 0%,
      #f6efe4 58%,
      #eee5d8 100%
    );

  box-shadow:
    0 26px 58px rgba(25, 32, 24, .18);
}


.gm-service-card:hover::before {
  width: 110px;
}


/* ----------------------------------------------------------
   CARD BODY
   ---------------------------------------------------------- */

.gm-service-card .card-body {
  position: relative;

  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;

  width: 100%;

  padding:
    clamp(32px, 3vw, 44px);

  text-align: center !important;
}


/* ----------------------------------------------------------
   SERVICE ICON
   ---------------------------------------------------------- */

.gm-service-v2-top {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin-bottom: 26px;
}


.gm-service-v2-icon {
  display: block;

  width: 120px !important;
  height: 120px !important;

  max-width: none;

  object-fit: contain;

  opacity: .9;

  transition:
    transform .35s ease,
    opacity .35s ease;
}


.gm-service-card:hover .gm-service-v2-icon {
  opacity: 1;

  transform: translateY(-3px);
}


/* ----------------------------------------------------------
   CARD HEADINGS
   ---------------------------------------------------------- */

.gm-service-card .card-title {
  width: 100%;

  margin: 0 0 16px;

  color: var(--gm-services-ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.35rem, 1.5vw, 1.65rem);

  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.015em;

  text-align: center;
}


/* ----------------------------------------------------------
   CARD COPY
   ---------------------------------------------------------- */

.gm-service-card .card-text {
  width: 100%;
  max-width: 340px;

  margin: 0 auto 28px;

  color: var(--gm-services-muted);

  font-size: .91rem;
  line-height: 1.72;

  text-align: center;
}


/* ----------------------------------------------------------
   CARD LINK
   ---------------------------------------------------------- */

.gm-service-card .gm-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: auto;

  margin-top: auto;
  padding: 10px 0 2px;

  border: 0;
  border-radius: 0;

  background: transparent;

  color: var(--gm-services-ink);

  box-shadow: none;

  font-size: .67rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;

  transition:
    color .3s ease,
    gap .3s ease;
}


.gm-service-card .gm-card-btn:hover,
.gm-service-card .gm-card-btn:focus {
  background: transparent;

  color: var(--gm-services-clay);

  box-shadow: none;

  gap: 19px;
}


.gm-service-card .gm-card-btn .btn-arrow {
  color: var(--gm-services-clay);

  font-size: 1rem;
  line-height: 1;

  transition:
    transform .3s ease;
}


.gm-service-card .gm-card-btn:hover .btn-arrow {
  transform: translateX(4px);
}


/* ----------------------------------------------------------

   ALSO AVAILABLE
   ---------------------------------------------------------- */

.gm-service-list {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(150px, .35fr)
    minmax(0, 1.65fr);

  align-items: center;

  gap: clamp(30px, 5vw, 70px);

  max-width: 1040px;

  margin:
    clamp(68px, 7vw, 100px)
    auto 0;

  padding:
    clamp(28px, 3vw, 38px)
    clamp(28px, 4vw, 50px);

  border:
    1px solid rgba(255, 255, 255, .14);

  background:
    rgba(255, 249, 239, .055);

  box-shadow:
    0 18px 45px rgba(20, 29, 22, .09);
}


/* ----------------------------------------------------------
   ALSO AVAILABLE LABEL
   ---------------------------------------------------------- */

.gm-service-list-label {
  position: relative;

  padding-right: 30px;

  border-right:
    1px solid rgba(255, 255, 255, .15);
}


.gm-service-list-label span {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #e1a884;

  font-size: .66rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}


.gm-service-list-label span::before {
  content: "";

  width: 24px;
  height: 1px;

  background: currentColor;
}


/* ----------------------------------------------------------
   ALSO AVAILABLE COPY
   ---------------------------------------------------------- */

.gm-service-list-content h3 {
  margin: 0 0 8px;

  color: #fff9ef;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.35rem, 1.7vw, 1.75rem);

  font-weight: 400;
  line-height: 1.2;
}


.gm-service-list-content p {
  max-width: 760px;

  margin: 0;

  color:
    rgba(255, 249, 239, .68);

  font-size: .86rem;
  line-height: 1.8;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1199.98px) {

  .gm-services {
    padding:
      90px 0 110px;
  }


  .gm-services-v2-heading {
    grid-template-columns: 1fr;

    gap: 30px;

    max-width: 820px;

    margin-inline: auto;
    margin-bottom: 48px;
  }


  .gm-services-v2-title h2 {
    max-width: 720px;
  }


  .gm-services-v2-intro {
    max-width: 620px;
  }

}


/* ----------------------------------------------------------
   MOBILE AND TABLET
   ---------------------------------------------------------- */

@media (max-width: 991.98px) {

  .gm-services {

    padding:
      76px 0 92px;
  }


  .gm-services::after {
    top: -20px;
    right: -25px;

    font-size: 280px;
  }


  .gm-services-v2-heading {
    margin-bottom: 42px;
  }


  .gm-services-v2-title h2 {
    font-size:
      clamp(2.8rem, 8vw, 4.6rem);
  }


  .gm-service-list {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .gm-service-list-label {
    padding: 0 0 18px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, .14);
  }

}


/* ----------------------------------------------------------
   SMALL MOBILE
   ---------------------------------------------------------- */

@media (max-width: 575.98px) {

  .gm-services {
    padding:
      62px 0 74px;
  }


  .gm-services::after {
    top: -10px;
    right: -50px;

    font-size: 220px;
  }


  .gm-kicker {
    margin-bottom: 18px;

    font-size: .64rem;
    letter-spacing: .14em;
  }


  .gm-services-v2-heading {
    padding-bottom: 32px;
  }


  .gm-services-v2-title h2 {
    font-size:
      clamp(2.55rem, 12vw, 3.6rem);

    line-height: 1;
  }


  .gm-services-v2-intro {
    padding:
      4px 0 4px 20px;
  }


  .gm-services-v2-intro p {
    font-size: .91rem;
    line-height: 1.7;
  }


  .gm-services-v2-specialisms {
    gap: 8px 14px;

    margin-top: 18px;
  }


  .gm-services-v2-specialisms span {
    font-size: .6rem;
  }


  .gm-service-grid {
    --mdb-gutter-y: 12px;
  }



  .gm-service-card {
    min-height: 0;
  }


  .gm-service-card .card-body {
    min-height: 0;

    padding:
      30px 26px 28px;
  }


  .gm-service-v2-top {
    margin-bottom: 22px;
  }


  .gm-service-v2-icon {
    width: 100px !important;
    height: 100px !important;
  }


  .gm-service-list {
    margin-top: 50px;

    padding:
      26px 24px 28px;
  }

}


/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-service-card,
  .gm-service-card::before,
  .gm-service-v2-icon,
  .gm-service-card .gm-card-btn,
  .gm-service-card .btn-arrow {
    transition: none;
  }

}


/* ==========================================================
   G M PLASTERING
   GALLERY LEAD / CRAFT FEATURE
   ========================================================== */

.gm-gallery-lead {
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(90px, 9vw, 145px);
  background: var(--gm-paper);
}


/* ==========================================================
   SPACE ABOVE GALLERY
   ========================================================== */

.gm-gallery-lead-space {
  display: block;
  width: 100%;
  height: clamp(90px, 8vw, 130px);
}


/* subtle background block */

.gm-gallery-lead::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 52%;
  background: rgba(86, 96, 72, .055);
  pointer-events: none;
}


/* ==========================================================
   GALLERY LAYOUT
   ========================================================== */

.gm-gallery-lead-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(360px, .65fr);

  gap: clamp(24px, 3vw, 48px);

  align-items: center;
}


/* ==========================================================
   MAIN IMAGE
   ========================================================== */

.gm-gallery-lead-main {
  position: relative;

  margin: 0;

  overflow: hidden;

  background: #ddd5c8;
}


.gm-gallery-lead-main img {
  display: block;

  width: 100%;
  height: clamp(560px, 54vw, 760px);

  object-fit: cover;
  object-position: center 58%;

  filter:
    saturate(.88)
    contrast(1.02);

  transition:
    transform .7s cubic-bezier(.2, .7, .2, 1);
}


.gm-gallery-lead-main:hover img {
  transform: scale(1.018);
}


/* subtle dark fade for caption */

.gm-gallery-lead-main::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(18, 29, 22, .34) 100%
    );

  pointer-events: none;
}


/* ==========================================================
   MAIN IMAGE CAPTION
   ========================================================== */

.gm-gallery-lead-main figcaption {
  position: absolute;
  z-index: 3;

  left: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 40px);

  max-width: 360px;

  color: #fff;
}


.gm-gallery-lead-main figcaption span {
  display: block;

  margin-bottom: 7px;

  color: rgba(255,255,255,.72);

  font-size: .66rem;
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: .16em;
  text-transform: uppercase;
}


.gm-gallery-lead-main figcaption strong {
  display: block;

  color: #fff;

  font-family:
    "Spectral",
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;

  line-height: 1.2;
}


/* ==========================================================
   SECONDARY IMAGE AREA
   ========================================================== */

.gm-gallery-lead-side {
  position: relative;

  padding:
    clamp(20px, 4vw, 55px)
    0
    clamp(65px, 7vw, 100px);
}


.gm-gallery-lead-secondary {
  position: relative;

  margin:
    0
    0

    0
    clamp(-70px, -4vw, -35px);

  overflow: hidden;

  background: #d9d1c3;


  box-shadow:
    0 28px 60px
    rgba(23, 36, 28, .14);
}


.gm-gallery-lead-secondary img {
  display: block;

  width: 100%;
  height: clamp(390px, 38vw, 520px);

  object-fit: cover;
  object-position: center;

  filter:
    saturate(.88)
    contrast(1.02);

  transition:
    transform .7s cubic-bezier(.2, .7, .2, 1);
}


.gm-gallery-lead-secondary:hover img {
  transform: scale(1.02);
}


/* ==========================================================
   DARK INFORMATION PANEL
   ========================================================== */

.gm-gallery-lead-note {
  position: absolute;
  z-index: 4;

  right: 0;
  bottom: 0;

  display: grid;

  grid-template-columns:
    auto
    1fr;

  gap: 20px;

  width: min(92%, 440px);

  padding:
    25px
    27px;

  background:
    var(--gm-forest-deep);

  color: #fff;

  box-shadow:
    0 18px 42px
    rgba(23, 36, 28, .18);
}


/* ==========================================================
   PANEL NUMBER
   ========================================================== */

.gm-gallery-lead-number {
  color:
    var(--gm-clay);

  font-family:
    "Spectral",
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.5rem;
  font-weight: 400;

  line-height: 1;
}


/* ==========================================================
   PANEL COPY
   ========================================================== */

.gm-gallery-lead-note strong {
  display: block;

  margin-bottom: 8px;

  color: #fff;

  font-family:
    "Spectral",
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.08rem;
  font-weight: 500;

  line-height: 1.35;
}


.gm-gallery-lead-note p {
  margin: 0;

  color:
    rgba(255,255,255,.68);

  font-size: .8rem;

  line-height: 1.65;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-gallery-lead-space {
    height: 80px;
  }


  .gm-gallery-lead-grid {
    grid-template-columns: 1fr;

    gap: 32px;
  }


  .gm-gallery-lead-main {
    width: 100%;
  }


  .gm-gallery-lead-main img {
    height: 600px;
  }


  .gm-gallery-lead-side {
    width: min(100%, 720px);

    margin-inline: auto;

    padding:
      0
      0
      90px;
  }


  .gm-gallery-lead-secondary {
    margin-left: 0;
  }


  .gm-gallery-lead-secondary img {
    height: 500px;
  }


  .gm-gallery-lead-note {
    right: 20px;
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .gm-gallery-lead {
    padding-bottom: 68px;
  }


  .gm-gallery-lead-space {
    height: 55px;
  }


  .gm-gallery-lead-grid {
    gap: 24px;
  }


  /* main image */

  .gm-gallery-lead-main img {
    height: 470px;

    object-position: center;
  }


  .gm-gallery-lead-main figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;

    max-width: none;
  }


  .gm-gallery-lead-main figcaption strong {
    font-size: 1.4rem;
  }


  /* secondary image */

  .gm-gallery-lead-side {
    padding:
      0
      0
      118px;
  }


  .gm-gallery-lead-secondary img {
    height: 390px;
  }


  /* information panel */

  .gm-gallery-lead-note {
    left: 18px;
    right: 18px;
    bottom: 18px;

    width: auto;

    grid-template-columns:
      auto
      1fr;

    gap: 16px;

    padding:
      21px
      20px;
  }


  .gm-gallery-lead-number {
    font-size: 1.3rem;
  }


  .gm-gallery-lead-note strong {
    font-size: 1rem;
  }


  .gm-gallery-lead-note p {
    font-size: .78rem;
  }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 390px) {

  .gm-gallery-lead-space {
    height: 48px;
  }


  .gm-gallery-lead-main img {
    height: 420px;
  }


  .gm-gallery-lead-secondary img {
    height: 350px;
  }


  .gm-gallery-lead-note {
    left: 12px;
    right: 12px;

    grid-template-columns: 1fr;
  }


  .gm-gallery-lead-number {
    margin-bottom: -5px;
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-gallery-lead-main img,
  .gm-gallery-lead-secondary img {
    transition: none;
  }

}
/* ==========================================================
   G M PLASTERING
   REDESIGNED SERVICES + CRAFT + HERITAGE SECTIONS
   ========================================================== */

.gm-services-v2,
.gm-craft-feature,
.gm-heritage-v2 {
  --gm-v2-ink: #18251d;
  --gm-v2-forest: #26342a;
  --gm-v2-forest-deep: #1b271f;
  --gm-v2-moss: #6f745c;
  --gm-v2-paper: #faf7f0;
  --gm-v2-cream: #f3ecdf;
  --gm-v2-stone: #ddd5c6;
  --gm-v2-clay: #b96f4b;
  --gm-v2-muted: #66675f;
}

.gm-kicker {
  margin: 0 0 18px;
  color: var(--gm-v2-clay);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}


/* ==========================================================
   SERVICES
   ========================================================== */

.gm-services-v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 132px) 0 clamp(96px, 9vw, 148px);
  background:
    radial-gradient(circle at 82% 8%, rgba(255,255,255,.05), transparent 28%),
    linear-gradient(150deg, #2c392f 0%, #222f27 58%, #1b271f 100%);
  color: #f8f1e6;
}

.gm-services-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.13) .55px, transparent .55px);
  background-size: 7px 7px;
  pointer-events: none;
}

.gm-services-v2::after {
  content: "G";
  position: absolute;
  top: -80px;
  right: -35px;
  color: rgba(255,255,255,.025);
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(260px, 25vw, 440px);
  font-weight: 500;
  line-height: .8;
  pointer-events: none;
}

.gm-services-v2 .gm-container {
  position: relative;
  z-index: 2;
}

.gm-services-v2-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 72px);
}

.gm-services-v2-title h2 {
  max-width: 780px;
  margin: 0;
  color: #fff9ef;
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(3rem, 4.9vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .97;
}

.gm-services-v2-title h2 span {
  display: block;
  color: rgba(255,249,239,.62);
}

.gm-services-v2-intro {
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.gm-services-v2-intro p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,249,239,.72);
  font-size: .98rem;
  line-height: 1.75;
}

.gm-services-v2-stage {
  position: relative;
  padding: clamp(22px, 2vw, 32px);
  background: rgba(247,241,231,.055);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(8,14,10,.16);
  backdrop-filter: blur(2px);
}

.gm-services-v2-rule {
  position: absolute;
  top: 0;
  left: clamp(28px, 4vw, 58px);
  width: 90px;
  height: 3px;
  background: var(--gm-v2-clay);
}

.gm-service-grid-v2 {
  position: relative;
  z-index: 2;
}

.gm-service-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 322px;
  padding: clamp(30px, 3vw, 42px);
  background: linear-gradient(145deg, #fbf7ef 0%, #f4ecdf 100%);
  border: 1px solid rgba(24,37,29,.08);
  color: var(--gm-v2-ink);
  box-shadow: 0 16px 32px rgba(6,14,9,.10);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .35s ease;
}

.gm-service-v2::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gm-v2-clay);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}

.gm-service-v2:hover {
  transform: translateY(-6px);
  background: #fffaf2;
  box-shadow: 0 28px 50px rgba(6,14,9,.18);
}

.gm-service-v2:hover::after {
  transform: scaleX(1);
}

.gm-service-v2-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.gm-service-v2-number {
  color: rgba(185,111,75,.45);
  font-family: 'Spectral', Georgia, serif;
  font-size: .9rem;
  letter-spacing: .08em;
}

.gm-service-v2-icon {
  width: 50px;
  height: 50px;
  color: #68705a;
  opacity: .8;
}

.gm-service-v2-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gm-service-v2 h3 {
  margin: 0 0 15px;
  color: var(--gm-v2-ink);
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(1.4rem, 1.6vw, 1.72rem);
  font-weight: 500;
  line-height: 1.18;
}

.gm-service-v2 > p {
  max-width: 345px;
  margin: 0 0 28px;
  color: var(--gm-v2-muted);
  font-size: .91rem;
  line-height: 1.72;
}

.gm-service-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  margin-top: auto;
  color: var(--gm-v2-ink);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s ease, gap .25s ease;
}

.gm-service-v2-link span {
  color: var(--gm-v2-clay);
  font-size: 1rem;
}

.gm-service-v2-link:hover {
  gap: 18px;
  color: var(--gm-v2-clay);
}

.gm-services-v2-more {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  max-width: 1050px;
  margin: clamp(58px, 6vw, 86px) auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.gm-services-v2-more-label {
  color: var(--gm-v2-clay);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gm-services-v2-more p {
  margin: 0;
  color: rgba(255,249,239,.68);
  font-size: .86rem;
  line-height: 1.8;
}


/* ==========================================================
   CRAFT IMAGE FEATURE
   ========================================================== */
/* =========================================================
   CRAFT FEATURE
========================================================= */

.gm-craft-feature {
  position: relative;
  overflow: hidden;

  padding:
    clamp(90px, 9vw, 145px)
    0;

  background: #fbf8f2;
}


.gm-craft-feature::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 42%;
  height: 48%;

  background:
    rgba(111, 116, 92, .065);

  pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.gm-craft-feature-heading {
  position: relative;
  z-index: 2;

  width: min(100%, 790px);

  margin:
    0
    auto
    clamp(48px, 6vw, 78px);
}


.gm-craft-feature-heading h2 {
  margin:
    0
    0
    22px;

  color: var(--gm-v2-ink);

  font-family:
    'Spectral',
    Georgia,
    serif;

  font-size:
    clamp(2.35rem, 3.8vw, 4rem);

  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.03em;
}


.gm-craft-feature-heading p {
  width: min(100%, 680px);

  margin:
    0
    auto;

  color: var(--gm-v2-muted);

  font-size: 1rem;
  line-height: 1.8;
}


/* =========================================================
   IMAGE GRID
========================================================= */

.gm-craft-feature-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(340px, .8fr);

  gap:
    clamp(28px, 4vw, 64px);

  align-items: center;
}


.gm-craft-feature-main,
.gm-craft-feature-secondary {
  position: relative;

  margin: 0;
  overflow: hidden;

  background: #d8d0c3;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.gm-craft-feature-main img {
  width: 100%;
  height:
    clamp(540px, 53vw, 720px);

  object-fit: cover;
  object-position: center 56%;

  filter:
    saturate(.9)
    contrast(1.02);

  transition:
    transform .7s
    cubic-bezier(.2, .7, .2, 1);
}


.gm-craft-feature-main::after {
  content: "";

  position: absolute;
  inset: 48% 0 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(18, 29, 22, .5)
    );

  pointer-events: none;
}


.gm-craft-feature-main:hover img,
.gm-craft-feature-secondary:hover img {
  transform: scale(1.018);
}


/* =========================================================
   MAIN IMAGE CAPTION
========================================================= */

.gm-craft-feature-main figcaption {
  position: absolute;
  z-index: 3;

  right:
    clamp(24px, 3vw, 44px);

  bottom:
    clamp(24px, 3vw, 42px);

  left:
    clamp(24px, 3vw, 44px);

  width: min(100%, 470px);

  color: #fff;

  font-family:
    'DM Sans',
    Arial,
    sans-serif;

  font-size:
    clamp(1rem, 1.25vw, 1.16rem);

  font-weight: 600;
  line-height: 1.5;
}


/* =========================================================
   SECONDARY IMAGE
========================================================= */

.gm-craft-feature-side {
  position: relative;
}


.gm-craft-feature-secondary {
  box-shadow:
    0 26px 60px
    rgba(23, 36, 28, .13);
}


.gm-craft-feature-secondary img {
  width: 100%;
  height:
    clamp(400px, 38vw, 520px);

  object-fit: cover;
  object-position: center;

  filter:
    saturate(.9)
    contrast(1.02);

  transition:
    transform .7s
    cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   CONTENT CARD
========================================================= */

.gm-craft-feature-card {
  position: relative;

  width:
    calc(100% - clamp(18px, 3vw, 42px));

  margin:
    clamp(-44px, -3vw, -28px)
    0
    0
    auto;

  padding:
    clamp(28px, 3vw, 40px);

  background:
    var(--gm-v2-forest-deep);

  color: #fff;

  box-shadow:
    0 22px 48px
    rgba(23, 36, 28, .17);
}


.gm-craft-feature-card h3 {
  max-width: 440px;

  margin:
    0
    0
    15px;

  color: #fff;

  font-family:
    'Spectral',
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 1.8vw, 1.75rem);

  font-weight: 500;
  line-height: 1.28;
}


.gm-craft-feature-card p {
  max-width: 450px;

  margin:
    0
    0
    24px;

  color:
    rgba(255, 255, 255, .72);

  font-size: .9rem;
  line-height: 1.72;
}


.gm-craft-feature-card .gm-btn {
  min-width: 215px;

  background: #fff;
  border-color: #fff;
  color:
    var(--gm-v2-forest-deep);
}


.gm-craft-feature-card .gm-btn:hover {
  background:
    var(--gm-v2-clay);

  border-color:
    var(--gm-v2-clay);

  color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .gm-craft-feature {
    padding:
      82px
      0
      96px;
  }


  .gm-craft-feature-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .gm-craft-feature-main img {
    height:
      min(700px, 78vw);
  }


  .gm-craft-feature-side {
    display: grid;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, .82fr);

    align-items: center;

    gap: 0;
  }


  .gm-craft-feature-secondary img {
    height: 470px;
  }


  .gm-craft-feature-card {
    width: calc(100% + 36px);

    margin:
      0
      0
      0
      -36px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gm-craft-feature {
    padding:
      72px
      0
      82px;
  }


  .gm-craft-feature-heading {
    margin-bottom: 38px;
  }


  .gm-craft-feature-heading h2 {
    font-size:
      clamp(2.2rem, 9vw, 3rem);
  }


  .gm-craft-feature-main img {
    height: 520px;
  }


  .gm-craft-feature-side {
    display: block;
  }


  .gm-craft-feature-secondary img {
    height: 410px;
  }


  .gm-craft-feature-card {
    width:
      calc(100% - 20px);

    margin:
      -28px
      0
      0
      auto;

    padding:
      28px
      24px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

  .gm-craft-feature-main img {
    height: 440px;
  }


  .gm-craft-feature-secondary img {
    height: 350px;
  }


  .gm-craft-feature-card {
    width: 100%;

    margin-top: 0;
  }


  .gm-craft-feature-card .gm-btn {
    width: 100%;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gm-craft-feature-main img,
  .gm-craft-feature-secondary img {
    transition: none;
  }

}
/* ==========================================================
   HERITAGE FEATURE
   ========================================================== */

.gm-heritage-v2 {
  background: #e9e1d4;
}

.gm-heritage-v2-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #d5ccbe;
}

.gm-heritage-v2-media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.02);
}

.gm-heritage-v2-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(24,37,29,.16));
  pointer-events: none;
}

.gm-heritage-v2-caption {
  position: absolute;
  left: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 52px);
  max-width: 360px;
  padding: 20px 24px;
  background: rgba(250,247,240,.94);
  color: var(--gm-v2-ink);
  box-shadow: 0 16px 38px rgba(22,31,24,.12);
}

.gm-heritage-v2-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--gm-v2-clay);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gm-heritage-v2-caption strong {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}

.gm-heritage-v2-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% -5%, rgba(185,111,75,.09), transparent 35%),
    #f4eee4;
}

.gm-heritage-v2-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gm-v2-clay);
  opacity: .8;
}

.gm-heritage-v2-content {
  width: min(100%, 660px);
  padding: clamp(72px, 7vw, 112px) clamp(34px, 5vw, 82px);
}

.gm-heritage-v2-content h2 {
  margin: 0 0 28px;
  color: var(--gm-v2-ink);
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: .99;
}

.gm-heritage-v2-content h2 span {
  display: block;
  color: #68705a;
}

.gm-heritage-v2-lead {
  margin: 0 0 20px;
  color: var(--gm-v2-ink);
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  line-height: 1.55;
}

.gm-heritage-v2-content > p:not(.gm-kicker):not(.gm-heritage-v2-lead):not(.gm-heritage-v2-small) {
  margin: 0 0 25px;
  color: var(--gm-v2-muted);
  font-size: .96rem;
  line-height: 1.82;
}

.gm-heritage-v2-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0;
}

.gm-heritage-v2-materials span {
  padding: 9px 13px;
  border: 1px solid rgba(24,37,29,.13);
  background: rgba(255,255,255,.38);
  color: #4f594a;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gm-heritage-v2-small {
  margin: 0 0 34px;
  color: #73736c;
  font-size: .85rem;
  line-height: 1.75;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (min-width: 1200px) {
  .gm-service-grid-v2 > div:nth-child(2),
  .gm-service-grid-v2 > div:nth-child(5) {
    transform: translateY(18px);
  }
}

@media (max-width: 991.98px) {
  .gm-services-v2-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gm-services-v2-intro {
    max-width: 650px;
  }

  .gm-services-v2-stage {
    padding: 18px;
  }

  .gm-craft-feature-grid {
    grid-template-columns: 1fr;
  }

  .gm-craft-feature-side {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .gm-craft-feature-secondary {
    margin-left: 0;
  }

  .gm-heritage-v2-media,
  .gm-heritage-v2-media img {
    min-height: 590px;
  }

  .gm-heritage-v2-copy::before {
    width: 100%;
    height: 3px;
  }
}

@media (max-width: 767.98px) {
  .gm-services-v2 {
    padding: 74px 0 86px;
  }

  .gm-services-v2-title h2 {
    font-size: clamp(2.65rem, 11vw, 3.7rem);
  }

  .gm-services-v2-intro {
    padding-left: 20px;
  }

  .gm-service-v2 {
    min-height: 0;
  }

  .gm-services-v2-more {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gm-craft-feature {
    padding: 76px 0 90px;
  }

  .gm-craft-feature-main img {
    height: 500px;
  }

  .gm-craft-feature-secondary img {
    height: 390px;
  }

  .gm-craft-feature-side {
    padding-bottom: 122px;
  }

  .gm-craft-feature-card {
    left: 18px;
    right: 18px;
    width: auto;
    padding: 22px 20px;
  }

  .gm-heritage-v2-media,
  .gm-heritage-v2-media img {
    min-height: 500px;
  }

  .gm-heritage-v2-content {
    padding: 70px 24px 78px;
  }

  .gm-heritage-v2-content h2 {
    font-size: clamp(2.5rem, 11vw, 3.55rem);
  }
}

@media (max-width: 420px) {
  .gm-services-v2-stage {
    padding: 12px;
  }

  .gm-service-v2 {
    padding: 28px 24px;
  }

  .gm-craft-feature-main img {
    height: 440px;
  }

  .gm-craft-feature-secondary img {
    height: 340px;
  }

  .gm-craft-feature-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gm-service-v2,
  .gm-service-v2::after,
  .gm-service-v2-link,
  .gm-craft-feature-main img,
  .gm-craft-feature-secondary img {
    transition: none;
  }
}

/* ==========================================================
   FINAL HOMEPAGE SECTIONS AND SERVICE ALIGNMENT
   These rules intentionally sit last to resolve older service
   experiments retained above and support the current HTML.
   ========================================================== */

.gm-service-v2 {
  width: 100%;
  min-height: 420px;
  padding: 0;
}

.gm-service-v2-top {
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 22px;
}

.gm-service-v2-number,
.gm-service-v2-icon svg {
  display: none;
}

.gm-service-v2-icon {
  display: block;
  width: 120px !important;
  height: 120px !important;
  object-fit: contain;
}

.gm-portfolio {
  padding: clamp(88px, 9vw, 145px) 0;
  background: #fbf8f1;
}

.gm-portfolio .gm-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  text-align: center;
}

/* =========================================================
   PROJECT GRID
========================================================= */


.gm-portfolio {
  position: relative;
  overflow: hidden;

  padding:
    clamp(90px, 8vw, 130px)
    0
    clamp(100px, 9vw, 145px);

  background: #f7f2e9;

  border-top:
    1px solid
    rgba(28, 41, 33, .08);
}


/* =========================================================
   PORTFOLIO HEADING
========================================================= */

.gm-portfolio-heading {
  width:
    min(100%, 760px);

  margin:
    0
    auto
    clamp(46px, 5vw, 70px);

  text-align: center;
}


.gm-portfolio-heading h2 {
  margin:
    0
    0
    22px;

  color: var(--gm-ink);

  font-family:
    'Spectral',
    Georgia,
    serif;

  font-size:
    clamp(2.35rem, 3.5vw, 3.7rem);

  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.03em;
}


.gm-portfolio-heading p {
  max-width: 680px;

  margin:
    0
    auto;

  color: var(--gm-muted);

  font-size: 1rem;
  line-height: 1.8;
}


/* =========================================================
   PROJECT GRID WIDTH
========================================================= */

.gm-portfolio .gm-project-grid {
  width: 100%;

  margin:
    0
    auto;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gm-portfolio {
    padding:
      72px
      0
      82px;
  }


  .gm-portfolio-heading {
    margin-bottom: 38px;
  }


  .gm-portfolio-heading h2 {
    font-size:
      clamp(2.25rem, 9vw, 3rem);
  }

}

.gm-portfolio {
  position: relative;

  padding:
    clamp(96px, 9vw, 145px)
    0;

  background: #fbf8f2;

  scroll-margin-top: 110px;
}


/* =========================================================
   PORTFOLIO HEADING
========================================================= */

.gm-portfolio .gm-section-heading {
  width:
    min(100%, 780px);

  margin:
    0
    auto
    clamp(44px, 5vw, 68px);

  text-align: center;
}


.gm-portfolio .gm-section-heading h2 {
  margin:
    0
    0
    22px;
}


.gm-portfolio .gm-section-heading p {
  max-width: 680px;

  margin:
    0
    auto;

  color: var(--gm-muted);

  line-height: 1.8;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gm-portfolio {
    padding:
      78px
      0
      86px;
  }


  .gm-portfolio .gm-section-heading {
    margin-bottom: 38px;
  }

}
.gm-project-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(330px, .75fr);

  grid-template-rows:
    repeat(2, minmax(300px, 355px));

  gap:
    clamp(14px, 1.6vw, 24px);
}


/* =========================================================
   PROJECT
========================================================= */

.gm-project {
  position: relative;

  min-width: 0;
  min-height: 0;

  margin: 0;
  overflow: hidden;

  background: #e9e2d6;
}


.gm-project-main {
  grid-row:
    1 / 3;
}


.gm-project-link {
  display: block;

  width: 100%;
  height: 100%;

  color: inherit;
  text-decoration: none;
}


.gm-project figure {
  position: relative;

  width: 100%;
  height: 100%;

  margin: 0;
  overflow: hidden;
}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.gm-project img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(.88)
    contrast(1.02);

  transition:
    transform .7s
    cubic-bezier(.2, .65, .25, 1),
    filter .45s ease;
}


.gm-project-main img {
  object-position: center 52%;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gm-project figure::after {
  content: "";

  position: absolute;
  inset: 32% 0 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(15, 25, 18, .22) 38%,
      rgba(15, 25, 18, .82) 100%
    );

  pointer-events: none;

  transition:
    opacity .4s ease;
}


/* =========================================================
   CAPTION
========================================================= */

.gm-project figcaption {
  position: absolute;
  z-index: 2;

  right:
    clamp(20px, 2.7vw, 38px);

  bottom:
    clamp(20px, 2.7vw, 34px);

  left:
    clamp(20px, 2.7vw, 38px);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  color: #fff;
}


.gm-project-caption-copy {
  max-width: 440px;
}


.gm-project-caption-copy h3 {
  margin:
    0
    0
    7px;

  color: #fff;

  font-family:
    'Spectral',
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 1.8vw, 1.9rem);

  font-weight: 500;
  line-height: 1.18;
}


.gm-project-main .gm-project-caption-copy h3 {
  font-size:
    clamp(1.7rem, 2.35vw, 2.45rem);
}


.gm-project-caption-copy p {
  margin: 0;

  color:
    rgba(255, 255, 255, .72);

  font-size: .78rem;
  font-weight: 600;
  line-height: 1.45;
}


/* =========================================================
   VIEW PROJECT BUTTON
========================================================= */

.gm-project-action {
  flex: 0 0 auto;

  min-width: 142px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 22px;

  padding:
    12px
    15px;

  background:
    rgba(255, 255, 255, .96);

  border:
    1px solid
    rgba(255, 255, 255, .96);

  color: var(--gm-ink);

  font-size: .66rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease;
}


.gm-project-action > span {
  font-size: .95rem;
  line-height: 1;
}


/* =========================================================
   SMALL PROJECT CAPTIONS
========================================================= */

.gm-project:not(.gm-project-main) figcaption {
  align-items: flex-start;
  flex-direction: column;

  gap: 16px;
}


.gm-project:not(.gm-project-main)
.gm-project-caption-copy h3 {
  font-size:
    clamp(1.25rem, 1.5vw, 1.55rem);
}


.gm-project:not(.gm-project-main)
.gm-project-action {
  min-width: 136px;

  padding:
    10px
    13px;
}


/* =========================================================
   HOVER AND KEYBOARD FOCUS
========================================================= */

.gm-project:hover img,
.gm-project-link:focus-visible img {
  transform:
    scale(1.025);

  filter:
    saturate(.98)
    contrast(1.025);
}


.gm-project:hover figure::after,
.gm-project-link:focus-visible figure::after {
  opacity: .92;
}


.gm-project:hover .gm-project-action,
.gm-project-link:focus-visible .gm-project-action {
  background:
    var(--gm-clay);

  border-color:
    var(--gm-clay);

  color: #fff;

  transform:
    translateY(-2px);
}


.gm-project-link:focus-visible {
  outline:
    3px solid
    var(--gm-clay);

  outline-offset: -3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .gm-project-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-template-rows:
      540px
      360px;
  }


  .gm-project-main {
    grid-column:
      1 / -1;

    grid-row: auto;
  }


  .gm-project:not(.gm-project-main) figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gm-project-grid {
    grid-template-columns: 1fr;

    grid-template-rows:
      470px
      360px
      360px;

    gap: 12px;
  }


  .gm-project-main {
    grid-column: auto;
  }


  .gm-project figcaption,
  .gm-project:not(.gm-project-main) figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;

    align-items: flex-start;
    flex-direction: column;

    gap: 16px;
  }


  .gm-project-main
  .gm-project-caption-copy h3 {
    font-size:
      clamp(1.55rem, 7vw, 2rem);
  }


  .gm-project-action,
  .gm-project:not(.gm-project-main)
  .gm-project-action {
    min-width: 142px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

  .gm-project-grid {
    grid-template-rows:
      410px
      330px
      330px;
  }


  .gm-project figcaption,
  .gm-project:not(.gm-project-main) figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }


  .gm-project-caption-copy p {
    font-size: .72rem;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gm-project img,
  .gm-project figure::after,
  .gm-project-action {
    transition: none;
  }

}
.gm-testimonials {
  padding: clamp(82px, 9vw, 135px) 0;
  background: #314033;
  color: #fff;
  text-align: center;
}

.gm-testimonials h2,
.gm-contact h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

.gm-testimonial-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
}
/* =========================================================
   CONTACT
========================================================= */

.gm-contact {
  position: relative;
  overflow: hidden;

  padding:
    clamp(76px, 7vw, 108px)
    0;

  background:
    linear-gradient(
      135deg,
      #e9e1d4 0%,
      #e2d7c7 100%
    );

  color: var(--gm-ink);

  text-align: center;

  border-top:
    1px solid
    rgba(28, 41, 33, .08);
}


.gm-contact::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: min(68%, 920px);
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(166, 97, 67, .42),
      transparent
    );

  transform:
    translateX(-50%);

  pointer-events: none;
}


.gm-contact .gm-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.gm-contact h2 {
  max-width: 980px;

  margin:
    0
    auto
    24px;

  color: var(--gm-ink);

  font-size:
    clamp(2.45rem, 3.5vw, 3.85rem);

  line-height: 1.08;
}


.gm-contact-intro {
  max-width: 720px;

  margin:
    0
    auto
    34px;

  color: #4f5952;

  font-size:
    clamp(1rem, 1.2vw, 1.1rem);

  line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.gm-contact .gm-actions {
  margin:
    0
    0
    24px;
}


.gm-contact-primary,
.gm-contact-secondary {
  min-width: 230px;

  padding:
    17px
    24px;
}


.gm-contact .gm-contact-primary {
  background: var(--gm-forest-deep);
  border-color: var(--gm-forest-deep);
  color: #fff;
}


.gm-contact .gm-contact-primary:hover {
  background: var(--gm-clay);
  border-color: var(--gm-clay);
  color: #fff;
}


.gm-contact .gm-contact-secondary {
  background:
    rgba(255, 255, 255, .28);

  border-color: var(--gm-forest-deep);
  color: var(--gm-forest-deep);
}


.gm-contact .gm-contact-secondary:hover {
  background: var(--gm-forest-deep);
  border-color: var(--gm-forest-deep);
  color: #fff;
}


/* =========================================================
   SECONDARY TELEPHONE NUMBER
========================================================= */

.gm-contact .gm-secondary-phone {
  margin: 0;

  color: #62675f;

  font-size: .88rem;
}


.gm-contact .gm-secondary-phone a {
  color: var(--gm-forest-deep);

  font-weight: 700;
}


.gm-contact .gm-secondary-phone a:hover {
  color: var(--gm-clay);

  text-decoration: underline;
  text-underline-offset: 4px;
}


/* =========================================================
   TABLET AND MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .gm-contact {
    padding:
      70px
      0
      76px;
  }


  .gm-contact h2 {
    max-width: 560px;

    font-size:
      clamp(2.35rem, 9vw, 3rem);
  }


  .gm-contact-intro {
    max-width: 560px;
  }


  .gm-contact .gm-actions {
    width:
      min(100%, 360px);

    margin:
      0
      auto
      24px;
  }


  .gm-contact .gm-btn {
    width: 100%;
  }

}
.gm-secondary-phone {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .94rem;
}

@media (max-width: 767.98px) {
  .gm-service-v2 {
    min-height: 0;
    padding: 0;
  }

  .gm-service-v2-icon {
    width: 100px !important;
    height: 100px !important;
  }

  .gm-project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 470px 320px 320px;
  }

  .gm-project-main {
    grid-row: auto;
  }
}

@media (max-width: 479.98px) {
  .gm-project-grid {
    grid-template-rows: 390px 270px 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gm-project img {
    transition: none;
  }
}
/* ==========================================================
   G M PLASTERING
   FOOTER
   ========================================================== */

.gm-footer {
  --gm-footer-bg: #111a14;
  --gm-footer-bg-soft: #182219;
  --gm-footer-cream: #f7f1e7;
  --gm-footer-muted: rgba(247, 241, 231, .62);
  --gm-footer-line: rgba(247, 241, 231, .13);
  --gm-footer-clay: #d28d67;

  position: relative;
  overflow: hidden;

  padding:
    clamp(75px, 8vw, 120px) 0
    30px;

  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(125, 130, 105, .17),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      var(--gm-footer-bg-soft) 0%,
      var(--gm-footer-bg) 60%,
      #0d140f 100%
    );

  color: var(--gm-footer-cream);
}


/* ----------------------------------------------------------
   LARGE BACKGROUND MARK
   ---------------------------------------------------------- */

.gm-footer::before {
  content: "GM";

  position: absolute;

  right: -30px;
  bottom: -70px;

  color: rgba(255, 255, 255, .025);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(180px, 22vw, 360px);

  font-weight: 400;
  line-height: .8;
  letter-spacing: -.08em;

  pointer-events: none;
  user-select: none;
}


/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */

.gm-footer .gm-container {
  position: relative;
  z-index: 2;
}


/* ----------------------------------------------------------
   MAIN FOOTER GRID
   ---------------------------------------------------------- */

.gm-footer-main {
  display: grid;

  grid-template-columns:
    minmax(260px, 1.1fr)
    minmax(160px, .55fr)
    minmax(300px, .9fr);

  gap:
    clamp(45px, 7vw, 110px);

  align-items: start;

  padding-bottom:
    clamp(55px, 6vw, 85px);
}


/* ----------------------------------------------------------
   BRAND
   ---------------------------------------------------------- */

.gm-footer-wordmark {
  display: inline-flex;
  flex-direction: column;

  margin-bottom: 28px;

  color: var(--gm-footer-cream);

  text-decoration: none;
}


.gm-footer-wordmark strong {
  display: block;

  margin: 0;

  color: #fffaf2;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(3rem, 4vw, 4.5rem);

  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
}


.gm-footer-wordmark span {
  display: block;

  margin-top: 13px;

  color: var(--gm-footer-clay);

  font-size: .65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .28em;
}


.gm-footer-tagline {
  max-width: 330px;

  margin: 0;

  color: var(--gm-footer-muted);

  font-size: .9rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   SMALL FOOTER LABEL
   ---------------------------------------------------------- */

.gm-footer-label {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 24px;

  color: var(--gm-footer-clay);

  font-size: .64rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}


.gm-footer-label::before {
  content: "";

  width: 24px;
  height: 1px;

  background: currentColor;
}


/* ----------------------------------------------------------
   FOOTER NAVIGATION
   ---------------------------------------------------------- */

.gm-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 13px;
}


.gm-footer-nav a {
  position: relative;

  display: inline-block;

  padding: 3px 0;

  color: rgba(247, 241, 231, .78);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.05rem;
  line-height: 1.4;

  text-decoration: none;

  transition:
    color .25s ease,
    transform .25s ease;
}


.gm-footer-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--gm-footer-clay);

  transition:
    width .3s ease;
}


.gm-footer-nav a:hover,
.gm-footer-nav a:focus {
  color: #fffaf2;

  transform: translateX(3px);
}


.gm-footer-nav a:hover::after,
.gm-footer-nav a:focus::after {
  width: 100%;
}


/* ----------------------------------------------------------
   CONTACT AREA
   ---------------------------------------------------------- */

.gm-footer-contact {
  padding-left:
    clamp(28px, 4vw, 48px);

  border-left:
    1px solid var(--gm-footer-line);
}


.gm-footer-contact h2 {
  max-width: 390px;

  margin: 0 0 18px;

  color: #fffaf2;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2rem, 3vw, 3.1rem);

  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}


.gm-footer-contact h2 span {
  display: block;

  color:
    rgba(247, 241, 231, .58);
}


.gm-footer-contact > p:not(.gm-footer-label) {
  max-width: 390px;

  margin: 0 0 27px;

  color: var(--gm-footer-muted);

  font-size: .88rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   FOOTER CTA
   ---------------------------------------------------------- */

.gm-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  padding:
    12px 0 6px;

  border-bottom:
    1px solid rgba(210, 141, 103, .65);

  color: #fffaf2;

  font-size: .68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    color .3s ease,
    gap .3s ease,
    border-color .3s ease;
}


.gm-footer-cta span {
  color: var(--gm-footer-clay);

  font-size: 1.1rem;
  line-height: 1;

  transition:
    transform .3s ease;
}


.gm-footer-cta:hover,
.gm-footer-cta:focus {
  gap: 22px;

  color: var(--gm-footer-clay);

  border-color:
    var(--gm-footer-clay);
}


.gm-footer-cta:hover span,
.gm-footer-cta:focus span {
  transform:
    translateX(4px);
}


/* ----------------------------------------------------------
   BOTTOM FOOTER
   ---------------------------------------------------------- */

.gm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding-top: 25px;

  border-top:
    1px solid var(--gm-footer-line);
}


.gm-footer-bottom p {
  margin: 0;

  color:
    rgba(247, 241, 231, .42);

  font-size: .67rem;
  line-height: 1.6;
}


/* ----------------------------------------------------------
   BOTTOM LINKS
   ---------------------------------------------------------- */

.gm-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 11px 24px;
}


.gm-footer-bottom-links a {
  color:
    rgba(247, 241, 231, .48);

  font-size: .67rem;
  line-height: 1.6;

  text-decoration: none;

  transition:
    color .25s ease;
}


.gm-footer-bottom-links a:hover,
.gm-footer-bottom-links a:focus {
  color: var(--gm-footer-clay);
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 991.98px) {

  .gm-footer {
    padding-top: 80px;
  }


  .gm-footer-main {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(180px, .6fr);

    gap: 55px;
  }


  .gm-footer-contact {
    grid-column: 1 / -1;

    padding:
      38px 0 0;

    border-left: 0;

    border-top:
      1px solid var(--gm-footer-line);
  }


  .gm-footer-contact h2 {
    max-width: 480px;
  }


  .gm-footer-contact > p:not(.gm-footer-label) {
    max-width: 500px;
  }

}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 575.98px) {

  .gm-footer {
    padding:
      65px 0 25px;
  }


  .gm-footer::before {
    right: -40px;
    bottom: 40px;

    font-size: 190px;
  }


  .gm-footer-main {
    grid-template-columns: 1fr;

    gap: 42px;

    padding-bottom: 48px;
  }


  .gm-footer-tagline {
    max-width: 290px;
  }


  .gm-footer-nav {
    gap: 10px;
  }


  .gm-footer-contact {
    grid-column: auto;

    padding-top: 34px;
  }


  .gm-footer-contact h2 {
    font-size:
      clamp(2.1rem, 10vw, 2.8rem);
  }


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

    gap: 16px;

    padding-top: 22px;
  }


  .gm-footer-bottom-links {
    justify-content: flex-start;

    gap: 10px 20px;
  }

}


/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-footer-nav a,
  .gm-footer-nav a::after,
  .gm-footer-cta,
  .gm-footer-cta span,
  .gm-footer-bottom-links a {
    transition: none;
  }

}/* ==========================================================
   G M PLASTERING
   TESTIMONIAL CAROUSEL
   ========================================================== */

.gm-testimonials {
  position: relative;
  overflow: hidden;

  padding:
    clamp(115px, 10vw, 155px) 0
    clamp(95px, 9vw, 145px);

  background:
    linear-gradient(
      180deg,
      #ddd5c9 0%,
      #d3cabd 100%
    );

  color: var(--gm-ink, #17241c);
}


/* ----------------------------------------------------------
   BACKGROUND QUOTE MARK
   ---------------------------------------------------------- */

.gm-testimonials::before {
  content: "“";

  position: absolute;

  top: 95px;
  left: clamp(45px, 8vw, 135px);

  color: rgba(116, 83, 63, .09);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(180px, 23vw, 340px);

  font-weight: 400;
  line-height: .8;

  pointer-events: none;
  user-select: none;
}


/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */

.gm-testimonials .gm-container {
  position: relative;
  z-index: 2;
}


/* ----------------------------------------------------------
   HEADING
   ---------------------------------------------------------- */

.gm-testimonials-heading {
  position: relative;

  max-width: 850px;

  margin:
    0 auto
    clamp(48px, 5vw, 72px);

  text-align: center;
}


.gm-testimonials-heading .gm-kicker {
  justify-content: center;

  color: var(--gm-clay, #c9794e);
}


.gm-testimonials-heading h2 {
  margin: 0;

  color: var(--gm-ink, #17241c);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.8rem, 4.8vw, 5rem);

  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}


.gm-testimonials-heading h2 span {
  display: block;

  color: #686b63;
}


/* ----------------------------------------------------------
   STAGE
   ---------------------------------------------------------- */

.gm-testimonial-stage {
  position: relative;

  max-width: 1050px;

  margin: 0 auto;
}


/* ----------------------------------------------------------
   SLIDES
   ---------------------------------------------------------- */

.gm-testimonial-slides {
  position: relative;

  min-height: 410px;
}


.gm-testimonial-slide {
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding:
    clamp(44px, 6vw, 78px)
    clamp(28px, 7vw, 95px);

  border:
    1px solid rgba(23, 36, 28, .11);

  background:
    rgba(248, 244, 236, .78);

  box-shadow:
    0 22px 60px rgba(28, 41, 33, .10);

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(8px);

  transition:
    opacity .7s ease,
    visibility .7s ease,
    transform .7s ease;
}


.gm-testimonial-slide.is-active {
  position: relative;

  opacity: 1;
  visibility: visible;

  transform:
    translateY(0);
}


/* ----------------------------------------------------------
   NUMBER
   ---------------------------------------------------------- */

.gm-testimonial-number {
  margin-bottom: 27px;

  color: var(--gm-clay, #c9794e);

  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
}


/* ----------------------------------------------------------
   QUOTE
   ---------------------------------------------------------- */

.gm-testimonial-slide blockquote {
  max-width: 850px;

  margin: 0;

  text-align: center;
}


.gm-testimonial-slide blockquote p {
  margin: 0;

  color: var(--gm-ink, #17241c);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.55rem, 2.3vw, 2.35rem);

  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.015em;
}


/* ----------------------------------------------------------
   AUTHOR
   ---------------------------------------------------------- */

.gm-testimonial-author {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 32px;
  padding-top: 25px;
}


.gm-testimonial-author::before {
  content: "";

  position: absolute;

  top: 0;

  width: 34px;
  height: 1px;

  background:
    var(--gm-clay, #c9794e);
}


.gm-testimonial-author strong {
  color: var(--gm-ink, #17241c);

  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .13em;
  text-transform: uppercase;
}


.gm-testimonial-author span {
  margin-top: 6px;

  color: #686a63;

  font-size: .74rem;
  line-height: 1.5;
}


/* ----------------------------------------------------------
   CONTROLS
   ---------------------------------------------------------- */

.gm-testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;

  margin-top: 30px;
}


/* ----------------------------------------------------------
   ARROWS
   ---------------------------------------------------------- */

.gm-testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 0;

  border:
    1px solid rgba(23, 36, 28, .22);

  border-radius: 50%;

  background:
    rgba(247, 241, 231, .25);

  color:
    var(--gm-ink, #17241c);

  font-size: 1rem;
  line-height: 1;

  cursor: pointer;

  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gm-testimonial-arrow:hover,
.gm-testimonial-arrow:focus {
  color: #fff;

  border-color:
    var(--gm-clay, #c9794e);

  background:
    var(--gm-clay, #c9794e);
}


.gm-testimonial-prev:hover {
  transform:
    translateX(-2px);
}


.gm-testimonial-next:hover {
  transform:
    translateX(2px);
}


/* ----------------------------------------------------------
   PROGRESS
   ---------------------------------------------------------- */

.gm-testimonial-progress {
  display: flex;
  align-items: center;

  gap: 8px;
}


.gm-testimonial-progress-button {
  position: relative;

  width: 34px;
  height: 18px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.gm-testimonial-progress-button::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    rgba(23, 36, 28, .26);

  transform:
    translateY(-50%);

  transition:
    background .3s ease;
}


.gm-testimonial-progress-button span {
  position: absolute;

  top: 50%;
  left: 0;

  width: 0;
  height: 2px;

  background:
    var(--gm-clay, #c9794e);

  transform:
    translateY(-50%);

  transition:
    width .35s ease;
}


.gm-testimonial-progress-button.is-active span {
  width: 100%;
}


.gm-testimonial-progress-button.is-active::before {
  background:
    rgba(201, 121, 78, .25);
}


/* ----------------------------------------------------------
   READ ALL
   ---------------------------------------------------------- */

.gm-testimonial-more {
  margin-top: 38px;

  text-align: center;
}


.gm-testimonial-more-link {
  display: inline-flex;
  align-items: center;

  gap: 14px;

  padding-bottom: 5px;

  border-bottom:
    1px solid rgba(201, 121, 78, .55);

  color:
    var(--gm-ink, #17241c);

  font-size: .67rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;

  transition:
    color .3s ease,
    gap .3s ease,
    border-color .3s ease;
}


.gm-testimonial-more-link span {
  color:
    var(--gm-clay, #c9794e);

  font-size: 1rem;
}


.gm-testimonial-more-link:hover,
.gm-testimonial-more-link:focus {
  gap: 20px;

  color:
    var(--gm-clay, #c9794e);

  border-color:
    var(--gm-clay, #c9794e);
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 991.98px) {

  .gm-testimonials {
    padding:
      105px 0 95px;
  }


  .gm-testimonials::before {
    top: 80px;
    left: 35px;

    font-size:
      clamp(170px, 28vw, 260px);
  }


  .gm-testimonial-slides {
    min-height: 420px;
  }


  .gm-testimonial-slide {
    padding:
      50px 42px;
  }

}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 575.98px) {

  .gm-testimonials {
    padding:
      95px 0 75px;
  }


  .gm-testimonials::before {
    top: 70px;
    left: 20px;

    font-size: 145px;

    color:
      rgba(116, 83, 63, .075);
  }


  .gm-testimonials-heading {
    margin-bottom: 36px;
  }


  .gm-testimonials-heading h2 {
    font-size:
      clamp(2.4rem, 11vw, 3.15rem);
  }


  .gm-testimonial-slides {
    min-height: 450px;
  }


  .gm-testimonial-slide {
    padding:
      38px 24px;
  }


  .gm-testimonial-slide blockquote p {
    font-size:
      clamp(1.35rem, 6vw, 1.65rem);

    line-height: 1.48;
  }


  .gm-testimonial-controls {
    gap: 13px;

    margin-top: 25px;
  }


  .gm-testimonial-arrow {
    width: 40px;
    height: 40px;
  }


  .gm-testimonial-progress {
    gap: 5px;
  }


  .gm-testimonial-progress-button {
    width: 24px;
  }

}


/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-testimonial-slide,
  .gm-testimonial-arrow,
  .gm-testimonial-progress-button::before,
  .gm-testimonial-progress-button span,
  .gm-testimonial-more-link {
    transition: none;
  }

}


/* ==========================================================
   FINAL DESIGN REFINEMENTS
   Navigation, readability, section rhythm and conversion
   ========================================================== */

/* ----------------------------------------------------------
   GLOBAL READABILITY
   ---------------------------------------------------------- */

:root {
  --gm-muted: #46534c;
}

body {
  color: #17241c;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.gm-section-heading p,
.gm-portfolio-heading p,
.gm-portfolio .gm-section-heading p {
  color: #46534c;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
}


/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */

.gm-navbar,
.gm-navbar .gm-container {
  min-height: 120px;
}

.gm-brand-logo {
  width: clamp(215px, 18vw, 290px);
}

.gm-brand-logo-name {
  font-size: clamp(.98rem, 1.25vw, 1.18rem);
  font-weight: 500;
  letter-spacing: .16em;
}

.gm-nav {
  gap: clamp(22px, 2.25vw, 38px);
}

.gm-nav > a:not(.gm-btn) {
  color: #1f2e25;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .105em;
}

.gm-nav-cta {
  min-width: 220px;
  min-height: 56px;
  margin-left: 8px;
  padding: 18px 25px;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.gm-hero-content {
  width: min(100%, 780px);
}

.gm-hero h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.25vw, 4.5rem);
  line-height: 1.02;
}

.gm-hero-content > p {
  max-width: 640px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.06rem, 1.28vw, 1.2rem);
}


/* ----------------------------------------------------------
   SPECIALIST SERVICES
   ---------------------------------------------------------- */

.gm-services {
  padding: clamp(88px, 7vw, 112px) 0 clamp(92px, 7.5vw, 122px);
}

.gm-services-v2-heading {
  margin-bottom: clamp(44px, 4.2vw, 60px);
  padding-bottom: clamp(32px, 3.4vw, 44px);
}

.gm-services-v2-title h2 {
  max-width: 700px;
  font-size: clamp(2.8rem, 4.5vw, 4.85rem);
}

.gm-services-v2-intro p {
  color: rgba(255, 249, 239, .9);
  font-size: 1.03rem;
}

.gm-service-card {
  min-height: 385px;
}

.gm-service-card .card-body {
  padding: clamp(28px, 2.5vw, 38px);
}

.gm-service-v2-top {
  margin-bottom: 20px;
}

.gm-service-v2-icon {
  width: 104px !important;
  height: 104px !important;
}

.gm-service-card .card-text {
  margin-bottom: 22px;
  color: #5a5f59;
  font-size: .94rem;
  line-height: 1.66;
}

.gm-service-list {
  margin-top: clamp(50px, 5vw, 70px);
}


/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */

.gm-testimonials {
  padding: clamp(108px, 8.5vw, 140px) 0 clamp(90px, 7.5vw, 122px);
}

.gm-testimonials-heading {
  margin-bottom: clamp(42px, 4vw, 58px);
}

.gm-testimonials-heading h2 {
  font-size: clamp(2.7rem, 4.35vw, 4.55rem);
}

.gm-testimonial-stage {
  max-width: 980px;
}

.gm-testimonial-slide {
  padding: clamp(48px, 5.5vw, 72px) clamp(34px, 6vw, 82px);
}

.gm-testimonial-slide blockquote {
  max-width: 760px;
}

.gm-testimonial-slide blockquote p {
  font-size: clamp(1.65rem, 2.15vw, 2.2rem);
  line-height: 1.44;
}


/* ----------------------------------------------------------
   SELECTED PROJECTS
   ---------------------------------------------------------- */

.gm-portfolio {
  padding: clamp(92px, 7.5vw, 124px) 0 clamp(102px, 8.5vw, 138px);
}

.gm-portfolio > .gm-container {
  width: min(100%, 1680px);
  padding-left: clamp(22px, 3.7vw, 62px);
  padding-right: clamp(22px, 3.7vw, 62px);
}

.gm-portfolio-heading,
.gm-portfolio .gm-section-heading {
  margin-bottom: clamp(42px, 4.5vw, 60px);
}

.gm-project-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(350px, .7fr);
  grid-template-rows: repeat(2, minmax(320px, 380px));
  gap: clamp(16px, 1.55vw, 25px);
}

.gm-project-caption-copy p {
  color: rgba(255, 255, 255, .82);
  font-size: .81rem;
}

.gm-project-action {
  min-width: 150px;
  padding: 13px 16px;
}


/* ----------------------------------------------------------
   FINAL CONTACT
   ---------------------------------------------------------- */

.gm-contact {
  padding: clamp(96px, 8vw, 126px) 0;
  background: linear-gradient(135deg, #e5dccd 0%, #dbcfbd 100%);
}

.gm-contact h2 {
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 3.65vw, 3.95rem);
}

.gm-contact-intro {
  max-width: 700px;
  margin-bottom: 38px;
  color: #414d46;
  font-size: clamp(1.04rem, 1.18vw, 1.14rem);
}

.gm-contact .gm-actions {
  margin-bottom: 27px;
}

.gm-contact-primary,
.gm-contact-secondary {
  min-width: 255px;
  min-height: 58px;
  padding: 18px 26px;
}

.gm-contact .gm-contact-primary {
  box-shadow: 0 12px 26px rgba(23, 36, 27, .16);
}

.gm-contact .gm-contact-secondary {
  background: rgba(255, 255, 255, .38);
}

.gm-contact .gm-secondary-phone {
  color: #515b54;
  font-size: .94rem;
}


/* ----------------------------------------------------------
   RESPONSIVE REFINEMENTS
   ---------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .gm-brand-logo {
    width: 195px;
  }

  .gm-nav {
    gap: 19px;
  }

  .gm-nav > a:not(.gm-btn) {
    font-size: .72rem;
  }

  .gm-nav-cta {
    min-width: 185px;
  }

  .gm-project-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(310px, .78fr);
  }
}

@media (max-width: 991.98px) {
  .gm-navbar,
  .gm-navbar .gm-container {
    min-height: 88px;
  }

  .gm-brand-logo {
    width: 185px;
  }

  .gm-services-v2-heading {
    gap: 38px;
  }

  .gm-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 540px 360px;
  }
}

@media (max-width: 767.98px) {
  .gm-hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .gm-services {
    padding: 76px 0 84px;
  }

  .gm-service-card {
    min-height: 0;
  }

  .gm-testimonials {
    padding: 92px 0 78px;
  }

  .gm-testimonial-slide blockquote p {
    font-size: clamp(1.38rem, 5.8vw, 1.7rem);
  }

  .gm-portfolio {
    padding: 78px 0 88px;
  }

  .gm-project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 450px 320px 320px;
  }

  .gm-contact {
    padding: 82px 0 88px;
  }

  .gm-contact-primary,
  .gm-contact-secondary {
    min-width: 0;
  }
}

@media (max-width: 479.98px) {
  .gm-brand-logo {
    width: 168px;
  }

  .gm-project-grid {
    grid-template-rows: 400px 285px 285px;
  }
}


/* ==========================================================
   DESIGN DIRECTOR REVISION
   Deliberate changes to composition and hierarchy
   ========================================================== */

/* Stronger global actions */

.gm-btn {
  min-width: 220px;
  min-height: 56px;
  padding: 17px 25px;
  border-radius: 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .105em;
  box-shadow: none;
}

.gm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23, 36, 28, .13);
}


/* Introduction, larger image and cleaner editorial split */

.gm-craft-intro {
  padding: clamp(100px, 9vw, 150px) 0;
}

.gm-craft-intro .row {
  --mdb-gutter-x: clamp(3.5rem, 7vw, 8rem);
}

.gm-craft-visual {
  width: 100%;
  max-width: none;
  padding: 0 0 clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px);
}

.gm-craft-texture {
  inset: clamp(30px, 4vw, 58px) clamp(30px, 4vw, 58px) 0 0;
}

.gm-craft-photo img {
  height: clamp(590px, 48vw, 760px);
}

.gm-craft-copy {
  max-width: 620px;
  padding: 0;
}

.gm-craft-copy::before,
.gm-craft-small-rule {
  display: none;
}

.gm-craft-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(2.7rem, 4.2vw, 4.65rem);
  line-height: 1.01;
}

.gm-craft-copy h2 span {
  display: block;
  color: #69705b;
}

.gm-craft-lead {
  color: #26352c;
  font-size: clamp(1.12rem, 1.35vw, 1.3rem);
  line-height: 1.65;
}

.gm-craft-body {
  color: #4a554e;
  font-size: 1.03rem;
  line-height: 1.82;
}

.gm-craft-signature {
  margin-top: 32px;
}

.gm-craft-signature-rule {
  margin-bottom: 30px;
}


/* Services, two leading specialisms followed by four concise cards */

.gm-services {
  padding: clamp(92px, 7vw, 118px) 0 clamp(94px, 7.5vw, 124px);
}

.gm-services-v2-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  margin-bottom: clamp(46px, 4vw, 60px);
  padding-bottom: clamp(34px, 3.5vw, 46px);
}

.gm-services-v2-title h2 {
  max-width: 720px;
  font-size: clamp(3rem, 4.6vw, 5rem);
}

.gm-service-grid.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 26px);
  margin: 0;
}

.gm-service-grid.row > div {
  width: auto;
  max-width: none;
  padding: 0;
}

.gm-service-grid.row > div:nth-child(-n + 2) {
  grid-column: span 6;
}

.gm-service-grid.row > div:nth-child(n + 3) {
  grid-column: span 3;
}

.gm-service-card {
  min-height: 350px;
}

.gm-service-grid.row > div:nth-child(-n + 2) .gm-service-card {
  min-height: 410px;
}

.gm-service-card .card-body {
  padding: 30px 26px;
}

.gm-service-grid.row > div:nth-child(-n + 2) .card-body {
  padding: clamp(34px, 3vw, 48px);
}

.gm-service-v2-icon {
  width: 86px !important;
  height: 86px !important;
}

.gm-service-grid.row > div:nth-child(-n + 2) .gm-service-v2-icon {
  width: 116px !important;
  height: 116px !important;
}

.gm-service-card .card-title {
  font-size: clamp(1.25rem, 1.35vw, 1.5rem);
}

.gm-service-grid.row > div:nth-child(-n + 2) .card-title {
  font-size: clamp(1.55rem, 1.9vw, 2rem);
}

.gm-service-card .card-text {
  margin-bottom: 20px;
  font-size: .9rem;
  line-height: 1.62;
}

.gm-service-grid.row > div:nth-child(-n + 2) .card-text {
  max-width: 470px;
  font-size: 1rem;
}

.gm-service-list {
  max-width: none;
  margin-top: clamp(48px, 4.5vw, 66px);
}


/* Craft feature, greater image presence */

.gm-craft-feature {
  padding: clamp(100px, 8vw, 132px) 0 clamp(112px, 9vw, 148px);
}

.gm-craft-feature-heading {
  margin-bottom: clamp(52px, 5vw, 72px);
}

.gm-craft-feature-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  gap: clamp(26px, 3vw, 48px);
}

.gm-craft-feature-main img {
  height: clamp(620px, 54vw, 790px);
}

.gm-craft-feature-secondary img {
  height: clamp(420px, 35vw, 540px);
}

.gm-craft-feature-card {
  width: calc(100% + clamp(20px, 3vw, 50px));
  margin: clamp(-54px, -3.5vw, -34px) 0 0 clamp(-50px, -3vw, -20px);
  padding: clamp(32px, 3.2vw, 46px);
}


/* Testimonials, quieter heading and stronger quote */

.gm-testimonials-heading {
  max-width: 760px;
}

.gm-testimonials-heading h2 {
  font-size: clamp(2.75rem, 4.3vw, 4.65rem);
}

.gm-testimonial-number {
  display: none;
}

.gm-testimonial-stage {
  max-width: 920px;
}

.gm-testimonial-slide {
  min-height: 390px;
  padding: clamp(48px, 5vw, 70px) clamp(38px, 6vw, 86px);
}

.gm-testimonial-slide blockquote {
  max-width: 730px;
}

.gm-testimonial-slide blockquote p {
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
}


/* Heritage feature, image led rather than evenly split */

@media (min-width: 992px) {
  .gm-heritage-v2-media {
    width: 62%;
  }

  .gm-heritage-v2-copy {
    width: 38%;
  }
}

.gm-heritage-v2-media,
.gm-heritage-v2-media img {
  min-height: 820px;
}

.gm-heritage-v2-content {
  padding-right: clamp(42px, 4vw, 70px);
  padding-left: clamp(42px, 4vw, 70px);
}


/* Selected work, genuinely larger */

.gm-portfolio {
  padding: clamp(102px, 8vw, 134px) 0 clamp(112px, 9vw, 150px);
}

.gm-portfolio > .gm-container {
  width: min(100%, 1820px);
  padding-right: clamp(22px, 2.8vw, 48px);
  padding-left: clamp(22px, 2.8vw, 48px);
}

.gm-project-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, .62fr);
  grid-template-rows: repeat(2, minmax(360px, 430px));
  gap: clamp(16px, 1.5vw, 24px);
}

.gm-project-main .gm-project-caption-copy h3 {
  font-size: clamp(2rem, 2.65vw, 2.8rem);
}

.gm-project-caption-copy p {
  font-size: .84rem;
}

.gm-project-action {
  min-width: 156px;
  padding: 14px 17px;
}


/* Contact, now a deliberate final panel */

.gm-contact {
  padding: clamp(104px, 8.5vw, 142px) 0;
  background: #f7f2e9;
  border-top: 0;
}

.gm-contact::before {
  display: none;
}

.gm-contact .gm-container {
  width: min(calc(100% - 44px), 1240px);
  padding: clamp(58px, 6vw, 86px) clamp(28px, 6vw, 86px);
  background: linear-gradient(135deg, #e2d7c7 0%, #d8cab7 100%);
}

.gm-contact h2 {
  max-width: 780px;
  font-size: clamp(3rem, 4.2vw, 4.6rem);
}

.gm-contact-intro {
  max-width: 650px;
  margin-bottom: 40px;
  color: #3f4b44;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
}

.gm-contact-primary,
.gm-contact-secondary {
  min-width: 265px;
  min-height: 60px;
}


/* Responsive structure */

@media (max-width: 1199.98px) {
  .gm-service-grid.row > div:nth-child(-n + 2),
  .gm-service-grid.row > div:nth-child(n + 3) {
    grid-column: span 6;
  }

  .gm-service-card,
  .gm-service-grid.row > div:nth-child(-n + 2) .gm-service-card {
    min-height: 390px;
  }

  .gm-project-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  }
}

@media (max-width: 991.98px) {
  .gm-craft-intro .row {
    --mdb-gutter-x: 1.5rem;
  }

  .gm-craft-copy {
    max-width: 760px;
    margin-inline: auto;
    padding: 28px 0 0;
  }

  .gm-craft-feature-grid {
    grid-template-columns: 1fr;
  }

  .gm-craft-feature-card {
    width: calc(100% + 30px);
    margin-left: -30px;
  }

  .gm-heritage-v2-media,
  .gm-heritage-v2-media img {
    min-height: 610px;
  }

  .gm-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 570px 380px;
  }
}

@media (max-width: 767.98px) {
  .gm-craft-intro {
    padding: 72px 0 82px;
  }

  .gm-craft-visual {
    padding: 0 0 20px 18px;
  }

  .gm-craft-photo img {
    height: 520px;
  }

  .gm-craft-copy h2 {
    font-size: clamp(2.5rem, 10vw, 3.35rem);
  }

  .gm-service-grid.row {
    grid-template-columns: 1fr;
  }

  .gm-service-grid.row > div:nth-child(-n + 2),
  .gm-service-grid.row > div:nth-child(n + 3) {
    grid-column: auto;
  }

  .gm-service-card,
  .gm-service-grid.row > div:nth-child(-n + 2) .gm-service-card {
    min-height: 0;
  }

  .gm-craft-feature-main img {
    height: 520px;
  }

  .gm-craft-feature-card {
    width: calc(100% - 18px);
    margin: -28px 0 0 auto;
  }

  .gm-heritage-v2-media,
  .gm-heritage-v2-media img {
    min-height: 500px;
  }

  .gm-project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 460px 330px 330px;
  }

  .gm-contact {
    padding: 72px 0;
  }

  .gm-contact .gm-container {
    width: calc(100% - 30px);
    padding: 58px 22px;
  }

  .gm-contact h2 {
    font-size: clamp(2.55rem, 10vw, 3.25rem);
  }
}

@media (max-width: 479.98px) {
  .gm-project-grid {
    grid-template-rows: 410px 290px 290px;
  }
}

/* ==========================================================
   MOBILE NAVIGATION
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-navbar .gm-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }


  /* Keep checkbox functional but visually hidden */

  .nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }


  /* Hamburger button */

  .nav-toggle-label {
    position: relative;
    z-index: 1002;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 46px;
    height: 46px;
    margin-left: auto;

    border: 1px solid rgba(23, 36, 27, .2);
    cursor: pointer;
  }

  .nav-toggle-label span {
    display: block;
    width: 22px;
    height: 2px;

    background: var(--gm-ink, #17241b);
    transform-origin: center;

    transition:
      transform .25s ease,
      opacity .2s ease;
  }


  /* Closed mobile menu */

  .gm-nav {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    max-height: 0;
    margin: 0;
    padding: 0 24px;

    overflow: hidden;
    visibility: hidden;
    opacity: 0;

    background: #fffefa;
    border-top: 1px solid rgba(23, 36, 27, .1);
    box-shadow: 0 18px 35px rgba(23, 36, 27, .12);

    transition:
      max-height .35s ease,
      padding .35s ease,
      opacity .25s ease,
      visibility .25s ease;
  }

  .gm-nav > a:not(.gm-btn) {
    display: block;
    width: 100%;
    padding: 16px 0;

    border-bottom: 1px solid rgba(23, 36, 27, .1);
  }

  .gm-nav-cta {
    width: 100%;
    margin: 20px 0 0;
  }


  /* Open mobile menu */

  .nav-toggle:checked ~ .gm-nav {
    max-height: 600px;
    padding-top: 16px;
    padding-bottom: 24px;

    visibility: visible;
    opacity: 1;
  }


  /* Change hamburger into an X */

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

}
/* ==========================================================
   FINAL MOBILE LAYOUT REFINEMENTS
   ========================================================== */

@media (max-width: 767.98px) {

  /* ----------------------------------------------------------
     GENERAL
     ---------------------------------------------------------- */

  body {
    overflow-x: hidden;
  }

  .gm-container {
    padding-right: 22px;
    padding-left: 22px;
  }

  .gm-btn {
    min-width: 0;
  }


  /* ----------------------------------------------------------
     HERO
     ---------------------------------------------------------- */

  .gm-hero {
    min-height: 620px;
  }

  .gm-hero-content {
    width: 100%;
    max-width: 440px;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .gm-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 1.02;
  }

  .gm-hero-content > p {
    max-width: 34ch;
    font-size: .98rem;
    line-height: 1.65;
  }

  .gm-hero .gm-actions {
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .gm-hero .gm-btn {
    width: 100%;
  }


  /* ----------------------------------------------------------
     INTRODUCTION
     ---------------------------------------------------------- */

  .gm-craft-intro {
    padding: 70px 0 76px;
  }

  .gm-craft-intro .row {
    --mdb-gutter-x: 0;
  }

  .gm-craft-visual {
    width: 100%;
    padding: 0 0 18px 14px;
  }

  .gm-craft-texture {
    inset: 22px 22px 0 0;
  }

  .gm-craft-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .gm-craft-copy {
    max-width: none;
    margin: 0;
    padding: 24px 0 0;
  }

  .gm-craft-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 1.04;
  }

  .gm-craft-lead {
    font-size: 1.04rem;
    line-height: 1.6;
  }

  .gm-craft-body {
    font-size: .96rem;
    line-height: 1.75;
  }

  .gm-craft-signature {
    margin-top: 24px;
  }


  /* ----------------------------------------------------------
     SERVICES
     ---------------------------------------------------------- */

  .gm-services {
    padding: 72px 0 78px;
  }

  .gm-services-v2-heading {
    display: block;
    margin-bottom: 36px;
    padding-bottom: 28px;
  }

  .gm-services-v2-title h2 {
    max-width: 330px;
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .gm-services-v2-intro p {
    max-width: 36ch;
    font-size: .96rem;
    line-height: 1.7;
  }

  .gm-service-grid.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gm-service-grid.row > div,
  .gm-service-grid.row > div:nth-child(-n + 2),
  .gm-service-grid.row > div:nth-child(n + 3) {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .gm-service-card,
  .gm-service-grid.row > div:nth-child(-n + 2) .gm-service-card {
    min-height: 0;
  }

  .gm-service-card .card-body,
  .gm-service-grid.row > div:nth-child(-n + 2) .card-body {
    min-height: 0;
    padding: 28px 22px;
  }

  .gm-service-v2-icon,
  .gm-service-grid.row > div:nth-child(-n + 2) .gm-service-v2-icon {
    width: 82px !important;
    height: 82px !important;
  }

  .gm-service-card .card-title,
  .gm-service-grid.row > div:nth-child(-n + 2) .card-title {
    font-size: 1.45rem;
  }

  .gm-service-card .card-text,
  .gm-service-grid.row > div:nth-child(-n + 2) .card-text {
    max-width: 300px;
    margin-bottom: 18px;
    font-size: .93rem;
    line-height: 1.6;
  }

  .gm-service-list {
    margin-top: 36px;
  }


  /* ----------------------------------------------------------
     TRADITIONAL MATERIALS FEATURE
     ---------------------------------------------------------- */

  .gm-craft-feature {
    padding: 74px 0 82px;
  }

  .gm-craft-feature-heading {
    margin-bottom: 38px;
  }

  .gm-craft-feature-heading h2 {
    font-size: clamp(2.3rem, 9.5vw, 3rem);
    line-height: 1.04;
  }

  .gm-craft-feature-grid {
    display: block;
  }

  .gm-craft-feature-main img,
  .gm-craft-feature-secondary img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .gm-craft-feature-secondary {
    margin-top: 18px;
  }

  .gm-craft-feature-card {
    position: relative;
    width: calc(100% - 20px);
    margin: -24px 0 0 auto;
    padding: 28px 24px;
  }


  /* ----------------------------------------------------------
     TESTIMONIAL
     ---------------------------------------------------------- */

  .gm-testimonials {
    padding: 76px 0 70px;
  }

  .gm-testimonials-heading {
    margin-bottom: 30px;
  }

  .gm-testimonials-heading h2 {
    font-size: clamp(2.25rem, 9vw, 2.85rem);
  }

  .gm-testimonial-slides,
  .gm-testimonial-stage {
    min-height: 0;
  }

  .gm-testimonial-slide {
    min-height: 0;
    padding: 38px 24px;
  }

  .gm-testimonial-slide blockquote p {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    line-height: 1.4;
  }


  /* ----------------------------------------------------------
     HERITAGE FEATURE
     ---------------------------------------------------------- */

  .gm-heritage-v2-media,
  .gm-heritage-v2-media img {
    min-height: 0;
  }

  .gm-heritage-v2-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .gm-heritage-v2-content {
    padding: 54px 24px 60px;
  }

  .gm-heritage-v2-content h2 {
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 1.04;
  }


  /* ----------------------------------------------------------
     PROJECTS
     ---------------------------------------------------------- */

  .gm-portfolio {
    padding: 74px 0 82px;
  }

  .gm-portfolio > .gm-container {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .gm-project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
  }

  .gm-project-card,
  .gm-project-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gm-project-card img {
    height: 100%;
    object-fit: cover;
  }

  .gm-project-main .gm-project-caption-copy h3,
  .gm-project-caption-copy h3 {
    font-size: 1.55rem;
  }

  .gm-project-caption-copy p {
    font-size: .8rem;
  }


  /* ----------------------------------------------------------
     CONTACT
     ---------------------------------------------------------- */

  .gm-contact {
    padding: 64px 0;
  }

  .gm-contact .gm-container {
    width: calc(100% - 28px);
    padding: 44px 22px;
  }

  .gm-contact h2 {
    font-size: clamp(2.3rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .gm-contact-intro {
    margin-bottom: 28px;
    font-size: .96rem;
    line-height: 1.7;
  }

  .gm-contact .gm-actions {
    align-items: stretch;
    width: 100%;
  }

  .gm-contact-primary,
  .gm-contact-secondary {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

}


/* ==========================================================
   VERY SMALL MOBILES
   ========================================================== */

@media (max-width: 479.98px) {

  .gm-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .gm-hero {
    min-height: 590px;
  }

  .gm-project-grid {
    grid-template-rows: none;
  }

  .gm-project-card,
  .gm-project-main {
    aspect-ratio: 1 / 1;
  }

}
/* ==========================================================
   AREAS COVERED
   ========================================================== */

.gm-areas {
  position: relative;

  overflow: hidden;

  padding:
    clamp(94px, 8vw, 132px)
    0;

  background:
    linear-gradient(
      135deg,
      #eee5d7 0%,
      #e5d8c6 100%
    );

  color:
    var(--gm-ink, #17241b);
}


/* Soft background decoration */

.gm-areas::before {
  content: "";

  position: absolute;
  top: -170px;
  right: -130px;

  width: clamp(390px, 42vw, 680px);
  aspect-ratio: 1;

  border:
    1px solid rgba(126, 118, 87, .12);

  border-radius: 50%;

  pointer-events: none;
}


.gm-areas::after {
  content: "";

  position: absolute;
  right: 8%;
  bottom: -210px;

  width: clamp(300px, 32vw, 500px);
  aspect-ratio: 1;

  border:
    1px solid rgba(201, 121, 78, .12);

  border-radius: 50%;

  pointer-events: none;
}


/* Main layout */

.gm-areas-layout {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, .92fr)
    minmax(500px, 1.08fr);

  align-items: center;

  gap:
    clamp(60px, 8vw, 126px);
}


/* Introduction */

.gm-areas-intro {
  max-width: 680px;
}


.gm-areas .gm-eyebrow {
  margin-bottom: 22px;

  color:
    var(--gm-clay, #c9794e);
}


.gm-areas-intro h2 {
  max-width: 660px;

  margin:
    0 0 28px;

  color:
    var(--gm-ink, #17241b);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(2.8rem, 4.3vw, 4.7rem);

  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}


.gm-areas-intro h2 span {
  display: block;

  color: #73745d;
}


.gm-areas-intro > p:not(.gm-eyebrow) {
  max-width: 580px;

  margin:
    0 0 34px;

  color: #4d574f;

  font-size:
    clamp(1.03rem, 1.2vw, 1.15rem);

  line-height: 1.75;
}


/* Enquiry link */

.gm-areas-link {
  display: inline-flex;
  align-items: center;

  gap: 14px;

  padding-bottom: 6px;

  border-bottom:
    1px solid rgba(201, 121, 78, .5);

  color:
    var(--gm-ink, #17241b);

  font-size: .72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .13em;
  text-transform: uppercase;

  transition:
    gap .3s ease,
    color .3s ease,
    border-color .3s ease;
}


.gm-areas-link span {
  color:
    var(--gm-clay, #c9794e);

  font-size: 1.1rem;
}


.gm-areas-link:hover,
.gm-areas-link:focus {
  gap: 20px;

  color:
    var(--gm-clay, #c9794e);

  border-color:
    var(--gm-clay, #c9794e);
}


/* Location list */

.gm-areas-locations {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;
}


/* Individual locations */

.gm-areas-locations span {
  display: flex;
  align-items: center;

  min-height: 76px;

  padding:
    18px 22px;

  border:
    1px solid rgba(44, 55, 45, .11);

  background:
    rgba(255, 252, 246, .6);

  color: #2c392f;

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.08rem, 1.25vw, 1.28rem);

  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.01em;

  box-shadow:
    0 10px 28px rgba(55, 47, 37, .045);

  transition:
    color .3s ease,
    border-color .3s ease,
    background-color .3s ease,
    transform .3s ease;
}


.gm-areas-locations span::before {
  content: "";

  flex: 0 0 auto;

  width: 7px;
  height: 7px;

  margin-right: 14px;

  border-radius: 50%;

  background:
    var(--gm-clay, #c9794e);
}


.gm-areas-locations span:hover {
  color:
    var(--gm-ink, #17241b);

  border-color:
    rgba(201, 121, 78, .3);

  background:
    rgba(255, 252, 246, .92);

  transform:
    translateY(-2px);
}


/* Slight variation to avoid a rigid appearance */

.gm-areas-locations span:nth-child(3n + 2) {
  background:
    rgba(247, 240, 229, .76);
}


/* ==========================================================
   AREAS COVERED: TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-areas-layout {
    grid-template-columns: 1fr;

    gap: 52px;
  }


  .gm-areas-intro {
    max-width: 720px;
  }


  .gm-areas-locations {
    max-width: 760px;
  }

}


/* ==========================================================
   AREAS COVERED: MOBILE
   ========================================================== */

@media (max-width: 767.98px) {

  .gm-areas {
    padding:
      74px 0 80px;
  }


  .gm-areas::before {
    top: -110px;
    right: -220px;

    width: 420px;
  }


  .gm-areas::after {
    display: none;
  }


  .gm-areas-layout {
    gap: 40px;
  }


  .gm-areas-intro h2 {
    margin-bottom: 24px;

    font-size:
      clamp(2.35rem, 10vw, 3.1rem);
  }


  .gm-areas-intro > p:not(.gm-eyebrow) {
    font-size: .98rem;
  }


  .gm-areas-locations {
    grid-template-columns: 1fr;

    gap: 10px;
  }


  .gm-areas-locations span {
    min-height: 66px;

    padding:
      15px 18px;

    font-size:
      clamp(1.08rem, 5vw, 1.22rem);
  }

}


/* ==========================================================
   AREAS COVERED: REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-areas-link,
  .gm-areas-locations span {
    transition: none;
  }

}
/* ==========================================================
   ABOUT PAGE ONLY
   Add this complete block to the bottom of styles.css
   All classes use the gm-about- prefix
   ========================================================== */


/* ==========================================================
   ABOUT PAGE: SHARED
   ========================================================== */

.gm-about-page {
  overflow: hidden;

  background:
    var(--gm-paper, #fffefa);

  color:
    var(--gm-ink, #1c2921);
}


.gm-about-container {
  width:
    min(100% - 44px, 1320px);

  margin-inline:
    auto;
}


.gm-about-kicker {
  margin:
    0 0 17px;

  color:
    var(--gm-clay, #a66143);

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: .7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}


.gm-about-rule {
  display: flex;
  align-items: center;

  gap: 8px;

  width: 92px;

  margin:
    27px 0;
}


.gm-about-rule::before {
  content: "";

  width: 5px;
  height: 5px;

  flex: 0 0 5px;

  border-radius: 50%;

  background:
    var(--gm-clay, #a66143);
}


.gm-about-rule::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(28, 41, 33, .25);
}


.gm-about-text-link {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  width: fit-content;

  margin-top: 30px;

  color:
    var(--gm-clay, #a66143);

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  transition:
    color .25s ease;
}


.gm-about-text-link span {
  transition:
    transform .25s ease;
}


.gm-about-text-link:hover,
.gm-about-text-link:focus {
  color:
    var(--gm-ink, #1c2921);
}


.gm-about-text-link:hover span,
.gm-about-text-link:focus span {
  transform:
    translateY(4px);
}


/* ==========================================================
   ABOUT PAGE: HERO
   ========================================================== */

.gm-about-hero {
  display: grid;

  grid-template-columns:
    minmax(430px, .82fr)
    minmax(0, 1.18fr);

  min-height: 650px;

  background:
    #f6f1e8;
}


.gm-about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(65px, 7vw, 110px)
    clamp(34px, 6.5vw, 105px);
}


.gm-about-hero h1 {
  max-width: 650px;

  margin: 0;

  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(3.4rem, 5vw, 5.45rem);

  font-weight: 500;
  line-height: .99;
  letter-spacing: -.04em;
}


.gm-about-hero-lead {
  max-width: 560px;

  margin:
    0 0 17px;

  color:
    #354139;

  font-size:
    clamp(1.05rem, 1.3vw, 1.22rem);

  font-weight: 500;
  line-height: 1.7;
}


.gm-about-hero-body {
  max-width: 555px;

  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .98rem;
  line-height: 1.72;
}


.gm-about-hero-visual {
  position: relative;

  min-height: 650px;

  overflow: hidden;

  background:
    var(--gm-forest-deep, #17241b);
}


.gm-about-hero-main-image {
  position: absolute;
  inset: 0;

  margin: 0;
}


.gm-about-hero-main-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-about-hero-detail-image {
  position: absolute;
  right: clamp(25px, 4vw, 65px);
  bottom: clamp(25px, 4vw, 65px);

  width:
    clamp(145px, 18vw, 255px);

  aspect-ratio: 1;

  margin: 0;

  overflow: hidden;

  border:
    9px solid #f6f1e8;

  box-shadow:
    0 20px 50px
    rgba(15, 25, 18, .2);
}


.gm-about-hero-detail-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.gm-about-hero-note {
  position: absolute;
  top: clamp(24px, 4vw, 60px);
  left: 0;

  display: flex;
  flex-direction: column;

  min-width: 165px;

  padding:
    22px 28px;

  background:
    var(--gm-forest-deep, #17241b);

  color: #fff;
}


.gm-about-hero-note strong {
  color: #fff;

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(2.2rem, 3vw, 3.2rem);

  font-weight: 500;
  line-height: 1;
}


.gm-about-hero-note span {
  margin-top: 8px;

  color:
    rgba(255, 255, 255, .72);

  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ==========================================================
   ABOUT PAGE: INTRODUCTION
   ========================================================== */

.gm-about-introduction {
  padding:
    clamp(80px, 10vw, 140px) 0;

  background:
    var(--gm-paper, #fffefa);
}


.gm-about-introduction-grid {
  display: grid;

  grid-template-columns:
    .88fr 1.12fr;

  gap:
    clamp(55px, 9vw, 145px);

  align-items: start;
}


.gm-about-introduction-heading h2 {
  max-width: 550px;

  margin: 0;

  font-size:
    clamp(2.5rem, 4vw, 4.2rem);

  line-height: 1.04;
}


.gm-about-introduction-copy {
  max-width: 670px;

  padding-top: 12px;
}


.gm-about-introduction-copy p {
  margin:
    0 0 20px;

  color:
    var(--gm-muted, #526058);
}


.gm-about-introduction-copy p:last-child {
  margin-bottom: 0;
}


.gm-about-introduction-copy .gm-about-lead {
  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 2vw, 1.8rem);

  line-height: 1.5;
}


/* ==========================================================
   ABOUT PAGE: EXPERIENCE FEATURE
   ========================================================== */

.gm-about-experience {
  display: grid;

  grid-template-columns:
    1.05fr .95fr;

  min-height: 650px;
}


.gm-about-experience-image {
  min-height: 650px;

  overflow: hidden;
}


.gm-about-experience-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-about-experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(65px, 7vw, 110px);

  background:
    var(--gm-forest-deep, #17241b);

  color: #fff;
}


.gm-about-experience-copy .gm-about-kicker {
  color:
    #d49775;
}


.gm-about-experience-copy h2 {
  max-width: 590px;

  margin:
    0 0 27px;

  color: #fff;

  font-size:
    clamp(2.5rem, 3.7vw, 4rem);

  line-height: 1.04;
}


.gm-about-experience-copy > p {
  max-width: 600px;

  margin:
    0 0 18px;

  color:
    rgba(255, 255, 255, .74);
}


.gm-about-check-list {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    13px 28px;

  margin:
    18px 0 34px;

  padding: 0;

  list-style: none;
}


.gm-about-check-list li {
  position: relative;

  padding-left: 23px;

  color:
    rgba(255, 255, 255, .9);

  font-size: .9rem;
}


.gm-about-check-list li::before {
  content: "";

  position: absolute;
  top: .82em;
  left: 0;

  width: 9px;
  height: 1px;

  background:
    #d49775;
}


.gm-about-experience-copy .gm-btn {
  align-self: flex-start;

  background:
    transparent;

  border-color:
    rgba(255, 255, 255, .5);

  color: #fff;
}


.gm-about-experience-copy .gm-btn:hover,
.gm-about-experience-copy .gm-btn:focus {
  background:
    rgba(255, 255, 255, .1);

  border-color: #fff;

  color: #fff;
}


/* ==========================================================
   ABOUT PAGE: SECTION HEADINGS
   ========================================================== */

.gm-about-section-heading {
  max-width: 760px;

  margin:
    0 auto
    clamp(50px, 7vw, 85px);

  text-align: center;
}


.gm-about-section-heading h2 {
  margin:
    0 0 19px;

  font-size:
    clamp(2.5rem, 4vw, 4.1rem);

  line-height: 1.04;
}


.gm-about-section-heading > p:not(.gm-about-kicker) {
  max-width: 620px;

  margin:
    0 auto;

  color:
    var(--gm-muted, #526058);
}


/* ==========================================================
   ABOUT PAGE: PRINCIPLES
   ========================================================== */

.gm-about-principles {
  padding:
    clamp(80px, 10vw, 135px) 0;

  background:
    #f6f1e8;
}


.gm-about-principles-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(28, 41, 33, .15);

  border-bottom:
    1px solid
    rgba(28, 41, 33, .15);
}


.gm-about-principle {
  padding:
    clamp(38px, 4.5vw, 65px);

  border-right:
    1px solid
    rgba(28, 41, 33, .15);
}


.gm-about-principle:last-child {
  border-right: 0;
}


.gm-about-principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  margin-bottom: 25px;

  border:
    1px solid
    rgba(166, 97, 67, .45);

  color:
    var(--gm-clay, #a66143);

  font-size: 1.15rem;
}


.gm-about-principle h3 {
  margin:
    0 0 13px;

  font-size:
    clamp(1.45rem, 2vw, 1.9rem);
}


.gm-about-principle p {
  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .94rem;
  line-height: 1.72;
}


/* ==========================================================
   ABOUT PAGE: BUILDING TYPES
   ========================================================== */

.gm-about-buildings {
  padding:
    clamp(85px, 11vw, 150px) 0;

  background:
    var(--gm-paper, #fffefa);
}


.gm-about-buildings-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap:
    clamp(20px, 2.5vw, 34px);
}


.gm-about-building-card {
  background:
    #f7f3ea;
}


.gm-about-building-card figure {
  height:
    clamp(270px, 26vw, 390px);

  margin: 0;

  overflow: hidden;
}


.gm-about-building-card img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;
}


.gm-about-building-card:hover img {
  transform:
    scale(1.018);
}


.gm-about-building-copy {
  padding:
    clamp(29px, 3.2vw, 43px);
}


.gm-about-card-label {
  margin:
    0 0 13px;

  color:
    var(--gm-clay, #a66143);

  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}


.gm-about-building-copy h3 {
  margin:
    0 0 13px;

  font-size:
    clamp(1.55rem, 2.15vw, 2rem);
}


.gm-about-building-copy p:last-child {
  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .93rem;
  line-height: 1.7;
}


/* ==========================================================
   ABOUT PAGE: DETAIL QUOTE
   ========================================================== */

.gm-about-detail-feature {
  display: grid;

  grid-template-columns:
    1.2fr .8fr;

  min-height: 500px;

  background:
    var(--gm-stone, #ebe7dc);
}


.gm-about-detail-image {
  min-height: 500px;

  overflow: hidden;
}


.gm-about-detail-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-about-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(55px, 7vw, 100px);
}


.gm-about-quote-mark {
  height: 44px;

  margin-bottom: 20px;

  overflow: hidden;

  color:
    var(--gm-clay, #a66143);

  font-family:
    Georgia,
    serif;

  font-size: 5rem;
  line-height: .9;
}


.gm-about-detail-copy blockquote {
  margin: 0;
}


.gm-about-detail-copy blockquote p {
  margin:
    0 0 27px;

  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.7rem, 2.7vw, 2.7rem);

  line-height: 1.35;
}


.gm-about-quote-name {
  margin: 0;

  color:
    var(--gm-muted, #526058);


  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ==========================================================
   ABOUT PAGE: PROJECT MANAGEMENT
   ========================================================== */

.gm-about-management {
  padding:
    clamp(80px, 10vw, 140px) 0;

  background:
    var(--gm-paper, #fffefa);
}


.gm-about-management-grid {
  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap:
    clamp(55px, 9vw, 145px);

  align-items: start;
}


.gm-about-management-heading h2 {
  max-width: 590px;

  margin: 0;

  font-size:
    clamp(2.4rem, 3.8vw, 4rem);

  line-height: 1.04;
}


.gm-about-management-copy {
  padding-top: 12px;
}


.gm-about-management-copy p {
  margin:
    0 0 20px;

  color:
    var(--gm-muted, #526058);
}


.gm-about-management-copy p:first-child {
  color:
    var(--gm-ink, #1c2921);

  font-size:
    clamp(1.12rem, 1.5vw, 1.28rem);

  font-weight: 500;
}


/* ==========================================================
   ABOUT PAGE: CTA
   ========================================================== */

.gm-about-cta {
  padding:
    clamp(62px, 7vw, 90px) 0;

  background-color: #59664e;
  color: #fff;
}


.gm-about-cta-grid {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap:
    50px;

  align-items: center;
}


.gm-about-cta .gm-about-kicker {
  color:
    #d49775;
}


.gm-about-cta h2 {
  max-width: 800px;

  margin:
    0 0 16px;

  color: #fff;

  font-size:
    clamp(2.2rem, 3.7vw, 3.8rem);

  line-height: 1.05;
}


.gm-about-cta p:not(.gm-about-kicker) {
  max-width: 700px;

  margin: 0;

  color:
    rgba(255, 255, 255, .7);
}


.gm-about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  min-width: 230px;
  min-height: 58px;

  padding:
    16px 21px;

  border:
    1px solid
    var(--gm-clay, #a66143);

  border-radius: 0;

  background:
    transparent;

  color: #fff;

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  box-shadow: none;

  transition:
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gm-about-cta-button span {
  transition:
    transform .25s ease;
}


.gm-about-cta-button:hover,
.gm-about-cta-button:focus {
  background:
    var(--gm-clay, #a66143);

  border-color:
    var(--gm-clay, #a66143);

  color: #fff;

  transform:
    translateY(-2px);

  box-shadow: none;
}


.gm-about-cta-button:hover span,
.gm-about-cta-button:focus span {
  transform:
    translateX(4px);
}


/* ==========================================================
   ABOUT PAGE: TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-about-hero {
    grid-template-columns: 1fr;

    min-height: 0;
  }


  .gm-about-hero-copy {
    order: 2;

    padding:
      65px 40px;
  }


  .gm-about-hero-visual {
    min-height: 500px;
  }


  .gm-about-introduction-grid,
  .gm-about-management-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }


  .gm-about-introduction-copy,
  .gm-about-management-copy {
    max-width: 760px;

    padding-top: 0;
  }


  .gm-about-experience {
    grid-template-columns: 1fr;
  }


  .gm-about-experience-image {
    min-height: 480px;
  }


  .gm-about-experience-copy {
    padding:
      70px 42px;
  }


  .gm-about-principles-grid {
    grid-template-columns: 1fr;
  }


  .gm-about-principle {
    border-right: 0;

    border-bottom:
      1px solid
      rgba(28, 41, 33, .15);
  }


  .gm-about-principle:last-child {
    border-bottom: 0;
  }


  .gm-about-buildings-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .gm-about-building-card:last-child {
    grid-column:
      1 / -1;

    display: grid;

    grid-template-columns:
      1fr 1fr;
  }


  .gm-about-building-card:last-child figure {
    height: 100%;
    min-height: 340px;
  }


  .gm-about-detail-feature {
    grid-template-columns: 1fr;
  }


  .gm-about-detail-image {
    min-height: 430px;
  }

}


/* ==========================================================
   ABOUT PAGE: MOBILE
   ========================================================== */

@media (max-width: 767.98px) {

  .gm-about-container {
    width:
      min(100% - 34px, 1320px);
  }


  .gm-about-hero-copy {
    padding:
      50px 22px
      55px;
  }


  .gm-about-hero h1 {
    font-size:
      clamp(2.7rem, 11vw, 3.65rem);
  }


  .gm-about-hero-visual {
    min-height: 365px;
  }


  .gm-about-hero-detail-image {
    right: 18px;
    bottom: 18px;

    width: 125px;

    border-width: 6px;
  }


  .gm-about-hero-note {
    top: 18px;

    min-width: 135px;

    padding:
      17px 21px;
  }


  .gm-about-hero-note strong {
    font-size: 2rem;
  }


  .gm-about-introduction,
  .gm-about-principles,
  .gm-about-buildings,
  .gm-about-management {
    padding:
      72px 0;
  }


  .gm-about-introduction-heading h2,
  .gm-about-management-heading h2,
  .gm-about-section-heading h2 {
    font-size:
      clamp(2.25rem, 9vw, 3.15rem);
  }


  .gm-about-experience-image {
    min-height: 350px;
  }


  .gm-about-experience-copy {
    padding:
      55px 22px;
  }


  .gm-about-experience-copy h2 {
    font-size:
      clamp(2.25rem, 9vw, 3.15rem);
  }


  .gm-about-check-list {
    grid-template-columns: 1fr;
  }


  .gm-about-principle {
    padding:
      38px 8px;
  }


  .gm-about-buildings-grid {
    grid-template-columns: 1fr;
  }


  .gm-about-building-card:last-child {
    grid-column: auto;

    display: block;
  }


  .gm-about-building-card figure,
  .gm-about-building-card:last-child figure {
    height: 285px;
    min-height: 0;
  }


  .gm-about-detail-image {
    min-height: 320px;
  }


  .gm-about-detail-copy {
    padding:
      50px 22px;
  }


  .gm-about-detail-copy blockquote p {
    font-size:
      clamp(1.6rem, 7vw, 2.15rem);
  }


  .gm-about-cta-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .gm-about-cta-button {
    width: 100%;
  }

}


/* ==========================================================
   ABOUT PAGE: SMALL MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .gm-about-hero-visual {
    min-height: 320px;
  }


  .gm-about-hero-main-image img {
    object-position:
      center;
  }


  .gm-about-hero-detail-image {
    width: 110px;
  }


  .gm-about-hero-note {
    min-width: 120px;
  }


  .gm-about-hero-note span {
    font-size: .56rem;
  }


  .gm-about-experience-image {
    min-height: 300px;
  }


  .gm-about-detail-image {
    min-height: 280px;
  }

}


/* ==========================================================
   ABOUT PAGE: REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-about-building-card img,
  .gm-about-text-link,
  .gm-about-text-link span,
  .gm-about-cta-button,
  .gm-about-cta-button span {
    transition: none;
  }

}

/* ==========================================================
   SERVICES PAGE ONLY
   Add this complete block to the bottom of styles.css
   All classes use the gm-services-page- prefix
   ========================================================== */


/* ==========================================================
   SERVICES PAGE: SHARED
   ========================================================== */

.gm-services-page {
  overflow: hidden;

  background:
    var(--gm-paper, #fffefa);

  color:
    var(--gm-ink, #1c2921);
}


.gm-services-page-container {
  width:
    min(100% - 44px, 1320px);

  margin-inline:
    auto;
}


.gm-services-page-kicker {
  margin:
    0 0 17px;

  color:
    var(--gm-clay, #a66143);

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: .7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}


.gm-services-page-rule {
  display: flex;
  align-items: center;

  gap: 8px;

  width: 92px;

  margin:
    27px 0;
}


.gm-services-page-rule::before {
  content: "";

  width: 5px;
  height: 5px;

  flex: 0 0 5px;

  border-radius: 50%;

  background:
    var(--gm-clay, #a66143);
}


.gm-services-page-rule::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(28, 41, 33, .25);
}


.gm-services-page-text-link {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  width: fit-content;

  margin-top: 25px;

  color:
    var(--gm-clay, #a66143);

  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  transition:
    color .25s ease;
}


.gm-services-page-text-link span {
  transition:
    transform .25s ease;
}


.gm-services-page-text-link:hover,
.gm-services-page-text-link:focus {
  color:
    var(--gm-ink, #1c2921);
}


.gm-services-page-text-link:hover span,
.gm-services-page-text-link:focus span {
  transform:
    translateY(3px);
}


/* ==========================================================
   SERVICES PAGE: HERO
   ========================================================== */

.gm-services-page-hero {
  display: grid;

  grid-template-columns:
    minmax(430px, .82fr)
    minmax(0, 1.18fr);

  min-height: 630px;

  background:
    #f6f1e8;
}


.gm-services-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(65px, 7vw, 110px)
    clamp(34px, 6.5vw, 105px);
}


.gm-services-page-hero h1 {
  max-width: 660px;

  margin: 0;

  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(3.4rem, 5vw, 5.4rem);

  font-weight: 500;
  line-height: .99;
  letter-spacing: -.04em;
}


.gm-services-page-hero-lead {
  max-width: 560px;

  margin:
    0 0 17px;

  color:
    #354139;

  font-size:
    clamp(1.05rem, 1.3vw, 1.22rem);

  font-weight: 500;
  line-height: 1.7;
}


.gm-services-page-hero-body {
  max-width: 550px;

  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .98rem;
  line-height: 1.72;
}


.gm-services-page-hero-visual {
  position: relative;

  min-height: 630px;

  overflow: hidden;

  background:
    var(--gm-forest-deep, #17241b);
}


.gm-services-page-hero-image {
  position: absolute;
  inset: 0;

  margin: 0;
}


.gm-services-page-hero-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-services-page-hero-label {
  position: absolute;
  right: 0;
  bottom: 0;

  display: grid;

  gap: 5px;

  min-width:
    clamp(220px, 24vw, 330px);

  padding:
    clamp(24px, 3vw, 38px);

  background:
    rgba(23, 36, 27, .95);

  color: #fff;
}


.gm-services-page-hero-label strong {
  color: #fff;

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.4rem, 2vw, 2rem);

  font-weight: 500;
}


.gm-services-page-hero-label span {
  color:
    rgba(255, 255, 255, .68);

  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}


/* ==========================================================
   SERVICES PAGE: INTRODUCTION
   ========================================================== */

.gm-services-page-introduction {
  padding:
    clamp(80px, 10vw, 140px) 0;
}


.gm-services-page-introduction-grid {
  display: grid;

  grid-template-columns:
    .86fr 1.14fr;

  gap:
    clamp(55px, 9vw, 145px);
}


.gm-services-page-introduction-heading h2 {
  max-width: 530px;

  margin: 0;

  font-size:
    clamp(2.5rem, 4vw, 4.2rem);

  line-height: 1.04;
}


.gm-services-page-introduction-copy {
  max-width: 670px;

  padding-top: 12px;
}


.gm-services-page-introduction-copy p {
  margin:
    0 0 20px;

  color:
    var(--gm-muted, #526058);
}


.gm-services-page-introduction-copy p:last-child {
  margin-bottom: 0;
}


.gm-services-page-introduction-copy .gm-services-page-lead {
  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 2vw, 1.8rem);

  line-height: 1.5;
}


/* ==========================================================
   SERVICES PAGE: LIME FEATURE
   ========================================================== */

.gm-services-page-lime {
  display: grid;

  grid-template-columns:
    1.08fr .92fr;

  min-height: 620px;
}


.gm-services-page-lime-image {
  min-height: 620px;

  overflow: hidden;
}


.gm-services-page-lime-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-services-page-lime-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(65px, 7vw, 110px);

  background:
    var(--gm-forest-deep, #17241b);

  color: #fff;
}


.gm-services-page-lime-copy .gm-services-page-kicker {
  color:
    #d49775;
}


.gm-services-page-lime-copy h2 {
  max-width: 580px;

  margin:
    0 0 27px;

  color: #fff;

  font-size:
    clamp(2.6rem, 3.8vw, 4.1rem);

  line-height: 1.04;
}


.gm-services-page-lime-copy p {
  max-width: 600px;

  margin:
    0 0 18px;

  color:
    rgba(255, 255, 255, .72);
}


.gm-services-page-lime-copy .gm-services-page-lime-lead {
  color:
    rgba(255, 255, 255, .92);

  font-size:
    clamp(1.05rem, 1.4vw, 1.2rem);

  font-weight: 500;
}


.gm-services-page-lime-copy .gm-btn {
  align-self: flex-start;

  margin-top: 14px;

  background:
    transparent;

  border-color:
    rgba(255, 255, 255, .5);

  color: #fff;
}


.gm-services-page-lime-copy .gm-btn:hover,
.gm-services-page-lime-copy .gm-btn:focus {
  background:
    rgba(255, 255, 255, .1);

  border-color: #fff;

  color: #fff;
}


/* ==========================================================
   SERVICES PAGE: SECTION HEADINGS
   ========================================================== */

.gm-services-page-section-heading {
  max-width: 790px;

  margin:
    0 auto
    clamp(50px, 7vw, 82px);

  text-align: center;
}


.gm-services-page-section-heading h2 {
  margin:
    0 0 19px;

  font-size:
    clamp(2.5rem, 4vw, 4.1rem);

  line-height: 1.04;
}


.gm-services-page-section-heading > p:not(
  .gm-services-page-kicker
) {
  max-width: 650px;

  margin:
    0 auto;

  color:
    var(--gm-muted, #526058);
}


/* ==========================================================
   SERVICES PAGE: LIME BENEFITS
   ========================================================== */

.gm-services-page-benefits {
  padding:
    clamp(80px, 10vw, 135px) 0;

  background:
    #f6f1e8;
}


.gm-services-page-benefits-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(28, 41, 33, .15);

  border-bottom:
    1px solid
    rgba(28, 41, 33, .15);
}


.gm-services-page-benefit {
  padding:
    clamp(34px, 4vw, 55px);

  border-right:
    1px solid
    rgba(28, 41, 33, .15);
}


.gm-services-page-benefit:last-child {
  border-right: 0;
}


.gm-services-page-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin-bottom: 24px;

  border:
    1px solid
    rgba(166, 97, 67, .45);

  color:
    var(--gm-clay, #a66143);

  font-size: 1.05rem;
}


.gm-services-page-benefit h3 {
  margin:
    0 0 12px;

  font-size:
    clamp(1.4rem, 1.8vw, 1.8rem);
}


.gm-services-page-benefit p {
  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .9rem;
  line-height: 1.7;
}


/* ==========================================================
   SERVICES PAGE: MATERIALS MATTER
   ========================================================== */

.gm-services-page-materials {
  padding:
    clamp(80px, 10vw, 135px) 0;

  background:
    var(--gm-stone, #ebe7dc);
}


.gm-services-page-materials-grid {
  display: grid;

  grid-template-columns:
    .88fr 1.12fr;

  gap:
    clamp(55px, 9vw, 145px);
}


.gm-services-page-materials-heading h2 {
  max-width: 570px;

  margin: 0;

  font-size:
    clamp(2.5rem, 3.9vw, 4.1rem);

  line-height: 1.04;
}


.gm-services-page-materials-copy {
  max-width: 680px;

  padding-top: 12px;
}


.gm-services-page-materials-copy p {
  margin:
    0 0 20px;

  color:
    var(--gm-muted, #526058);
}


.gm-services-page-materials-copy p:last-child {
  margin-bottom: 0;
}


.gm-services-page-materials-copy .gm-services-page-lead {
  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 2vw, 1.8rem);

  line-height: 1.5;
}


/* ==========================================================
   SERVICES PAGE: TRADITIONAL SERVICES
   ========================================================== */

.gm-services-page-traditional {
  padding:
    clamp(85px, 11vw, 150px) 0;

  background:
    var(--gm-paper, #fffefa);
}


.gm-services-page-service-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(28, 41, 33, .16);

  border-left:
    1px solid
    rgba(28, 41, 33, .16);
}


.gm-services-page-service {
  min-height: 245px;

  padding:
    clamp(30px, 3.4vw, 47px);

  border-right:
    1px solid
    rgba(28, 41, 33, .16);

  border-bottom:
    1px solid
    rgba(28, 41, 33, .16);

  background:
    var(--gm-paper, #fffefa);
}


.gm-services-page-service-line {
  display: block;

  width: 39px;
  height: 2px;

  margin-bottom: 25px;

  background:
    var(--gm-clay, #a66143);
}


.gm-services-page-service h3 {
  margin:
    0 0 13px;

  font-size:
    clamp(1.35rem, 1.75vw, 1.75rem);

  line-height: 1.13;
}


.gm-services-page-service p {
  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .88rem;
  line-height: 1.7;
}


/* ==========================================================
   SERVICES PAGE: PREPARATION FEATURE
   ========================================================== */

.gm-services-page-process {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  min-height: 535px;

  background:
    #f6f1e8;
}


.gm-services-page-process-image {
  min-height: 535px;

  overflow: hidden;
}


.gm-services-page-process-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-services-page-process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(55px, 7vw, 100px);
}


.gm-services-page-process-copy h2 {
  max-width: 580px;

  margin:
    0 0 26px;

  font-size:
    clamp(2.45rem, 3.7vw, 3.9rem);

  line-height: 1.04;
}


.gm-services-page-process-copy p {
  max-width: 580px;

  margin:
    0 0 18px;

  color:
    var(--gm-muted, #526058);
}


.gm-services-page-process-copy p:last-child {
  margin-bottom: 0;
}


/* ==========================================================
   SERVICES PAGE: MODERN PLASTERING
   ========================================================== */

.gm-services-page-modern {
  padding:
    clamp(85px, 11vw, 145px) 0;

  background:
    var(--gm-paper, #fffefa);
}


.gm-services-page-modern-grid {
  display: grid;

  grid-template-columns:
    .95fr 1.05fr;

  gap:
    clamp(55px, 10vw, 160px);
}


.gm-services-page-modern-copy h2 {
  max-width: 650px;

  margin:
    0 0 27px;

  font-size:
    clamp(2.5rem, 4vw, 4.2rem);

  line-height: 1.04;
}


.gm-services-page-modern-copy p {
  max-width: 630px;

  margin:
    0 0 18px;

  color:
    var(--gm-muted, #526058);
}


.gm-services-page-modern-list ul {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    0 40px;

  margin: 0;
  padding: 0;

  border-top:
    1px solid
    rgba(28, 41, 33, .16);

  list-style: none;
}


.gm-services-page-modern-list li {
  position: relative;

  padding:
    18px 0
    18px 23px;

  border-bottom:
    1px solid
    rgba(28, 41, 33, .16);

  color:
    #354139;

  font-size: .92rem;
}


.gm-services-page-modern-list li::before {
  content: "";

  position: absolute;
  top: 1.9em;
  left: 0;

  width: 8px;
  height: 1px;

  background:
    var(--gm-clay, #a66143);
}


/* ==========================================================
   SERVICES PAGE: MODERN IMAGE
   ========================================================== */

.gm-services-page-modern-image {
  position: relative;

  height:
    clamp(390px, 42vw, 610px);

  overflow: hidden;

  background:
    var(--gm-forest-deep, #17241b);
}


.gm-services-page-modern-image > img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-services-page-modern-image-caption {
  position: absolute;
  right: 0;
  bottom: 0;

  min-width:
    clamp(240px, 30vw, 410px);

  padding:
    27px 35px;

  background:
    rgba(23, 36, 27, .94);

  color: #fff;
}


.gm-services-page-modern-image-caption p {
  margin:
    0 0 5px;

  color: #fff;

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 2vw, 1.9rem);
}


.gm-services-page-modern-image-caption span {
  color:
    rgba(255, 255, 255, .65);

  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}


/* ==========================================================
   SERVICES PAGE: SCAFFOLDING
   ========================================================== */

.gm-services-page-scaffolding {
  padding:
    clamp(70px, 8vw, 105px) 0;

  background:
    #f6f1e8;
}


.gm-services-page-scaffolding-grid {
  display: grid;

  grid-template-columns:
    .78fr 1.22fr;

  gap:
    clamp(55px, 9vw, 145px);

  align-items: start;
}


.gm-services-page-scaffolding h2 {
  margin: 0;

  font-size:
    clamp(2.5rem, 3.8vw, 4rem);
}


.gm-services-page-scaffolding-grid > div:last-child {
  max-width: 650px;

  padding-top: 9px;
}


.gm-services-page-scaffolding-grid p {
  margin: 0;

  color:
    var(--gm-muted, #526058);
}


/* ==========================================================
   SERVICES PAGE: CTA
   ========================================================== */

.gm-services-page-cta {
  padding:
    clamp(62px, 7vw, 90px) 0;

 background-color: #59664e;

  color: #fff;
}


.gm-services-page-cta-grid {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 50px;

  align-items: center;
}


.gm-services-page-cta .gm-services-page-kicker {
  color:
    #d49775;
}


.gm-services-page-cta h2 {
  max-width: 850px;

  margin:
    0 0 16px;

  color: #fff;

  font-size:
    clamp(2.2rem, 3.7vw, 3.8rem);

  line-height: 1.05;
}


.gm-services-page-cta p:not(
  .gm-services-page-kicker
) {
  max-width: 720px;

  margin: 0;

  color:
    rgba(255, 255, 255, .7);
}


.gm-services-page-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  min-width: 230px;
  min-height: 58px;

  padding:
    16px 21px;

  border:
    1px solid
    var(--gm-clay, #a66143);

  border-radius: 0;

  background:
    transparent;

  color: #fff;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  box-shadow: none;

  transition:
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gm-services-page-cta-button span {
  transition:
    transform .25s ease;
}


.gm-services-page-cta-button:hover,
.gm-services-page-cta-button:focus {
  background:
    var(--gm-clay, #a66143);

  border-color:
    var(--gm-clay, #a66143);

  color: #fff;

  transform:
    translateY(-2px);

  box-shadow: none;
}


.gm-services-page-cta-button:hover span,
.gm-services-page-cta-button:focus span {
  transform:
    translateX(4px);
}


/* ==========================================================
   SERVICES PAGE: TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-services-page-hero {
    grid-template-columns: 1fr;

    min-height: 0;
  }


  .gm-services-page-hero-copy {
    order: 2;

    padding:
      65px 40px;
  }


  .gm-services-page-hero-visual {
    min-height: 500px;
  }


  .gm-services-page-introduction-grid,
  .gm-services-page-materials-grid,
  .gm-services-page-modern-grid,
  .gm-services-page-scaffolding-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }


  .gm-services-page-introduction-copy,
  .gm-services-page-materials-copy,
  .gm-services-page-modern-copy,
  .gm-services-page-scaffolding-grid > div:last-child {
    max-width: 760px;

    padding-top: 0;
  }


  .gm-services-page-lime,
  .gm-services-page-process {
    grid-template-columns: 1fr;
  }


  .gm-services-page-lime-image {
    min-height: 480px;
  }


  .gm-services-page-lime-copy,
  .gm-services-page-process-copy {
    padding:
      70px 42px;
  }


  .gm-services-page-benefits-grid,
  .gm-services-page-service-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .gm-services-page-benefit:nth-child(2) {
    border-right: 0;
  }


  .gm-services-page-service {
    min-height: 220px;
  }


  .gm-services-page-process-image {
    min-height: 450px;
  }

}


/* ==========================================================
   SERVICES PAGE: MOBILE
   ========================================================== */

@media (max-width: 767.98px) {

  .gm-services-page-container {
    width:
      min(100% - 34px, 1320px);
  }


  .gm-services-page-hero-copy {
    padding:
      50px 22px
      55px;
  }


  .gm-services-page-hero h1 {
    font-size:
      clamp(2.7rem, 11vw, 3.65rem);
  }


  .gm-services-page-hero-visual {
    min-height: 350px;
  }


  .gm-services-page-hero-label {
    min-width: 200px;

    padding: 20px;
  }


  .gm-services-page-introduction,
  .gm-services-page-benefits,
  .gm-services-page-materials,
  .gm-services-page-traditional,
  .gm-services-page-modern {
    padding:
      72px 0;
  }


  .gm-services-page-introduction-heading h2,
  .gm-services-page-materials-heading h2,
  .gm-services-page-modern-copy h2,
  .gm-services-page-section-heading h2 {
    font-size:
      clamp(2.25rem, 9vw, 3.15rem);
  }


  .gm-services-page-lime-image {
    min-height: 340px;
  }


  .gm-services-page-lime-copy,
  .gm-services-page-process-copy {
    padding:
      55px 22px;
  }


  .gm-services-page-lime-copy h2,
  .gm-services-page-process-copy h2 {
    font-size:
      clamp(2.25rem, 9vw, 3.15rem);
  }


  .gm-services-page-benefits-grid,
  .gm-services-page-service-grid {
    grid-template-columns: 1fr;
  }


  .gm-services-page-benefit {
    border-right: 0;

    border-bottom:
      1px solid
      rgba(28, 41, 33, .15);
  }


  .gm-services-page-benefit:last-child {
    border-bottom: 0;
  }


  .gm-services-page-service {
    min-height: 0;

    padding:
      35px 25px;
  }


  .gm-services-page-process-image {
    min-height: 320px;
  }


  .gm-services-page-modern-list ul {
    grid-template-columns: 1fr;
  }


  .gm-services-page-modern-image {
    height: 330px;
  }


  .gm-services-page-modern-image-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;

    min-width: 0;

    padding:
      20px 22px;
  }


  .gm-services-page-cta-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .gm-services-page-cta-button {
    width: 100%;
  }

}


/* ==========================================================
   SERVICES PAGE: SMALL MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .gm-services-page-hero-visual {
    min-height: 310px;
  }


  .gm-services-page-lime-image {
    min-height: 300px;
  }


  .gm-services-page-process-image {
    min-height: 280px;
  }


  .gm-services-page-modern-image {
    height: 290px;
  }

}


/* ==========================================================
   SERVICES PAGE: REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-services-page-text-link,
  .gm-services-page-text-link span,
  .gm-services-page-cta-button,
  .gm-services-page-cta-button span {
    transition: none;
  }

}

/* ==========================================================
   OUR WORK PAGE ONLY
   Add this complete block to the bottom of styles.css
   All classes use the gm-work-page- prefix
   ========================================================== */


/* ==========================================================
   OUR WORK: SHARED
   ========================================================== */

.gm-work-page {
  overflow: hidden;

  background:
    var(--gm-paper, #fffefa);

  color:
    var(--gm-ink, #1c2921);
}


.gm-work-page-container {
  width:
    min(100% - 44px, 1320px);

  margin-inline:
    auto;
}


.gm-work-page-kicker {
  margin:
    0 0 17px;

  color:
    var(--gm-clay, #a66143);

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: .7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}


.gm-work-page-rule {
  display: flex;
  align-items: center;

  gap: 8px;

  width: 92px;

  margin:
    27px 0;
}


.gm-work-page-rule::before {
  content: "";

  width: 5px;
  height: 5px;

  flex: 0 0 5px;

  border-radius: 50%;

  background:
    var(--gm-clay, #a66143);
}


.gm-work-page-rule::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(28, 41, 33, .25);
}


.gm-work-page-text-link,
.gm-work-page-project-link {
  display: inline-flex;
  align-items: center;

  gap: 18px;

  width: fit-content;

  color:
    var(--gm-clay, #a66143);

  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  transition:
    color .25s ease;
}


.gm-work-page-text-link {
  margin-top: 30px;
}


.gm-work-page-text-link span,
.gm-work-page-project-link span {
  transition:
    transform .25s ease;
}


.gm-work-page-text-link:hover,
.gm-work-page-text-link:focus,
.gm-work-page-project-link:hover,
.gm-work-page-project-link:focus {
  color:
    var(--gm-ink, #1c2921);
}


.gm-work-page-text-link:hover span,
.gm-work-page-text-link:focus span {
  transform:
    translateY(4px);
}


.gm-work-page-project-link:hover span,
.gm-work-page-project-link:focus span {
  transform:
    translateX(4px);
}


/* ==========================================================
   OUR WORK: HERO
   ========================================================== */

.gm-work-page-hero {
  display: grid;

  grid-template-columns:
    minmax(430px, .82fr)
    minmax(0, 1.18fr);

  min-height: 560px;

  background:
    #f6f1e8;
}


.gm-work-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(60px, 6.5vw, 100px)
    clamp(34px, 6.5vw, 105px);
}


.gm-work-page-hero h1 {
  max-width: 620px;

  margin: 0;

  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(3.4rem, 5vw, 5.35rem);

  font-weight: 500;
  line-height: .99;
  letter-spacing: -.04em;
}


.gm-work-page-hero-lead {
  max-width: 555px;

  margin:
    0 0 17px;

  color:
    #354139;

  font-size:
    clamp(1.05rem, 1.3vw, 1.22rem);

  font-weight: 500;
  line-height: 1.7;
}


.gm-work-page-hero-body {
  max-width: 550px;

  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .98rem;
  line-height: 1.72;
}


.gm-work-page-hero-visual {
  position: relative;

  min-height: 560px;

  overflow: hidden;

  background:
    var(--gm-forest-deep, #17241b);
}


.gm-work-page-hero-image {
  position: absolute;
  inset: 0;

  margin: 0;
}


.gm-work-page-hero-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.gm-work-page-hero-label {
  position: absolute;
  right: 0;
  bottom: 0;

  display: grid;

  gap: 5px;

  min-width:
    clamp(240px, 26vw, 350px);

  padding:
    clamp(25px, 3vw, 39px);

  background:
    rgba(23, 36, 27, .95);

  color: #fff;
}


.gm-work-page-hero-label strong {
  color: #fff;

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.4rem, 2vw, 2rem);

  font-weight: 500;
}


.gm-work-page-hero-label span {
  color:
    rgba(255, 255, 255, .66);

  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}


/* ==========================================================
   OUR WORK: INTRODUCTION
   ========================================================== */

.gm-work-page-introduction {
  padding:
    clamp(75px, 9vw, 125px) 0;

  background:
    var(--gm-paper, #fffefa);
}


.gm-work-page-introduction-grid {
  display: grid;

  grid-template-columns:
    .88fr 1.12fr;

  gap:
    clamp(55px, 9vw, 145px);
}


.gm-work-page-introduction-heading h2 {
  max-width: 580px;

  margin: 0;

  font-size:
    clamp(2.5rem, 4vw, 4.15rem);

  line-height: 1.04;
}


.gm-work-page-introduction-copy {
  max-width: 670px;

  padding-top: 12px;
}


.gm-work-page-introduction-copy p {
  margin:
    0 0 20px;

  color:
    var(--gm-muted, #526058);
}


.gm-work-page-introduction-copy p:last-child {
  margin-bottom: 0;
}


.gm-work-page-introduction-copy .gm-work-page-lead {
  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.35rem, 2vw, 1.8rem);

  line-height: 1.5;
}
/* ==========================================================
   OUR WORK PROJECT INDEX, REVISED LAYOUT
========================================================== */

.gm-work-page-projects {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(45px, 6vw, 85px) 24px;
  background: #f6f1e8;
  border-top: 1px solid rgba(28, 41, 33, 0.14);
}


/* Individual project */

.gm-work-page-project {
  display: grid;
  grid-template-columns: 58% 42%;
  width: min(100%, 1380px);
  min-height: 440px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--gm-paper, #fffefa);
  box-shadow: 0 14px 40px rgba(28, 41, 33, 0.08);
}

.gm-work-page-project:nth-child(even) {
  grid-template-columns: 42% 58%;
}

.gm-work-page-project:nth-child(even)
.gm-work-page-project-image {
  order: 2;
}


/* Project image */

.gm-work-page-project-image {
  position: relative;
  display: block;
  min-height: 440px;
  overflow: hidden;
  background: var(--gm-forest-deep, #17241b);
}

.gm-work-page-project-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.gm-work-page-project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      0deg,
      rgba(14, 24, 17, 0.35) 0%,
      transparent 42%
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}


/* View gallery button */

.gm-work-page-image-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  min-height: 44px;
  max-width: calc(100% - 48px);
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 17px;
  color: var(--gm-ink, #1c2921);
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 8px 24px rgba(23, 36, 27, 0.14);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  box-sizing: border-box;
}

.gm-work-page-project-image:hover img {
  transform: scale(1.018);
  filter: saturate(0.95);
}

.gm-work-page-project-image:hover::after {
  opacity: 1;
}


/* Project text */

.gm-work-page-project-copy {
  display: flex;
  min-width: 0;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
  background: var(--gm-paper, #fffefa);
}

.gm-work-page-project-copy h2 {
  max-width: 570px;
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 2.6vw, 2.85rem);
  line-height: 1.08;
}

.gm-work-page-project-copy > p:not(
  .gm-work-page-kicker
) {
  max-width: 535px;
  margin: 0 0 14px;
  color: var(--gm-muted, #526058);
  font-size: 0.91rem;
  line-height: 1.66;
}

.gm-work-page-project-link {
  margin-top: 14px;
}


/* Tablet */

@media (max-width: 991.98px) {

  .gm-work-page-project,
  .gm-work-page-project:nth-child(even) {
    grid-template-columns: 52% 48%;
    min-height: 430px;
  }

  .gm-work-page-project:nth-child(even)
  .gm-work-page-project-image {
    order: 0;
  }

  .gm-work-page-project-image,
  .gm-work-page-project-image img,
  .gm-work-page-project-copy {
    min-height: 430px;
  }

  .gm-work-page-project-copy {
    padding: 38px 30px;
  }

  .gm-work-page-project-copy h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  }

  .gm-work-page-project-copy
  > p:not(.gm-work-page-kicker) {
    font-size: 0.85rem;
  }

}


/* Mobile */

@media (max-width: 767.98px) {

  .gm-work-page-projects {
    gap: 24px;
    padding: 34px 17px 55px;
  }

  .gm-work-page-project,
  .gm-work-page-project:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gm-work-page-project:nth-child(even)
  .gm-work-page-project-image {
    order: 0;
  }

  .gm-work-page-project-image,
  .gm-work-page-project-image img {
    min-height: 280px;
    height: 280px;
  }

  .gm-work-page-project-copy {
    min-height: 0;
    padding: 38px 24px 43px;
  }

  .gm-work-page-project-copy h2 {
    font-size: clamp(1.8rem, 7vw, 2.35rem);
  }

  .gm-work-page-project-copy
  > p:not(.gm-work-page-kicker) {
    font-size: 0.9rem;
  }

  .gm-work-page-image-link {
    right: 17px;
    bottom: 17px;
  }

}


/* Small mobile */

@media (max-width: 575.98px) {

  .gm-work-page-project-image,
  .gm-work-page-project-image img {
    min-height: 240px;
    height: 240px;
  }

}
/* ==========================================================
   OUR WORK: CRAFT STATEMENT
   ========================================================== */

.gm-work-page-statement {
  padding:
    clamp(70px, 8vw, 105px) 0;

  background:
    var(--gm-stone, #ebe7dc);
}


.gm-work-page-statement-grid {
  display: grid;

  grid-template-columns:
    auto 1fr;

  gap:
    clamp(25px, 4vw, 60px);

  max-width: 1000px;

  margin-inline: auto;

  align-items: start;
}


.gm-work-page-statement-mark {
  height: 55px;

  overflow: hidden;

  color:
    var(--gm-clay, #a66143);

  font-family:
    Georgia,
    serif;

  font-size: 6rem;
  line-height: .9;
}


.gm-work-page-statement-text {
  margin:
    0 0 23px;

  color:
    var(--gm-ink, #1c2921);

  font-family:
    "Spectral",
    Georgia,
    serif;

  font-size:
    clamp(1.8rem, 3.1vw, 3.1rem);

  line-height: 1.34;
}


.gm-work-page-statement-name {
  margin: 0;

  color:
    var(--gm-muted, #526058);

  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}


/* ==========================================================
   OUR WORK: CTA
   ========================================================== */

.gm-work-page-cta {
  padding:
    clamp(62px, 7vw, 90px) 0;

  background-color:
#59664e;

  color: #fff;
}


.gm-work-page-cta-grid {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 50px;

  align-items: center;
}


.gm-work-page-cta .gm-work-page-kicker {
  color:
    #d49775;
}


.gm-work-page-cta h2 {
  max-width: 800px;

  margin:
    0 0 16px;

  color: #fff;

  font-size:
    clamp(2.2rem, 3.7vw, 3.8rem);

  line-height: 1.05;
}


.gm-work-page-cta p:not(.gm-work-page-kicker) {
  max-width: 700px;

  margin: 0;

  color:
    rgba(255, 255, 255, .7);
}


.gm-work-page-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  min-width: 230px;
  min-height: 58px;

  padding:
    16px 21px;

  border:
    1px solid
    var(--gm-clay, #a66143);

  border-radius: 0;

  background:
    transparent;

  color: #fff;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  box-shadow: none;

  transition:
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gm-work-page-cta-button span {
  transition:
    transform .25s ease;
}


.gm-work-page-cta-button:hover,
.gm-work-page-cta-button:focus {
  background:
    var(--gm-clay, #a66143);

  border-color:
    var(--gm-clay, #a66143);

  color: #fff;

  transform:
    translateY(-2px);

  box-shadow: none;
}


.gm-work-page-cta-button:hover span,
.gm-work-page-cta-button:focus span {
  transform:
    translateX(4px);
}


/* ==========================================================
   OUR WORK: TABLET
   ========================================================== */

@media (max-width: 991.98px) {

  .gm-work-page-hero {
    grid-template-columns: 1fr;

    min-height: 0;
  }


  .gm-work-page-hero-copy {
    order: 2;

    padding:
      65px 40px;
  }


  .gm-work-page-hero-visual {
    min-height: 460px;
  }


  .gm-work-page-introduction-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }


  .gm-work-page-introduction-copy {
    max-width: 760px;

    padding-top: 0;
  }


  .gm-work-page-project,
  .gm-work-page-project:nth-child(even) {
    grid-template-columns:
      53% 47%;

    height: 410px;
  }


  .gm-work-page-project:nth-child(even)
  .gm-work-page-project-image {
    order: 0;
  }


  .gm-work-page-project-copy {
    padding:
      38px 32px;
  }


  .gm-work-page-project-copy h2 {
    font-size:
      clamp(1.7rem, 3.2vw, 2.35rem);
  }


  .gm-work-page-project-copy
  > p:not(.gm-work-page-kicker) {
    font-size: .86rem;
  }


  .gm-work-page-image-link {
    display: none;
  }

}


/* ==========================================================
   OUR WORK: MOBILE
   ========================================================== */

@media (max-width: 767.98px) {

  .gm-work-page-container {
    width:
      min(100% - 34px, 1320px);
  }


  .gm-work-page-hero-copy {
    padding:
      50px 22px
      55px;
  }


  .gm-work-page-hero h1 {
    font-size:
      clamp(2.7rem, 11vw, 3.65rem);
  }


  .gm-work-page-hero-visual {
    min-height: 340px;
  }


  .gm-work-page-hero-label {
    min-width: 210px;

    padding: 21px;
  }


  .gm-work-page-introduction {
    padding:
      72px 0;
  }


  .gm-work-page-introduction-heading h2 {
    font-size:
      clamp(2.25rem, 9vw, 3.15rem);
  }


  .gm-work-page-project,
  .gm-work-page-project:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-rows:
      275px auto;

    height: auto;
  }


  .gm-work-page-project:nth-child(even)
  .gm-work-page-project-image {
    order: 0;
  }


  .gm-work-page-project-image {
    height: 275px;
  }


  .gm-work-page-project-copy {
    height: auto;

    padding:
      38px 22px
      43px;
  }


  .gm-work-page-project-copy h2 {
    font-size:
      clamp(1.85rem, 7.5vw, 2.45rem);
  }


  .gm-work-page-project-copy
  > p:not(.gm-work-page-kicker) {
    font-size: .92rem;
  }


  .gm-work-page-statement-grid {
    grid-template-columns: 1fr;

    gap: 5px;
  }


  .gm-work-page-statement-mark {
    height: 48px;
  }


  .gm-work-page-cta-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .gm-work-page-cta-button {
    width: 100%;
  }

}


/* ==========================================================
   OUR WORK: SMALL MOBILE
   ========================================================== */

@media (max-width: 575.98px) {

  .gm-work-page-hero-visual {
    min-height: 300px;
  }


  .gm-work-page-project,
  .gm-work-page-project:nth-child(even) {
    grid-template-rows:
      240px auto;
  }


  .gm-work-page-project-image {
    height: 240px;
  }

}


/* ==========================================================
   OUR WORK: REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .gm-work-page-project-image img,
  .gm-work-page-project-image::after,
  .gm-work-page-image-link,
  .gm-work-page-text-link,
  .gm-work-page-text-link span,
  .gm-work-page-project-link,
  .gm-work-page-project-link span,
  .gm-work-page-cta-button,
  .gm-work-page-cta-button span {
    transition: none;
  }

}

/* ==========================================================
   TESTIMONIALS PAGE ONLY
   All classes use the .gm-testimonials-page- prefix
========================================================== */


/* ----------------------------------------------------------
   Shared
---------------------------------------------------------- */

.gm-testimonials-page-container {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.gm-testimonials-page-rule {
  width: 72px;
  height: 1px;
  margin: 24px 0 25px;
  background: var(--gm-clay);
}

/* ----------------------------------------------------------
   TESTIMONIALS HERO, COMPACT
---------------------------------------------------------- */

.gm-testimonials-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  min-height: 0;
  overflow: hidden;
  background: var(--gm-chalk);
}

.gm-testimonials-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    clamp(55px, 5vw, 78px)
    clamp(40px, 7vw, 105px);
}

.gm-testimonials-page-hero h1 {
  max-width: 640px;
  margin: 0;

  color: var(--gm-ink);

  font-family: "Spectral", Georgia, serif;
  font-size: clamp(2.65rem, 4.2vw, 4.4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.gm-testimonials-page-rule {
  width: 72px;
  height: 1px;

  margin: 20px 0 22px;

  background: var(--gm-clay);
}

.gm-testimonials-page-hero-intro {
  max-width: 570px;
  margin: 0;

  color: var(--gm-muted);

  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.gm-testimonials-page-hero-image {
  position: relative;

  height: clamp(400px, 34vw, 500px);
  min-height: 0;

  overflow: hidden;
}

.gm-testimonials-page-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ----------------------------------------------------------
   Featured testimonial
---------------------------------------------------------- */

.gm-testimonials-page-featured {
  padding: clamp(75px, 8vw, 115px) 0;
  color: var(--gm-paper);
  background: var(--gm-forest-deep);
}

.gm-testimonials-page-featured-grid {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.gm-testimonials-page-section-heading {
  position: sticky;
  top: 140px;
}

.gm-testimonials-page-section-heading h2,
.gm-testimonials-page-reviews-heading h2,
.gm-testimonials-page-cta h2 {
  margin: 0;
  font-family: "Spectral", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.gm-testimonials-page-section-heading h2 {
  max-width: 390px;
  color: var(--gm-paper);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.gm-testimonials-page-section-heading > p:last-child {
  max-width: 410px;
  margin: 24px 0 0;
  color: rgba(255, 254, 250, .66);
  font-size: .95rem;
  line-height: 1.75;
}

.gm-testimonials-page-featured-review {
  position: relative;
  padding: 0;
}

.gm-testimonials-page-quote-mark {
  display: block;
  height: 56px;
  margin-bottom: 10px;
  color: var(--gm-clay);
  font-family: "Spectral", Georgia, serif;
  font-size: 5.8rem;
  font-weight: 300;
  line-height: 1;
}

.gm-testimonials-page-featured-review blockquote {
  margin: 0;
}

.gm-testimonials-page-featured-review blockquote p {
  margin: 0 0 20px;
  color: rgba(255, 254, 250, .92);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.22rem, 1.7vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
}

.gm-testimonials-page-review-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.gm-testimonials-page-author-line {
  width: 48px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gm-clay);
}

.gm-testimonials-page-review-author strong,
.gm-testimonials-page-review-author div > span {
  display: block;
}

.gm-testimonials-page-review-author strong {
  color: var(--gm-paper);
  font-size: .88rem;
  letter-spacing: .025em;
}

.gm-testimonials-page-review-author div > span {
  margin-top: 4px;
  color: rgba(255, 254, 250, .52);
  font-size: .75rem;
}


/* ----------------------------------------------------------
   Main reviews
---------------------------------------------------------- */

.gm-testimonials-page-reviews {
  padding: clamp(75px, 8vw, 115px) 0;
  background: var(--gm-paper);
}

.gm-testimonials-page-reviews-heading {
  margin-bottom: clamp(38px, 5vw, 62px);
}

.gm-testimonials-page-reviews-heading h2 {
  max-width: 620px;
  color: var(--gm-ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.gm-testimonials-page-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(28, 41, 33, .14);
  border-left: 1px solid rgba(28, 41, 33, .14);
}

.gm-testimonials-page-review-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4vw, 52px);
  overflow: hidden;
  border-right: 1px solid rgba(28, 41, 33, .14);
  border-bottom: 1px solid rgba(28, 41, 33, .14);
  background: var(--gm-paper);
  transition: background-color 220ms ease;
}

.gm-testimonials-page-review-card:not(
  .gm-testimonials-page-review-card-dark
):hover {
  background: var(--gm-chalk);
}

.gm-testimonials-page-review-card blockquote {
  margin: 0;
  padding: 10px 0 32px;
}

.gm-testimonials-page-review-card blockquote::before {
  content: "“";
  display: block;
  height: 38px;
  margin-bottom: 9px;
  color: var(--gm-clay);
  font-family: "Spectral", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 300;
  line-height: .75;
}

.gm-testimonials-page-review-card blockquote p {
  margin: 0 0 16px;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.08rem, 1.3vw, 1.3rem);
  font-weight: 300;
  line-height: 1.58;
}

.gm-testimonials-page-review-card blockquote p:last-child {
  margin-bottom: 0;
}

.gm-testimonials-page-review-card footer {
  padding-top: 20px;
  border-top: 1px solid rgba(28, 41, 33, .13);
}

.gm-testimonials-page-review-card footer strong,
.gm-testimonials-page-review-card footer span {
  display: block;
}

.gm-testimonials-page-review-card footer strong {
  color: var(--gm-forest);
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.gm-testimonials-page-review-card footer span {
  margin-top: 4px;
  color: var(--gm-muted);
  font-size: .72rem;
  line-height: 1.5;
}

.gm-testimonials-page-review-card-dark {
  color: var(--gm-paper);
  background: var(--gm-forest);
  border-color: rgba(255, 254, 250, .13);
}

.gm-testimonials-page-review-card-dark blockquote p {
  color: rgba(255, 254, 250, .92);
}

.gm-testimonials-page-review-card-dark footer {
  border-color: rgba(255, 254, 250, .18);
}

.gm-testimonials-page-review-card-dark footer strong {
  color: var(--gm-paper);
}

.gm-testimonials-page-review-card-dark footer span {
  color: rgba(255, 254, 250, .6);
}

.gm-testimonials-page-review-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(170px, .35fr);
  column-gap: clamp(40px, 7vw, 90px);
}

.gm-testimonials-page-review-card-wide blockquote {
  max-width: 850px;
}

.gm-testimonials-page-review-card-wide footer {
  align-self: end;
}


/* ----------------------------------------------------------
   CTA
---------------------------------------------------------- */

.gm-testimonials-page-cta {
  padding: clamp(65px, 7vw, 90px) 0;
  background-color: #59664e;
}

.gm-testimonials-page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 55px;
  align-items: center;
}

.gm-testimonials-page-cta h2 {
  max-width: 670px;
  color: var(--gm-paper);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.gm-testimonials-page-cta-inner > div > p:last-child {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 254, 250, .78);
  font-size: .94rem;
  line-height: 1.7;
}

.gm-testimonials-page-cta-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 24px;
  white-space: nowrap;
  color: var(--gm-paper);
  border: 1px solid rgba(255, 254, 250, .65);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    gap 180ms ease;
}

.gm-testimonials-page-cta-button:hover,
.gm-testimonials-page-cta-button:focus-visible {
  gap: 18px;
  color: var(--gm-forest-deep);
  background: var(--gm-paper);
}


/* ----------------------------------------------------------
   Tablet
---------------------------------------------------------- */

@media (max-width: 1100px) {

  .gm-testimonials-page-hero {
    grid-template-columns: 1fr .82fr;
    min-height: 500px;
  }

  .gm-testimonials-page-hero-copy {
    padding: 75px 46px;
  }

  .gm-testimonials-page-hero-image {
    min-height: 500px;
  }

  .gm-testimonials-page-featured-grid {
    gap: 58px;
  }

}


/* ----------------------------------------------------------
   Small tablet
---------------------------------------------------------- */

@media (max-width: 850px) {

  .gm-testimonials-page-hero {
    grid-template-columns: 1fr;
  }

  .gm-testimonials-page-hero-copy {
    padding: 68px 42px 58px;
  }

  .gm-testimonials-page-hero-image {
    min-height: 410px;
  }

  .gm-testimonials-page-featured-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .gm-testimonials-page-section-heading {
    position: static;
  }

  .gm-testimonials-page-review-card {
    min-height: 330px;
    padding: 38px;
  }

  .gm-testimonials-page-review-card-wide {
    display: flex;
  }

  .gm-testimonials-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gm-testimonials-page-cta-button {
    width: fit-content;
  }

}


/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */

@media (max-width: 620px) {

  .gm-testimonials-page-container {
    width: min(100% - 34px, 1220px);
  }

  .gm-testimonials-page-hero-copy {
    padding: 54px 22px 48px;
  }

  .gm-testimonials-page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 1.04;
  }

  .gm-testimonials-page-hero-intro {
    font-size: .96rem;
    line-height: 1.68;
  }

  .gm-testimonials-page-hero-image {
    min-height: 300px;
  }

  .gm-testimonials-page-featured {
    padding: 64px 0;
  }

  .gm-testimonials-page-section-heading h2,
  .gm-testimonials-page-reviews-heading h2,
  .gm-testimonials-page-cta h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .gm-testimonials-page-featured-review blockquote p {
    font-size: 1.18rem;
  }

  .gm-testimonials-page-reviews {
    padding: 64px 0;
  }

  .gm-testimonials-page-review-grid {
    grid-template-columns: 1fr;
  }

  .gm-testimonials-page-review-card,
  .gm-testimonials-page-review-card-wide {
    grid-column: auto;
    min-height: 0;
    padding: 32px 26px;
  }

  .gm-testimonials-page-review-card blockquote {
    padding: 8px 0 28px;
  }

  .gm-testimonials-page-review-card blockquote p {
    font-size: 1.08rem;
  }

  .gm-testimonials-page-cta {
    padding: 58px 0;
  }

  .gm-testimonials-page-cta-button {
    width: 100%;
  }

}


/* ----------------------------------------------------------
   Reduced motion
---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-testimonials-page-cta-button {
    transition: none;
  }

}

/* ==========================================================
   REQUEST A QUOTE PAGE ONLY
   All classes use the .gm-contact-page- prefix
========================================================== */


/* ----------------------------------------------------------
   Shared page elements
---------------------------------------------------------- */

.gm-contact-page-container {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.gm-contact-page-kicker {
  margin: 0 0 18px;
  color: var(--gm-clay);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.gm-contact-page-rule {
  display: flex;
  align-items: center;
  width: 156px;
  margin: 28px 0;
  background:
    radial-gradient(
      circle,
      var(--gm-clay) 0 2px,
      transparent 2.5px
    )
    center / 6px 6px no-repeat;
}

.gm-contact-page-rule::before,
.gm-contact-page-rule::after {
  content: "";
  display: block;
  width: 63px;
  height: 1px;
  background: rgba(28, 41, 33, 0.3);
}

.gm-contact-page-rule::after {
  margin-left: auto;
}


/* ----------------------------------------------------------
   Page hero
---------------------------------------------------------- */

.gm-contact-page-hero {
  position: relative;
  padding: clamp(100px, 12vw, 175px) 0;
  overflow: hidden;
  background: var(--gm-chalk);
}

.gm-contact-page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: rgba(28, 41, 33, 0.08);
}

.gm-contact-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(70px, 11vw, 165px);
  align-items: end;
}

.gm-contact-page-hero h1 {
  max-width: 830px;
  margin: 0;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(3.8rem, 6.7vw, 7.3rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.gm-contact-page-hero h1 span {
  display: block;
  color: var(--gm-olive);
  font-style: normal;
  font-weight: 400;
}

.gm-contact-page-hero-intro {
  max-width: 655px;
  margin: 0;
  color: var(--gm-muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.85;
}

.gm-contact-page-hero-aside {
  display: flex;
  gap: 27px;
  align-items: flex-start;
  padding: 37px 0 7px 34px;
  border-left: 1px solid rgba(28, 41, 33, 0.16);
}

.gm-contact-page-hero-number {
  color: var(--gm-clay);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  font-weight: 300;
  line-height: 0.9;
}

.gm-contact-page-hero-aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gm-forest);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.gm-contact-page-hero-aside p {
  max-width: 300px;
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.86rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   Contact and form section
---------------------------------------------------------- */

.gm-contact-page-main {
  padding: clamp(90px, 11vw, 165px) 0;
  background: var(--gm-paper);
}

.gm-contact-page-main-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(65px, 10vw, 150px);
  align-items: start;
}


/* Contact details */

.gm-contact-page-details {
  position: sticky;
  top: 130px;
}

.gm-contact-page-details-intro h2,
.gm-contact-page-form-heading h2,
.gm-contact-page-expect-heading h2,
.gm-contact-page-closing h2 {
  margin: 0;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.gm-contact-page-details-intro h2 {
  max-width: 490px;
  font-size: clamp(2.5rem, 3.8vw, 4.2rem);
  line-height: 1.02;
}

.gm-contact-page-details-intro h2 span,
.gm-contact-page-form-heading h2 span,
.gm-contact-page-expect-heading h2 span,
.gm-contact-page-closing h2 span {
  display: block;
  color: var(--gm-olive);
  font-style: normal;
  font-weight: 400;
}

.gm-contact-page-details-intro > p:last-child {
  max-width: 450px;
  margin: 29px 0 0;
  color: var(--gm-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.gm-contact-page-contact-list {
  margin-top: 48px;
  border-top: 1px solid rgba(28, 41, 33, 0.15);
}

.gm-contact-page-contact-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(28, 41, 33, 0.15);
}

.gm-contact-page-contact-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gm-clay);
  border: 1px solid rgba(166, 97, 67, 0.35);
  font-size: 0.88rem;
}

.gm-contact-page-contact-item p {
  margin: 1px 0 6px;
  color: var(--gm-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gm-contact-page-contact-item a,
.gm-contact-page-contact-item address {
  color: var(--gm-forest);
  font-family: "Spectral", Georgia, serif;
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}

.gm-contact-page-contact-item a {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.gm-contact-page-contact-item a:hover,
.gm-contact-page-contact-item a:focus-visible {
  color: var(--gm-clay);
}

.gm-contact-page-area-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 17px;
  margin-top: 34px;
  padding: 23px 25px;
  background: var(--gm-chalk);
}

.gm-contact-page-area-note-icon {
  color: var(--gm-clay);
  font-size: 1rem;
}

.gm-contact-page-area-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gm-forest);
  font-size: 0.78rem;
}

.gm-contact-page-area-note p {
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}


/* Form panel */

.gm-contact-page-form-panel {
  padding: clamp(45px, 6vw, 76px);
  background: var(--gm-chalk);
  box-shadow: 0 24px 65px rgba(23, 36, 27, 0.08);
}

.gm-contact-page-form-heading {
  margin-bottom: 44px;
}

.gm-contact-page-form-heading h2 {
  max-width: 620px;
  font-size: clamp(2.6rem, 4.1vw, 4.5rem);
  line-height: 1;
}

.gm-contact-page-form-heading > p:last-child {
  max-width: 580px;
  margin: 27px 0 0;
  color: var(--gm-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.gm-contact-page-form-embed {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--gm-paper);
}

/*
  Jotform creates an iframe.

  The fields inside the iframe are controlled from the Jotform
  Form Designer, but these rules tidy the iframe container.
*/

.gm-contact-page-form-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}


/* ----------------------------------------------------------
   What happens next
---------------------------------------------------------- */

.gm-contact-page-expect {
  padding: clamp(90px, 10vw, 145px) 0;
  color: var(--gm-paper);
  background: var(--gm-forest-deep);
}

.gm-contact-page-expect-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: start;
  margin-bottom: clamp(65px, 8vw, 100px);
}

.gm-contact-page-expect-heading .gm-contact-page-kicker {
  margin-top: 13px;
}

.gm-contact-page-expect-heading h2 {
  max-width: 750px;
  color: var(--gm-paper);
  font-size: clamp(2.8rem, 4.7vw, 5.1rem);
  line-height: 1;
}

.gm-contact-page-expect-heading h2 span {
  color: rgba(255, 254, 250, 0.55);
}

.gm-contact-page-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 254, 250, 0.18);
}

.gm-contact-page-expect-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 22px;
  padding: 43px clamp(25px, 4vw, 52px) 5px;
  border-left: 1px solid rgba(255, 254, 250, 0.18);
}

.gm-contact-page-expect-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.gm-contact-page-expect-item > span {
  padding-top: 5px;
  color: var(--gm-clay);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.gm-contact-page-expect-item h3 {
  margin: 0 0 17px;
  color: var(--gm-paper);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 400;
}

.gm-contact-page-expect-item p {
  margin: 0;
  color: rgba(255, 254, 250, 0.59);
  font-size: 0.84rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   Closing section
---------------------------------------------------------- */

.gm-contact-page-closing {
  padding: clamp(85px, 10vw, 145px) 0;
  background: var(--gm-stone);
}

.gm-contact-page-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(70px, 11vw, 155px);
  align-items: end;
}

.gm-contact-page-closing h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.7vw, 5.1rem);
  line-height: 1;
}

.gm-contact-page-closing-grid > div:last-child > p {
  max-width: 460px;
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.gm-contact-page-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
  padding-bottom: 7px;
  color: var(--gm-forest);
  border-bottom: 1px solid rgba(28, 41, 33, 0.36);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    gap 180ms ease;
}

.gm-contact-page-text-link:hover,
.gm-contact-page-text-link:focus-visible {
  gap: 20px;
  color: var(--gm-clay);
  border-color: var(--gm-clay);
}


/* ----------------------------------------------------------
   Tablet
---------------------------------------------------------- */

@media (max-width: 1050px) {

  .gm-contact-page-hero-grid {
    gap: 65px;
  }

  .gm-contact-page-main-grid {
    grid-template-columns: minmax(270px, 0.7fr) minmax(430px, 1.3fr);
    gap: 60px;
  }

  .gm-contact-page-form-panel {
    padding: 48px 38px;
  }

}


/* ----------------------------------------------------------
   Small tablet
---------------------------------------------------------- */

@media (max-width: 850px) {

  .gm-contact-page-hero-grid,
  .gm-contact-page-main-grid,
  .gm-contact-page-closing-grid {
    grid-template-columns: 1fr;
  }

  .gm-contact-page-hero-aside {
    max-width: 530px;
  }

  .gm-contact-page-main-grid {
    gap: 75px;
  }

  .gm-contact-page-details {
    position: static;
  }

  .gm-contact-page-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(28, 41, 33, 0.15);
  }

  .gm-contact-page-contact-item {
    padding: 25px;
    border-right: 1px solid rgba(28, 41, 33, 0.15);
  }

  .gm-contact-page-expect-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gm-contact-page-closing-grid {
    gap: 45px;
  }

}


/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */

@media (max-width: 620px) {

  .gm-contact-page-container {
    width: min(100% - 34px, 1220px);
  }

  .gm-contact-page-hero {
    padding: 78px 0 80px;
  }

  .gm-contact-page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .gm-contact-page-hero-aside {
    gap: 20px;
    padding: 29px 0 0;
    border-top: 1px solid rgba(28, 41, 33, 0.16);
    border-left: 0;
  }

  .gm-contact-page-contact-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .gm-contact-page-contact-item {
    padding: 23px 0;
    border-right: 0;
  }

  .gm-contact-page-form-panel {
    margin-inline: -17px;
    padding: 46px 17px;
    box-shadow: none;
  }

  .gm-contact-page-form-heading {
    padding-inline: 8px;
  }

  .gm-contact-page-form-embed {
    min-height: 700px;
  }

  .gm-contact-page-expect-grid {
    grid-template-columns: 1fr;
  }

  .gm-contact-page-expect-item,
  .gm-contact-page-expect-item:first-child {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 254, 250, 0.16);
    border-left: 0;
  }

  .gm-contact-page-expect-grid {
    border-top: 0;
  }

}


/* ----------------------------------------------------------
   Reduced motion
---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-contact-page-contact-item a,
  .gm-contact-page-text-link {
    transition: none;
  }

}

/* ==========================================================
   REQUEST A QUOTE PAGE ONLY
   All classes use the .gm-contact-page- prefix
========================================================== */


/* ----------------------------------------------------------
   Shared page elements
---------------------------------------------------------- */

.gm-contact-page-container {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.gm-contact-page-kicker {
  margin: 0 0 18px;
  color: var(--gm-clay);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.gm-contact-page-rule {
  display: flex;
  align-items: center;
  width: 156px;
  margin: 28px 0;
  background:
    radial-gradient(
      circle,
      var(--gm-clay) 0 2px,
      transparent 2.5px
    )
    center / 6px 6px no-repeat;
}

.gm-contact-page-rule::before,
.gm-contact-page-rule::after {
  content: "";
  display: block;
  width: 63px;
  height: 1px;
  background: rgba(28, 41, 33, 0.3);
}

.gm-contact-page-rule::after {
  margin-left: auto;
}


/* ----------------------------------------------------------
   Page hero
---------------------------------------------------------- */

.gm-contact-page-hero {
  position: relative;
  padding: clamp(100px, 12vw, 175px) 0;
  overflow: hidden;
  background: var(--gm-chalk);
}

.gm-contact-page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: rgba(28, 41, 33, 0.08);
}

.gm-contact-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(70px, 11vw, 165px);
  align-items: end;
}

.gm-contact-page-hero h1 {
  max-width: 830px;
  margin: 0;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(3.8rem, 6.7vw, 7.3rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.gm-contact-page-hero h1 span {
  display: block;
  color: var(--gm-olive);
  font-style: normal;
  font-weight: 400;
}

.gm-contact-page-hero-intro {
  max-width: 655px;
  margin: 0;
  color: var(--gm-muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.85;
}

.gm-contact-page-hero-aside {
  display: flex;
  gap: 27px;
  align-items: flex-start;
  padding: 37px 0 7px 34px;
  border-left: 1px solid rgba(28, 41, 33, 0.16);
}

.gm-contact-page-hero-number {
  color: var(--gm-clay);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  font-weight: 300;
  line-height: 0.9;
}

.gm-contact-page-hero-aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gm-forest);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.gm-contact-page-hero-aside p {
  max-width: 300px;
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.86rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   Contact and form section
---------------------------------------------------------- */

.gm-contact-page-main {
  padding: clamp(90px, 11vw, 165px) 0;
  background: var(--gm-paper);
}

.gm-contact-page-main-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(65px, 10vw, 150px);
  align-items: start;
}


/* Contact details */

.gm-contact-page-details {
  position: sticky;
  top: 130px;
}

.gm-contact-page-details-intro h2,
.gm-contact-page-form-heading h2,
.gm-contact-page-expect-heading h2,
.gm-contact-page-closing h2 {
  margin: 0;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.gm-contact-page-details-intro h2 {
  max-width: 490px;
  font-size: clamp(2.5rem, 3.8vw, 4.2rem);
  line-height: 1.02;
}

.gm-contact-page-details-intro h2 span,
.gm-contact-page-form-heading h2 span,
.gm-contact-page-expect-heading h2 span,
.gm-contact-page-closing h2 span {
  display: block;
  color: var(--gm-olive);
  font-style: normal;
  font-weight: 400;
}

.gm-contact-page-details-intro > p:last-child {
  max-width: 450px;
  margin: 29px 0 0;
  color: var(--gm-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.gm-contact-page-contact-list {
  margin-top: 48px;
  border-top: 1px solid rgba(28, 41, 33, 0.15);
}

.gm-contact-page-contact-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(28, 41, 33, 0.15);
}

.gm-contact-page-contact-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gm-clay);
  border: 1px solid rgba(166, 97, 67, 0.35);
  font-size: 0.88rem;
}

.gm-contact-page-contact-item p {
  margin: 1px 0 6px;
  color: var(--gm-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gm-contact-page-contact-item a,
.gm-contact-page-contact-item address {
  color: var(--gm-forest);
  font-family: "Spectral", Georgia, serif;
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}

.gm-contact-page-contact-item a {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.gm-contact-page-contact-item a:hover,
.gm-contact-page-contact-item a:focus-visible {
  color: var(--gm-clay);
}

.gm-contact-page-area-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 17px;
  margin-top: 34px;
  padding: 23px 25px;
  background: var(--gm-chalk);
}

.gm-contact-page-area-note-icon {
  color: var(--gm-clay);
  font-size: 1rem;
}

.gm-contact-page-area-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gm-forest);
  font-size: 0.78rem;
}

.gm-contact-page-area-note p {
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}


/* Form panel */

.gm-contact-page-form-panel {
  padding: clamp(45px, 6vw, 76px);
  background: var(--gm-chalk);
  box-shadow: 0 24px 65px rgba(23, 36, 27, 0.08);
}

.gm-contact-page-form-heading {
  margin-bottom: 44px;
}

.gm-contact-page-form-heading h2 {
  max-width: 620px;
  font-size: clamp(2.6rem, 4.1vw, 4.5rem);
  line-height: 1;
}

.gm-contact-page-form-heading > p:last-child {
  max-width: 580px;
  margin: 27px 0 0;
  color: var(--gm-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.gm-contact-page-form-embed {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--gm-paper);
}

/*
  Jotform creates an iframe.

  The fields inside the iframe are controlled from the Jotform
  Form Designer, but these rules tidy the iframe container.
*/

.gm-contact-page-form-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}


/* ----------------------------------------------------------
   What happens next
---------------------------------------------------------- */

.gm-contact-page-expect {
  padding: clamp(90px, 10vw, 145px) 0;
  color: var(--gm-paper);
  background: var(--gm-forest-deep);
}

.gm-contact-page-expect-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: start;
  margin-bottom: clamp(65px, 8vw, 100px);
}

.gm-contact-page-expect-heading .gm-contact-page-kicker {
  margin-top: 13px;
}

.gm-contact-page-expect-heading h2 {
  max-width: 750px;
  color: var(--gm-paper);
  font-size: clamp(2.8rem, 4.7vw, 5.1rem);
  line-height: 1;
}

.gm-contact-page-expect-heading h2 span {
  color: rgba(255, 254, 250, 0.55);
}

.gm-contact-page-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 254, 250, 0.18);
}

.gm-contact-page-expect-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 22px;
  padding: 43px clamp(25px, 4vw, 52px) 5px;
  border-left: 1px solid rgba(255, 254, 250, 0.18);
}

.gm-contact-page-expect-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.gm-contact-page-expect-item > span {
  padding-top: 5px;
  color: var(--gm-clay);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.gm-contact-page-expect-item h3 {
  margin: 0 0 17px;
  color: var(--gm-paper);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 400;
}

.gm-contact-page-expect-item p {
  margin: 0;
  color: rgba(255, 254, 250, 0.59);
  font-size: 0.84rem;
  line-height: 1.75;
}


/* ----------------------------------------------------------
   Closing section
---------------------------------------------------------- */

.gm-contact-page-closing {
  padding: clamp(85px, 10vw, 145px) 0;
  background: var(--gm-stone);
}

.gm-contact-page-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(70px, 11vw, 155px);
  align-items: end;
}

.gm-contact-page-closing h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.7vw, 5.1rem);
  line-height: 1;
}

.gm-contact-page-closing-grid > div:last-child > p {
  max-width: 460px;
  margin: 0;
  color: var(--gm-muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.gm-contact-page-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
  padding-bottom: 7px;
  color: var(--gm-forest);
  border-bottom: 1px solid rgba(28, 41, 33, 0.36);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    gap 180ms ease;
}

.gm-contact-page-text-link:hover,
.gm-contact-page-text-link:focus-visible {
  gap: 20px;
  color: var(--gm-clay);
  border-color: var(--gm-clay);
}


/* ----------------------------------------------------------
   Tablet
---------------------------------------------------------- */

@media (max-width: 1050px) {

  .gm-contact-page-hero-grid {
    gap: 65px;
  }

  .gm-contact-page-main-grid {
    grid-template-columns: minmax(270px, 0.7fr) minmax(430px, 1.3fr);
    gap: 60px;
  }

  .gm-contact-page-form-panel {
    padding: 48px 38px;
  }

}


/* ----------------------------------------------------------
   Small tablet
---------------------------------------------------------- */

@media (max-width: 850px) {

  .gm-contact-page-hero-grid,
  .gm-contact-page-main-grid,
  .gm-contact-page-closing-grid {
    grid-template-columns: 1fr;
  }

  .gm-contact-page-hero-aside {
    max-width: 530px;
  }

  .gm-contact-page-main-grid {
    gap: 75px;
  }

  .gm-contact-page-details {
    position: static;
  }

  .gm-contact-page-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(28, 41, 33, 0.15);
  }

  .gm-contact-page-contact-item {
    padding: 25px;
    border-right: 1px solid rgba(28, 41, 33, 0.15);
  }

  .gm-contact-page-expect-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gm-contact-page-closing-grid {
    gap: 45px;
  }

}


/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */

@media (max-width: 620px) {

  .gm-contact-page-container {
    width: min(100% - 34px, 1220px);
  }

  .gm-contact-page-hero {
    padding: 78px 0 80px;
  }

  .gm-contact-page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .gm-contact-page-hero-aside {
    gap: 20px;
    padding: 29px 0 0;
    border-top: 1px solid rgba(28, 41, 33, 0.16);
    border-left: 0;
  }

  .gm-contact-page-contact-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .gm-contact-page-contact-item {
    padding: 23px 0;
    border-right: 0;
  }

  .gm-contact-page-form-panel {
    margin-inline: -17px;
    padding: 46px 17px;
    box-shadow: none;
  }

  .gm-contact-page-form-heading {
    padding-inline: 8px;
  }

  .gm-contact-page-form-embed {
    min-height: 700px;
  }

  .gm-contact-page-expect-grid {
    grid-template-columns: 1fr;
  }

  .gm-contact-page-expect-item,
  .gm-contact-page-expect-item:first-child {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 254, 250, 0.16);
    border-left: 0;
  }

  .gm-contact-page-expect-grid {
    border-top: 0;
  }

}


/* ----------------------------------------------------------
   Reduced motion
---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .gm-contact-page-contact-item a,
  .gm-contact-page-text-link {
    transition: none;
  }

}

/* ==========================================================
   PRIVACY AND COOKIE POLICY PAGES
   Shared .gm-policy-page- styles
========================================================== */


/* Shared container */

.gm-policy-page-container {
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
}


/* Page hero */

.gm-policy-page-hero {
  padding: clamp(95px, 11vw, 155px) 0;
  background: var(--gm-chalk);
}

.gm-policy-page-kicker {
  margin: 0 0 18px;
  color: var(--gm-clay);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gm-policy-page-hero h1 {
  margin: 0;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(3.5rem, 6.5vw, 6.7rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.gm-policy-page-hero-intro {
  max-width: 660px;
  margin: 29px 0 0;
  color: var(--gm-muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.8;
}

.gm-policy-page-updated {
  margin: 30px 0 0;
  color: var(--gm-olive);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Main policy layout */

.gm-policy-page-content {
  padding: clamp(85px, 10vw, 145px) 0;
  background: var(--gm-paper);
}

.gm-policy-page-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(70px, 10vw, 145px);
  justify-content: space-between;
  align-items: start;
}


/* Policy navigation */

.gm-policy-page-navigation {
  position: sticky;
  top: 130px;
  padding-top: 6px;
}

.gm-policy-page-navigation > p {
  margin: 0 0 19px;
  color: var(--gm-clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gm-policy-page-navigation nav {
  border-top: 1px solid rgba(28, 41, 33, 0.17);
}

.gm-policy-page-navigation a {
  display: block;
  padding: 13px 0;
  color: var(--gm-muted);
  border-bottom: 1px solid rgba(28, 41, 33, 0.13);
  font-size: 0.76rem;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.gm-policy-page-navigation a:hover,
.gm-policy-page-navigation a:focus-visible {
  padding-left: 7px;
  color: var(--gm-clay);
}


/* Policy content */

.gm-policy-page-article > section {
  padding: 0 0 clamp(60px, 8vw, 90px);
  scroll-margin-top: 140px;
}

.gm-policy-page-article > section + section {
  padding-top: clamp(60px, 8vw, 90px);
  border-top: 1px solid rgba(28, 41, 33, 0.15);
}

.gm-policy-page-section-number {
  margin: 0 0 15px;
  color: var(--gm-clay);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.gm-policy-page-article h2 {
  margin: 0 0 29px;
  color: var(--gm-ink);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gm-policy-page-article h3 {
  margin: 0 0 10px;
  color: var(--gm-forest);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.87rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.gm-policy-page-article p,
.gm-policy-page-article li {
  color: var(--gm-muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.gm-policy-page-article p {
  margin: 0 0 20px;
}

.gm-policy-page-article ul {
  margin: 23px 0 26px;
  padding: 0;
  list-style: none;
}

.gm-policy-page-article li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 27px;
}

.gm-policy-page-article li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gm-clay);
}

.gm-policy-page-article a {
  color: var(--gm-clay);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.gm-policy-page-article a:hover,
.gm-policy-page-article a:focus-visible {
  color: var(--gm-forest);
}


/* Contact information box */

.gm-policy-page-contact-box {
  margin-top: 32px;
  padding: 28px 31px;
  border-left: 3px solid var(--gm-clay);
  background: var(--gm-chalk);
}

.gm-policy-page-contact-box strong {
  display: block;
  margin-bottom: 13px;
  color: var(--gm-forest);
  font-family: "Spectral", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.gm-policy-page-contact-box address {
  margin: 0 0 13px;
  color: var(--gm-muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.7;
}

.gm-policy-page-contact-box p {
  margin: 4px 0;
  font-size: 0.85rem;
}


/* Legal basis definitions */

.gm-policy-page-definition-list {
  margin-top: 35px;
  border-top: 1px solid rgba(28, 41, 33, 0.16);
}

.gm-policy-page-definition-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 35px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(28, 41, 33, 0.16);
}

.gm-policy-page-definition-list h3 {
  margin: 2px 0 0;
}

.gm-policy-page-definition-list p {
  margin: 0;
  font-size: 0.88rem;
}


/* Cookie table */

.gm-policy-page-table-wrapper {
  width: 100%;
  margin: 33px 0;
  overflow-x: auto;
}

.gm-policy-page-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(28, 41, 33, 0.18);
}

.gm-policy-page-table th,
.gm-policy-page-table td {
  padding: 19px 17px;
  border-right: 1px solid rgba(28, 41, 33, 0.12);
  border-bottom: 1px solid rgba(28, 41, 33, 0.15);
  text-align: left;
  vertical-align: top;
}

.gm-policy-page-table th:first-child,
.gm-policy-page-table td:first-child {
  padding-left: 0;
}

.gm-policy-page-table th:last-child,
.gm-policy-page-table td:last-child {
  padding-right: 0;
  border-right: 0;
}

.gm-policy-page-table th {
  color: var(--gm-forest);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gm-policy-page-table td {
  color: var(--gm-muted);
  font-size: 0.79rem;
  line-height: 1.65;
}


/* Information note */

.gm-policy-page-note {
  margin-top: 30px;
  padding: 24px 27px;
  background: var(--gm-stone);
}

.gm-policy-page-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gm-forest);
  font-size: 0.78rem;
}

.gm-policy-page-note p {
  margin: 0;
  font-size: 0.82rem;
}


/* Tablet */

@media (max-width: 850px) {

  .gm-policy-page-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .gm-policy-page-navigation {
    position: static;
  }

  .gm-policy-page-navigation nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .gm-policy-page-container {
    width: min(100% - 34px, 1160px);
  }

  .gm-policy-page-hero {
    padding: 78px 0;
  }

  .gm-policy-page-navigation nav {
    grid-template-columns: 1fr;
  }

  .gm-policy-page-definition-list > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .gm-policy-page-table,
  .gm-policy-page-table tbody,
  .gm-policy-page-table tr,
  .gm-policy-page-table td {
    display: block;
    width: 100%;
  }

  .gm-policy-page-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .gm-policy-page-table tr {
    padding: 22px 0;
    border-bottom: 1px solid rgba(28, 41, 33, 0.18);
  }

  .gm-policy-page-table td {
    padding: 6px 0;
    border: 0;
  }

  .gm-policy-page-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--gm-forest);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

}

/* ==========================================================
   TESTIMONIAL REVEAL CONTROL
   Keep at the very bottom of styles.css
========================================================== */

.gm-testimonials-page-review-card-extra[hidden] {
  display: none !important;
}

.gm-testimonials-page-more-control {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  margin-top: clamp(45px, 6vw, 72px);
}

.gm-testimonials-page-more-control::before,
.gm-testimonials-page-more-control::after {
  content: "";
  width: min(16vw, 150px);
  height: 1px;
  background: rgba(28, 41, 33, 0.2);
}

button.gm-testimonials-page-more-button {
  appearance: none !important;
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 13px !important;
  margin: 0 !important;
  padding: 8px 0 !important;
  color: var(--gm-clay, #a66143) !important;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  border-radius: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease !important;
}

button.gm-testimonials-page-more-button:hover {
  color: var(--gm-forest, #263a2c) !important;
  border-bottom-color: var(--gm-forest, #263a2c) !important;
  background: transparent !important;
  box-shadow: none !important;
}

button.gm-testimonials-page-more-button:focus-visible {
  color: var(--gm-forest, #263a2c) !important;
  outline: 1px solid var(--gm-clay, #a66143) !important;
  outline-offset: 7px;
}

.gm-testimonials-page-more-button-icon {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 600px) {

  .gm-testimonials-page-more-control {
    gap: 15px;
  }

  .gm-testimonials-page-more-control::before,
  .gm-testimonials-page-more-control::after {
    width: 35px;
    flex: 0 0 35px;
  }

  button.gm-testimonials-page-more-button {
    font-size: 0.65rem !important;
  }

}