/* ==================== */
/* Colours
/* ==================== */

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-investor: #7A1327;
  --brand-investor-hover: #3c0c15;
  --brand-gold: #A47A38;
  --off-grey: #d2d2d2;
}


/* ==================== */
/* Scroll Behaviour
/* ==================== */

html {
  scroll-behavior: smooth;
}


/* ==================== */
/* Global Font
/* ==================== */

body {
  font-family: "Cormorant Garamond", serif; /* Change to correct font */
  font-size: 16px;
}

h1, h2 ,h3 {
  font-family: "Cormorant Garamond", serif; /* Change to correct font */
}

.post, .page {
  margin: 0 !important;
}

/* ==================== */
/* Container
/* ==================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-has-bg .container {
  position: relative;
  z-index: 2;
}

/* ==================== */
/* Sections
/* ==================== */

.section {
  padding: 2rem 0;
}

.section--off-grey {
  background-color: var(--off-grey);
}

.section-has-bg {
  background-size: cover;
  position: relative;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.section-has-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

@media (min-width: 1280px){
  .section {
    padding: 50px 0;
  }

  .section-has-bg {
    padding: 50px 0;
  }
}


/* ==================== */
/* Reset H1 CSS
/* ==================== */

h1.home-link,
a.home-link {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 16px !important;
}

.home-link__logo {
  display: block;
  max-width: 210px;
  width: 100%;
}


/* ==================== */
/* Site Titles
/* ==================== */

.rte h2, .rte h3, .rte h4,
.site-title {
  margin-top: 0 !important;
  color: var(--brand-main) !important;

}

.site-title--centre {
  text-align: center;
}


/* ==================== */
/* Site Buttons
/* ==================== */

.site-btn {
  display: inline-block;
  background-color: var(--brand-main);
  color: white !important;
  padding: 8px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.site-btn--white {
  background-color: white;
  color: var(--brand-main) !important;
}


/* ==================== */
/* Typography
/* ==================== */

p:first-of-type {
  margin-top: 0;
}

.rte {
  line-height: 1.75 !important;
}

@media (min-width: 1280px){
  .rte--larger-text {
    font-size: 18px;
  }
}


/* ==================== */
/* Misc Classes
/* ==================== */

.text-align-center {
  text-align: center !important;
}

.max-width--750 {
  max-width: 750px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text--white {
  color: white !important;
}

.disp-block {
  display: block !important;
}

/* ==================== */
/* Grid
/* ==================== */


.row, .row-rvrse {
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.row-invert{
  display: flex!important;
  flex-direction: column-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.col-2, .col-3, .col-4, .col-2-small, .col-2-big, .col-2-no-space{
  width: 100%;
}

.col-4{
  padding: 15px 0;
}

.vertical_center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px){

  .row, .row-invert{
    flex-direction: row;
  }

  .col-4{
    width: 48.5%;
  }

}

@media (min-width: 1024px){

  .row {
    flex-direction: row;
  }

  .row-rvrse {
    flex-direction: row-reverse;
  }

  .col-2{
    width: 48.5%;
  }

  .col-2-small{
    width: 31.5%;
  }

  .col-2-big{
    width: 64.5%;
  }

  .col-2-no-space{
    width: 50%;
  }

  .col-3{
    width: 31.5%;
  }

  .col-4{
    width: 23.5%;
  }

}

/* ==================== */
/* Top Bar
/* ==================== */

.top-bar {  
  background-color: var(--brand-main-hover);
  padding: 6px 0;
  text-align: center;
}

.top-bar__col--contact {
  display: none;
}

.top-bar__cta-btn {
  display: inline-block;
  color: white !important;
  font-size: 14px;
  text-decoration: none !important;
  background-color: var(--brand-main);
  padding: 8px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.top-bar__item {
  color: white;
}

.top-bar__item i {
  display: inline-block;
  margin-right: 5px;
}

.top-bar__item a {
  color: white !important;
  text-decoration: none !important;
  display: inline-block;
  margin-right: 1.5rem;
  text-transform: uppercase;  
  font-size: 14px;
  cursor: pointer;
}

@media (min-width: 768px){
  .top-bar {
    display: block;
    padding: 8px 0;
  }

  .top-bar__row {
    display: flex;
    justify-content: space-between;
  }

  .top-bar__col--contact {
    display: flex;
    align-items: center;
  }

  .top-bar__cta-btn {
    padding: 5px 25px;    
  }
}

/* ===================== */
/* Slideout Nav
/* ===================== */

.slideout-menu {    
  width: 350px;
  position: fixed;
  top: 0; 
  left: -350px; 
/*  left: 0;*/
  height: 100%; 
  background: #333;
  z-index: 100;
  /*overflow-y: scroll;*/
  background-color: var(--brand-main);
  transition: 0.5s;
}

body.admin-bar .slideout-menu {
  top: 46px;
}

.slideout-menu.active {
  box-shadow: 0 21px 27px rgb(0 0 0 / 90%);
  left: 0;
}

.slideout-menu i {
  font-family: "FontAwesome";
}

.slideout-menu h3 { 
  margin: 0;
  position: relative;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
/*  border-bottom: 4px solid #222;*/
}

/* Style up the toggle menu "x" */
.slideout-menu .slideout-menu-toggle {
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  padding: 6px 9px 5px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  background: var(--brand-blue);
  color: white;
  text-decoration: none;
  vertical-align: top;
}

.slideout-menu .slideout-menu-toggle:hover {
  color: #fff;
}

/* Give the menu container some love */
.slideout-menu ul {
  list-style: none;
  font-weight: 300; 
  margin: 0;
  padding: 0;
}

/* And now the list items */
.slideout-menu ul li {
  /*border-top: 1px solid #454545;
  border-bottom: 1px solid #151515;*/
}

/* The anchor elements within the list items */
.slideout-menu ul li a {
  position: relative;
  display: block;
  padding: 10px;
  color: white;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.slideout-menu ul li a button  {
  position: absolute;
  right: 10px;
}

.slideout-menu ul li a:hover {
  /*background: #000;
  color: #fff;*/
}

.slideout-menu ul li a i {
  position: absolute;
  top: 15px;
  right: 10px;
  opacity: .5;
}

.dropdown-toggle {
  background-color: transparent;
  border: 0;    
  content: "";
  height: 42px;
  padding: 0;
  position: absolute;
  text-transform: lowercase;
  top: 3px;
  right: 0;
  width: 42px;
}

.dropdown-toggle:after {
  font-family: "FontAwesome";
  color: white;
  content: "\f078";    
  line-height: 42px;
  position: relative;
  top: 0;
  left: 1px;
  width: 42px;
}

.dropdown-toggle.sub-menu-on:after {
  content: "\f077";    
}

/* Submenu */
.slideout-menu ul .sub-menu {
  display: none;
  position: relative;
  width: 100%;
}

.slideout-menu ul .sub-menu li {
  border: 0;  
}

.slideout-menu ul .sub-menu li a {
  text-align: center;
  background-color: #2b673f !important;
}

@media (min-width: 1024px){
  .slideout-menu {
    display: none;
  }
}

/* ==================== */
/* Main Header
/* ==================== */

.main-header {
  background-color: var(--off-grey);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.main-header__row {
  display: flex;
  justify-content: space-between;
}

.main-header__col--logo {
  flex-basis: 60%;
}

.main-header__col--nav {
  display: none;
}

.main-header__burger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header__burger-link {
  color: white !important;
}

@media (min-width: 1024px){
  .main-header {
    padding: 1rem 0;
  }

  .main-header__col--logo {
    flex-basis: auto;
  }

  .main-header__burger {
    display: none;
  }

  .main-header__col--nav {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px){
  .main-header {
    padding: 1.5rem 0;
  }
}


/* ==================== */
/* Main Nav
/* ==================== */

.main-browse-nav {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
  display: flex;  
}

.main-browse-nav > li {
  margin-left: 1rem;
  position: relative;
}

.main-browse-nav > li > a {
  color: var(--brand-main) !important;
  text-transform: uppercase !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 14px;
}

@media (min-width: 1280px){

  .main-browse-nav > li { 
    margin-left: 2rem;
  }

  .main-browse-nav > li > a {
    font-size: 18px;
  }
}


/* ==================== */
/* Sub Menus
/* ==================== */

.sub-menu {
  position: absolute;
  left: 0;  
  margin: 0;
  padding: 0;
  width: 250px;
  display: none;
}

.sub-menu > li.menu-item {
  display: block;  
}

.sub-menu > li.menu-item a {
  color: white !important;
  display: block;
  background-color: var(--brand-main);
  padding: 8px;
  text-align: left;
  text-decoration: none !important;
}

.sub-menu > li.menu-item a:hover {
  background-color: var(--brand-main-hover)
}

.main-browse-nav > li:hover .sub-menu {
  display: block;
}


/* ==================== */
/* Slideshow
/* ==================== */

#slideshow {
  overflow: hidden;
}

.fp-slideshow__slide {
  height: 500px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.fp-slideshow__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.fp-slideshow__content {
  position: relative;
  z-index: 1;  
  width: 90%;
  max-width: 1280px;  
  margin-left: auto;
  margin-right: auto;
}

.fp-slideshow__title {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.fp-slideshow__text {
  color: white;
  margin: 0 0 0.5rem 0;
  max-width: 500px;

}

#slideshow .slick-dots {
  bottom: 1rem;
}

#slideshow .slick-dots li button:before {
  font-size: 14px;
  color: white;
}

#slideshow .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

#slideshow .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media (min-width: 1280px){

  .fp-slideshow__slide {
    height: 750px;
  }

  .fp-slideshow__logo {
    width: 550px;
  }

  .fp-slideshow__title {
    font-size: 28px;
  }

  .fp-slideshow__text {
    font-size: 22px;
  }

  #slideshow .slick-dots {
    bottom: 2rem;
  }
}


/* ==================== */
/* Footer
/* ==================== */

.site-footer-main {
  background-color: #000000;
  padding: 32px 0;
}

.site-footer-main__col--blurb {
  margin-bottom: 32px;
}

.site-footer__logo {
  max-width: 210px;
  margin-bottom: 1rem;
}

.site-footer__blurb {
  font-size: 16px;
  line-height: 1.6;
  color: white;
}

.site-footer__title {
  color: white;
  font-size: 22px;
  position: relative;
  padding-bottom: 4px;
}

.site-footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  height: 2px;
  background-color: white;

}

.footer-nav-wrap ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

ul.footer-legal-nav {
  margin-bottom: 1rem !important;
}

.footer-nav-wrap ul a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: white !important;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none !important;
}

.footer-nav-wrap ul a:hover {
  border-color: white;
}

.site-footer__addr {
  color: white !important;
  font-size: 16px;
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.site-footer__addr::before {
  content: "\f3c5"; 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  color: white;
  position: absolute;
  left: 0;
}

.site-footer__link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: white !important;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none !important;  
}

.site-footer__link-wrap {
  position: relative;
  padding-left: 32px;
}

.site-footer__link-wrap::before {
  content: "\f095"; 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  color: white;
  position: absolute;
  left: 0;
}

.site-footer__link-wrap--email::before {
  content: "\f0e0";
}

.social-icons {
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;  
}

.social-icons__link {
  font-size: 32px;
  color: white !important;
}

.social-icons__item {
  margin-right: 1rem;
}

.social-icons__item:last-of-type {
  margin-right: 0;
}

.social-icons__link--dark {
  color: var(--brand-main) !important;
}

.site-footer .social-icons__item {
  margin-right: 0.5rem;
}

@media (min-width: 768px){

  .site-footer-main__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-footer-main__col--blurb,
  .site-footer__blurb {
    margin-bottom: 0;
  }

  .site-footer__title {
    margin-top: 0;
  }
}

@media (min-width: 1024px){

  .site-footer-main {
    padding-top: 50px;
  }

  .site-footer-main__row {
    flex-wrap: nowrap;
  }

  .site-footer-main__col {
    flex-basis: calc(25% - 32px);
  }
}

@media (min-width: 1280px){

  .site-footer-main {
    padding-top: 75px;
  }

  .site-footer__blurb {
    padding-right: 32px;
  }
  
  .social-icons__link--lg {
    font-size: 45px;
  }

  .site-footer__blurb {
    line-height: 2;
  }
}


/* ==================== */
/* Site Info
/* ==================== */

.site-info {
  background-color: #000000;
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-info__text {
  margin: 0;
  color: white;
  font-size: 14px;
}

.site-info__copyright,
.site-info__designby {
  display: block;
  text-align: center;
}

.site-info a {
  color: white !important;
}

@media (min-width: 768px){
  .site-info__text {
    display: flex;
    justify-content: center;    
  }

  .site-info__copyright {
    margin-right: 8px;
    position: relative;
  }  

  .site-info__copyright::after {
    content: " |";
    display: inline-block;
    padding-left: 8px;
  }
}


/* ==================== */
/* Main Banner
/* ==================== */

.main-banner {
  background-size: cover;
  background-position: center;
  background-color: var(--brand-main); /* Default colour fallback for banner */
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
}

.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.main-banner__row {
  position: relative;
}

.main-banner__title {
  margin: 0;
  color: white;
}

@media (min-width: 1280px){
  .main-banner {
    height: 300px;
  }

  .main-banner__title {
    font-size: 50px;
  }
}


/* ==================== */
/* Page Builder
/* ==================== */

.page-wrap {
  padding: 0;
}

.content-box__row {
/*  background-color: white;*/
/*  padding: 1rem;*/
  margin-bottom: 2rem;
/*  box-shadow: 0 0 4px rgba(0,0,0,0.4);*/
}

.content-box__row p:last-of-type {
  margin-bottom: 0;
}

.col-order-1 {
  margin-bottom: 2rem;
}

.content-box__title {
  margin-bottom: 1rem;
}

.content-box__body {
  margin-bottom: 1rem;
}

.section-has-bg .content-box__row {
  background-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-shadow: none;
}

.section-has-bg .site-title-pre,
.section-has-bg .content-box__title,
.section-has-bg .content-box__body .rte * {
  color: white !important;
}

@media (min-width: 1024px){

  .col-order-1 {
    margin-bottom: 0;
  } 

  .content-box__row {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
  }

  .content-box__row--single-row {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }

  .content-box__col--txt {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .content-box__col--img {
    width: 400px;
  }

  .content-box__col--txt.col-order-1 {
    padding-right: 2rem;
  }

  .col-order-1 {
    order: 1;
  }

  .col-order-2 {
    order: 2;
  }
}

@media (min-width: 1280px){
  .content-box__row { 
    padding: 3rem 0;
  }

  .content-box__body {
    margin-bottom: 2rem;
  }
}


/* ==================== */
/* Contact Page 1
/* ==================== */

.contact-card {
  background-color: var(--brand-main);
  padding: 1rem;
  border-radius: 10px;
  display: flex;  
  align-items: center;
  margin-bottom: 1rem;
}

.contact-card__icon-wrap {
  margin-right: 1rem;
}

.contact-card__icon-circle {
  color: white !important; 
}

.contact-card__icon {
  color: var(--brand-main) !important;
}

.contact-card__text-wrap,
.contact-card__link {
  color: white !important;
}

.contact-card__link {
  text-decoration: none !important;
}

.opening-hours {
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

.opening-hours__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}

.opening-hours__item::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted white;
}

.opening-hours__day,
.opening-hours__hours {
  background-color: var(--brand-main);
  display: inline-block;  
  position: relative;
  z-index: 1;
}

.opening-hours__day {
  padding-right: 8px;
}

.opening-hours__hours {
  padding-left: 8px;
}

.section-about-lower__col--hours {
  margin-bottom: 2rem;
}

.section-contact__col--form h2 {
  margin-bottom: 2rem !important;
}

.social-icons {
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;
  gap: 16px;
}

.social-icons__link {
  font-size: 32px;
  color: var(--brand-main) !important;
}

.site-footer .social-icons__link {
  color: white !important;
}

@media (min-width: 1024px){
  .section-contact__row,
  .section-about-lower__row {
    display: flex;
    justify-content: space-between;
  }

  .section-contact__col--form {
    flex-basis: 60%;
  }

  .section-contact__col--text {
    flex-basis: 35%;
  }

  .section-about-lower__col {
    flex-basis: 40%;
  }
}


/*====================
Contact Page 2
====================*/

.contact_box_wrapper{
  background-color: var(--brand-main);
  padding: 30px;
  border-radius: 10px;
  color: #fff;  
  text-align: center;
  margin: 15px 0;
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.2);
}

.contact_box_wrapper h2{
  font-size: 60px;
  margin: 0;
}

.contact_box_wrapper a{
  color: #fff;  
  text-decoration: none;
}

.contact_box_wrapper a:hover{
  color: var(--brand-secondary);  
  text-decoration: none;
}

.frm_button_submit{
  float: right;
}

.contact_form{
  background-color: var(--brand-main);
}

.contact_form h2{
  color: #fff;
}





/* ============================================================ */
/* Custom code starts below...
/* ============================================================ */


/* ==================== */
/* Titles
/* ==================== */

.site-title {
  margin-bottom: 30px!important;
  font-size: 40px;
}

.site-sub-title {
  margin-bottom: 30px;
  font-size: 24px;
  max-width: 700px;
}

.site-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 0;
  position: relative
}

@media (min-width: 1024px){
  .site-title h2 {
    font-size: 40px;
  }
}

.site-title h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  position: relative

}

.site-title-white, .site-title-white .pre-title, .site-title-white .main-title {
  margin: 0;
  color: white!important;
}

.site-title-black .pre-title, .site-title-black .main-title {
  margin: 0;
  color: black;
  max-width: 380px;
}

.site-title-grey h2, .site-title-grey h3 {
  margin: 0;
  color: #1E1E1E;
}

.site-title-center {
  margin: auto;
  text-align: center;
}

.section_content {
  font-size: 20px;
  max-width: 400px;
}

.section_content_white {
  color: white!important;
}

/* ==================== */
/* Buttons
/* ==================== */

.btn-center {
  text-align: center;
}

.btn-left {
  align-self: flex-start;
}

.site-btn{
  position: relative;
  text-transform: none;
  border-radius: 0;
}

.site-btn-investor{
  background-color: var(--brand-investor);
}

.site-btn-investor span, .site-btn-sec span, .site-btn-blk span, .site-btn-white span{
  position: relative;
  z-index: 2;
  margin: 0!important;
}

.site-btn-investor:hover{
  position: relative;
  background: var(--brand-investor);
  color: white!important;
  transition: .5s;
}

.site-btn-investor::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-main-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}

.site-btn-sec{
  background-color: var(--brand-sec);
  color: white!important;
}

.site-btn-sec:hover{
  position: relative;
  background: var(--brand-sec);
  transition: .5s;
}

.site-btn-sec::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}

.site-btn-outline{
  background: transparent;
  border: 1px solid white;
  transition: .2s;
}

.site-btn-outline:hover{
  position: relative;
  background: var(--brand-sec);
  border: 1px solid var(--brand-sec);
  transition: .5s;
  color: var(--brand-main)!important;
}

.site-btn-outline::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec);
  transition: 0.5s;
  height: 100%;
  z-index: -1;
}

.site-btn-blk{
  background-color: black;
  color: white!important;
}

.site-btn-blk:hover{
  position: relative;
  background: var(--brand-sec);
  transition: .5s;
}

.site-btn-blk::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}



.site-btn-white {
  background-color: white;
  color: black!important;
}

.site-btn-blk:hover{
  position: relative;
  background: #cecece;
  transition: .5s;
}

.site-btn-blk::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #cecece;
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}

.site-btn-outline:hover::after, .site-btn-investor:hover::after, .site-btn-sec:hover::after, .site-btn-blk:hover::after, .site-btn-white:hover::after{
  width: 100%;
}

/* ==================== */
/* backgrounds
/* ==================== */

.bg-main {
  background-color: var(--brand-main)!important;
}

.bg-sec {
  background-color: var(--brand-sec)!important;
}

.bg-ter {
  background-color: var(--brand-ter)!important;
}

.bg-off-grey {
  background-color: var(--off-grey)!important;
}

.bg-off-white {
  background-color: var(--off-white)!important;
}

.bg-black {
  background-color: black;
}

.bg-grey {
  background-color: #f8f8f8;
}

.bg-gradient {
  background: linear-gradient(135deg, rgba(255,255,255,1) 50%, rgba(240,240,240,1) 100%)!important;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

.bg-vctr {
  background-size: cover;
  background-position: right 50% top 30px;
  background-repeat: no-repeat;
  min-height: 300px;
}

.bg-img-fixed {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

/* ==================== */
/* Header
/* ==================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.main-header {
  background-color: transparent!important;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}

/* ==================== */
/* Hero
/* ==================== */

.hero_section {
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero_title {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.4;
  max-width: 800px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero_content {
  max-width: 800px;
  font-weight: 400;
  color: white;
  font-size: 16px;
  margin-top: 0;
}


.hero-btns {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
  gap: 10px;
}

.hero-btns .site-btn {
  align-self: flex-start;
}

@media (min-width: 1024px){

  .hero_title {
    font-size: 64px;
  }

  .hero_content {
    font-size: 20px;
  }
}

/* ==================== */
/* Title
/* ==================== */

.pre_title {
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 20px;
  display: inline-block;
}

.pre_title_white {
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 20px;
  display: inline-block;
}

.section_title .title {
  font-size: 32px;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.4;
}

.title-white {
  color: white!important;
}

/* ==================== */
/* Proof Bar
/* ==================== */

.proof_bar {
  align-items: center;
}

.proof_value_wrapper {
  display: flex;
  justify-content: center;
}

.proof_value {
  font-size: 48px;
  font-weight: 400;
  margin: 0;
  color: var(--brand-main);
  text-align: center;
}

.proof_text {
  font-size: 20px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
}

@media (min-width: 1024px){

  .proof_value_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .proof_value {
    text-align: left;
  }

  .proof_text {
    text-align: left;
    max-width: 100px;
  }
}

/* ==================== */
/* 3 Col section
/* ==================== */

.three_col_title {
  font-size: 32px;
  font-weight: 400;
}

.three_col_content {
  font-size: 20px;  
}


@media (min-width: 1024px){

  .three_col_title {
    max-width: 160px;
  }

  .three_col_content {
    max-width: 210px;
  }
}

/* ==================== */
/* Video Section
/* ==================== */

.video_section_content {
  font-size: 20px;
  max-width: 350px;
}

.video_section_content_large {
  font-size: 32px;
  font-weight: 400;
  margin-top: 0;
  max-width: 400px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.video_section_link a {
  display: inline-block;
  color: var(--brand-gold) !important;
  text-decoration: none !important;
}

.video_section_link a::before {
  content: "\f060";
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.video_section_link a:hover {
  background-color: var(--brand-main-hover);
}

.video_section_btn {
  margin-top: 30px;
}

/* ==================== */
/* Video Section
/* ==================== */

.design-showcase-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  --position: 50%;
  min-height: 500px;
  color: white;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.image-before {
  width: var(--position);
  z-index: 2;
}

.image-after {
  z-index: 1;
}

.slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  z-index: 5;
}

.featured-project-card, .featured-project-card-content {
  color: white!important;
}

.featured-project-card-content p {
  margin-top: 20px;
  margin-bottom: 0;
}


/* ==================== */
/* details Sections
/* ==================== */

.details_wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.details_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e1e1e;
  padding: 30px;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

.details_txt_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 50px 20px;
  margin: auto;
}

.details_txt_content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.details_txt_content h2 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.details_txt_content p {
  margin-top: 0;
  margin-bottom: 0;
}

.details_txt_content .site-btn {
  align-self: center;
}

.details_txt {
  height: 100%;
  position: relative;
}

.details_img {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0;
}

.details_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
}

@media (min-width: 1024px) {

  .details_txt_content {
    text-align: left;
    max-width: 550px;
    padding: 50px 0;
  }

  .details_txt_content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 20px;
  }

  .details_txt_content .site-btn {
    align-self: flex-start;
  }

  .details_img {
    border-radius: 15px 0 0 15px;
  }

  .details_txt_content {
    margin-right: auto;
    margin-left: 50px;
  }

  .details_txt_content h2 {
    font-size: 40px;
  }
}

/* ==================== */
/* details Sections
/* ==================== */

.gallery_intro {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1e1e1e;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.gallery_intro .section_title {
  margin-right: 20px
}

.gallery_intro_text {
  max-width: 600px;
  font-size: 16px;
}

/* ==================== */
/* Gallery Grid
/* ==================== */

.grid {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 30vw;
  list-style-type: none!important;
  padding: 10px!important;
}

/*.grid .grid_item:nth-child(9) {
  grid-column: 1 / -1;
  grid-row: span 2;
}*/

.grid figure,
.grid img {
  width: 100%;
  height: 100%;
}

.grid img {
  object-fit: cover;
  background: #f5f3f4;
  /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); */
}

@media (min-width: 850px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12vw;
  }

  .grid .grid_item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .grid .grid_item:nth-child(2) {
    grid-column: 2 / span 3;
    grid-row: 1 / span 2;
  }

  .grid .grid_item:nth-child(3) {
    grid-column: 5;
    grid-row: 1 / span 2;
  }

  .grid .grid_item:nth-child(4) {
    grid-column: 1 / span 3;
    grid-row: 3 / span 2;
  }

  .grid .grid_item:nth-child(5) {
    grid-column: 4;
    grid-row: 3 / span 2;
  }

  .grid .grid_item:nth-child(6) {
    grid-column: 5;
    grid-row: 3 / span 2;
  }

}

/* ==================== */
/* Important Info Sections (experience)
/* ==================== */

.exp_info_wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.exp_info_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e1e1e;
  padding: 30px;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

.exp_info_txt_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 50px 20px;
  margin: auto;
}

.exp_info_txt_content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.exp_info_txt_content h2 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.exp_info_txt_content p {
  margin-top: 0;
  margin-bottom: 0;
}

.exp_info_txt_content .site-btn {
  align-self: center;
}

.exp_info_txt {
  height: 100%;
  position: relative;
}

.exp_info_img {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0;
  padding-top: 30px;
}

.exp_info_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
}

@media (min-width: 1024px) {

  .exp_info_txt_content {
    text-align: left;
    max-width: 570px;
    padding: 50px 0;
  }

  .exp_info_txt_content ul {
    list-style-type: disc;
    margin-left: 0;
    padding-left: 20px;
  }

  .exp_info_txt_content .site-btn {
    align-self: flex-start;
  }

  .exp_info_txt_content {
    margin-right: 50px;
    margin-left: auto;
  }

  .exp_info_txt_content h2 {
    font-size: 40px;
  }
}

/* ==================== */
/* Consultation Form
/* ==================== */

.consultation_form {
  background-color: #000000;
  padding: 30px 30px 0 30px;
}

/* ==================== */
/* MCG Entrance Page
/* ==================== */

.mcg-entrance-body {
  background: #000000;
  margin: 0;
  overflow-x: hidden;
}

.mcg-entrance-body.admin-bar .mcg-entrance {
  min-height: calc(100vh - 32px);
}

.mcg-entrance {
  background: #000000;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  padding: 100px;
  position: relative;
  width: 100%;
}

.mcg-entrance__logo-wrap {
  left: 50%;
  min-width: 200px;
  position: absolute;
  top: 50px;
  transform: translate(-50%, -50%);
  width: min(190px, 40vw);
  z-index: 5;
}

.mcg-entrance__logo {
  display: block;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  width: 100%;
}

.mcg-entrance__grid {
  display: grid;
  height: calc(100vh - 200px);
  height: calc(100svh - 200px);
  margin: 0 auto;
  max-height: none;
  max-width: none;
  min-height: 344px;
  width: 100%;
}

.mcg-entrance__panel {
  align-items: center;
  display: flex;
  justify-content: center;
  outline: 0 solid transparent;
  outline-offset: -5px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 220ms ease, outline-color 220ms ease;
}

.mcg-entrance__panel::after {
  border: 5px solid #a47a38;
  box-shadow: inset 0 0 0 5px #a47a38;
  content: "";
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 5;
}

.mcg-entrance__panel:hover::after,
.mcg-entrance__panel:focus-within::after {
  opacity: 1;
}

.mcg-entrance__panel:hover,
.mcg-entrance__panel:focus-within {
  box-shadow: inset 0 0 0 5px #a47a38;
  outline-color: #a47a38;
}

.mcg-entrance__image,
.mcg-entrance__overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.mcg-entrance__image {
  filter: contrast(.9) brightness(.72);
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(.19, 1, .22, 1), filter 900ms cubic-bezier(.19, 1, .22, 1);
  z-index: 1;
}

.mcg-entrance__panel:hover .mcg-entrance__image,
.mcg-entrance__panel:focus-within .mcg-entrance__image {
  filter: contrast(.94) brightness(.78);
  transform: scale(1.08);
}

.mcg-entrance__overlay {
  z-index: 2;
}

.mcg-entrance__panel--residential .mcg-entrance__overlay {
  background: rgba(0, 0, 0, .34);
}

.mcg-entrance__panel--investors .mcg-entrance__overlay {
  background: rgba(0, 0, 0, .30);
}

.mcg-entrance__panel--commercial .mcg-entrance__overlay {
  background: rgba(0, 0, 0, .30);
}

.mcg-entrance__content {
  max-width: 276px;
  padding: 0 18px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 3;
}

.mcg-entrance__title {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.2vw, 40px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.mcg-entrance__button {
  align-items: center;
  background: #12442e;
  border: 2px solid #a47a38;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  height: 39px;
  justify-content: center;
  line-height: 1;
  padding: 0 54px 0 22px;
  position: relative;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mcg-entrance__panel--investors .mcg-entrance__button {
  background: #7a1327;
}

.mcg-entrance__panel--commercial .mcg-entrance__button {
  background: #003656;
}

.mcg-entrance__button:visited {
  color: #ffffff;
}

.mcg-entrance__button:hover,
.mcg-entrance__button:focus-visible {
  background: #a47a38;
  border-color: #ffffff;
  color: #ffffff;
  outline: none;
}

.mcg-entrance__arrow {
  display: block;
  height: 18px;
  position: absolute;
  right: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}

@media (min-width: 900px) {

  .mcg-entrance__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mcg-entrance__panel {
    min-height: 0;
  }

  .mcg-entrance__content {
    padding: 0;
  }

  .mcg-entrance__title {
    font-size: clamp(28px, 2.75vw, 40px);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .mcg-entrance__panel--residential .mcg-entrance__image {
    object-position: 48% center;
    transform: scaleX(-1) scale(2.08);
  }

  .mcg-entrance__panel--investors .mcg-entrance__image {
    object-position: 52% 48%;
    transform: scale(1.28);
  }

  .mcg-entrance__panel--commercial .mcg-entrance__image {
    object-position: 62% center;
    transform: scale(1.16);
  }

  .mcg-entrance__panel--residential:hover .mcg-entrance__image,
  .mcg-entrance__panel--residential:focus-within .mcg-entrance__image {
    transform: scaleX(-1) scale(2.2);
  }

  .mcg-entrance__panel--investors:hover .mcg-entrance__image,
  .mcg-entrance__panel--investors:focus-within .mcg-entrance__image {
    transform: scale(1.35);
  }

  .mcg-entrance__panel--commercial:hover .mcg-entrance__image,
  .mcg-entrance__panel--commercial:focus-within .mcg-entrance__image {
    transform: scale(1.24);
  }
}

@media (max-width: 782px) {

  .mcg-entrance-body.admin-bar .mcg-entrance {
    min-height: calc(100vh - 46px);
  }
}

@media (max-width: 899px) {

  .mcg-entrance {
    padding: 96px 18px 32px;
  }

  .mcg-entrance__logo-wrap {
    position: absolute;
  }

  .mcg-entrance__grid {
    height: auto;
    min-height: calc(100svh - 128px);
  }

  .mcg-entrance__panel {
    min-height: 34vh;
  }

  .mcg-entrance__content {
    margin-bottom: 34px;
  }

  .mcg-entrance__title {
    font-size: clamp(26px, 9vw, 38px);
  }

  .mcg-entrance__button {
    margin: 0 auto;
    max-width: 290px;
  }
}

/* ==================== */
/* MCG Residential Home
/* ==================== */

.mcg-sector-body {
  background: #ffffff;
  color: #000000;
  margin: 0;
}

.mcg-sector {
  --sector-green: #12442e;
  --sector-green-dark: #082a1a;
  --sector-gold: #a47a38;
  --sector-gold-bright: #c9994e;
  --sector-paper: #f8f8f8;
  --sector-line: #dddddd;
  font-family: "Cormorant Garamond", serif;
  overflow: hidden;
}

.mcg-sector--investors {
  --sector-green: #7a1327;
  --sector-green-dark: #3c0c15;
}

.mcg-sector--commercial {
  --sector-green: #003656;
  --sector-green-dark: #001e32;
}

.mcg-sector *,
.mcg-sector *::before,
.mcg-sector *::after {
  box-sizing: border-box;
}

.mcg-sector a {
  color: inherit;
}

.mcg-sector-header {
  align-items: center;
  background: #000000;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(24px, 7vw, 96px);
  pointer-events: auto;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
  z-index: 100;
}

.admin-bar .mcg-sector-header {
  top: 32px;
}

.mcg-sector-header--solid {
  background: #000000;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.mcg-sector-header a {
  pointer-events: auto;
}

.mcg-sector-header__logo {
  display: block;
  width: min(190px, 34vw);
}

.mcg-sector-header__logo img {
  display: block;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  width: 100%;
}

.mcg-sector-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  width: 44px;
}

.mcg-sector-menu-toggle span:not(.screen-reader-text) {
  background: #ffffff;
  display: block;
  height: 3px;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 34px;
}

.mcg-sector-header.is-menu-open .mcg-sector-menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mcg-sector-header.is-menu-open .mcg-sector-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mcg-sector-header.is-menu-open .mcg-sector-menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mcg-sector-header__nav {
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
  display: none !important;
  flex-direction: column;
  gap: 18px;
  line-height: 1.2;
  min-width: 240px;
  padding: 24px;
  position: absolute;
  right: clamp(24px, 7vw, 96px);
  text-align: left;
  top: 100%;
}

.mcg-sector-header.is-menu-open .mcg-sector-header__nav {
  display: flex !important;
}

.mcg-sector-header__nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  text-decoration: none;
}

.mcg-sector-header__nav a::after {
  background: var(--sector-gold);
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.mcg-sector-header__nav a:hover::after,
.mcg-sector-header__nav a:focus-visible::after {
  transform: scaleX(1);
}

.mcg-sector-hero {
  min-height: 650px;
  position: relative;
}

.mcg-sector-hero__media,
.mcg-sector-hero__shade {
  inset: 0;
  position: absolute;
}

.mcg-sector-hero__media {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.mcg-sector-hero--collage {
  background: #101010;
  min-height: clamp(680px, 48vw, 900px);
}

.mcg-sector-hero__media--collage {
  align-items: stretch;
  display: flex;
  justify-content: center;
  padding: 0;
  transform: none;
}

.mcg-investor-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  height: 100%;
  max-height: none;
  max-width: none;
  overflow: hidden;
  width: 100%;
}

.mcg-investor-collage__item {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mcg-investor-collage__item--one {
  grid-column: 1;
  grid-row: 1 / 3;
}

.mcg-investor-collage__item--two {
  grid-column: 2 / 4;
  grid-row: 1;
}

.mcg-investor-collage__item--three {
  grid-column: 3;
  grid-row: 2;
}

.mcg-investor-collage__item--four {
  grid-column: 2;
  grid-row: 2;
}

.mcg-sector-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34));
}

.mcg-sector--investors .mcg-sector-hero__shade {
  background: rgba(0, 0, 0, 0.48);
}

.mcg-sector-hero__content {
  color: #ffffff;
  max-width: 1120px;
  padding: 254px clamp(24px, 7vw, 212px) 120px;
  position: relative;
  text-shadow: 0 4px 80px rgba(0, 0, 0, 0.85);
  z-index: 2;
}

.mcg-sector-kicker {
  font-size: 12px;
  margin: 0 0 20px;
}

.mcg-sector-hero h1 {
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 18px;
  max-width: 1120px;
  text-transform: uppercase;
}

.mcg-sector-hero p:not(.mcg-sector-kicker) {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 34px;
}

.mcg-sector--investors .mcg-sector-hero p:not(.mcg-sector-kicker) {
  max-width: none;
  white-space: nowrap;
}

.mcg-sector-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
}

.mcg-sector-button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  gap: 18px;
  font-size: 16px;
  height: 44px;
  justify-content: center;
  min-width: 260px;
  padding: 0 22px;
  position: relative;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mcg-sector-button::after {
  background: currentColor;
  content: "";
  height: 16px;
  margin-left: 0;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h12' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m13 7 5 5-5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms ease;
  width: 16px;
}

.mcg-sector-button:hover,
.mcg-sector-button:focus-visible {
  transform: translateY(-2px);
}

.mcg-sector-button:hover::after,
.mcg-sector-button:focus-visible::after {
  transform: translateX(5px);
}

.mcg-sector-button--light,
.mcg-sector-button--dark,
.mcg-sector-button--gold {
  background: var(--sector-gold) !important;
  color: #ffffff !important;
}

.mcg-sector-button--light:visited,
.mcg-sector-button--dark:visited,
.mcg-sector-button--gold:visited {
  color: #ffffff !important;
}

.mcg-pill {
  border: 2px solid var(--sector-gold);
  border-radius: 999px;
  color: var(--sector-gold);
  display: inline-flex;
  font-size: 16px;
  justify-content: center;
  line-height: 1.2;
  margin: 0 0 18px;
  min-width: 156px;
  padding: 5px 22px;
}

.mcg-pill--light {
  border-color: #ffffff;
  color: #ffffff;
}

.mcg-sector-intro,
.mcg-services,
.mcg-proof,
.mcg-testimonials,
.mcg-insights {
  padding: clamp(72px, 8vw, 110px) clamp(24px, 7vw, 214px);
}

.mcg-sector-intro {
  align-items: center;
  background: var(--sector-paper);
  display: grid;
  gap: clamp(40px, 5vw, 56px);
  grid-template-columns: minmax(50%, 1fr) minmax(320px, 0.78fr);
  min-height: 556px;
  padding-bottom: 76px;
  padding-top: 0;
}

.mcg-sector-intro__video {
  align-self: start;
  aspect-ratio: 16 / 9;
  background-color: var(--sector-green);
  background-position: center;
  background-size: cover;
  margin-top: -31px;
  min-height: 0;
  position: relative;
}

.mcg-sector-intro__video::after {
  background: rgba(18, 68, 46, 0.5);
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity 220ms ease;
}

.mcg-sector--investors .mcg-sector-intro__video {
  background-color: var(--sector-red);
}

.mcg-sector--investors .mcg-sector-intro__video::after {
  background: linear-gradient(135deg, rgba(122, 19, 39, .66), rgba(60, 12, 21, .28));
}

.mcg-sector-intro__video video {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.mcg-sector-intro__video.is-playing::after,
.mcg-sector-intro__video.is-playing .mcg-sector-play {
  opacity: 0;
  pointer-events: none;
}

.mcg-sector-intro__video.is-cueing .mcg-sector-play {
  opacity: 0;
  pointer-events: none;
}

.mcg-video-controls {
  bottom: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 16px;
  transition: opacity 220ms ease;
  z-index: 4;
}

.mcg-sector-intro__video.is-playing .mcg-video-controls,
.mcg-sector-intro__video.is-cueing .mcg-video-controls {
  opacity: 1;
  pointer-events: auto;
}

.mcg-sector-intro__video.is-cueing .mcg-video-control--sound {
  animation: mcg-sound-pulse 850ms ease-in-out infinite;
  background: var(--sector-gold);
  border-color: var(--sector-gold);
}

.mcg-video-control {
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #ffffff;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  height: 34px;
  line-height: 1;
  padding: 0 12px;
}

.mcg-video-control:hover,
.mcg-video-control:focus-visible {
  background: var(--sector-gold);
  border-color: var(--sector-gold);
  outline: none;
}

.mcg-sector-play {
  background: var(--sector-gold);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 48px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  z-index: 2;
  transition: opacity 220ms ease, transform 180ms ease;
}

.mcg-sector-play:hover,
.mcg-sector-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}

.mcg-sector-play::before {
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
  border-top: 12px solid transparent;
  content: "";
  left: 19px;
  position: absolute;
  top: 12px;
}

.mcg-sector-intro__text h2,
.mcg-section-head h2,
.mcg-tanya h2,
.mcg-consultation h2,
.mcg-lead h2,
.mcg-joinery h2,
.mcg-sector-cta h2,
.mcg-sector-footer h2 {
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

.mcg-sector-process {
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 12px;
  overflow: hidden;
}

.mcg-sector-process span {
  display: inline-block;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-18px);
}

.is-visible .mcg-sector-process span {
  animation: mcg-process-reveal 1100ms ease forwards;
}

.mcg-watch-link {
  color: var(--sector-gold) !important;
  display: inline-flex;
  font-size: 20px;
  gap: 10px;
  margin: 20px 0 128px;
  text-decoration: none;
}

.mcg-watch-link:visited {
  color: var(--sector-gold) !important;
}

.mcg-sector--investors .mcg-watch-link {
  margin-bottom: 34px;
}

.mcg-way-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.mcg-way-list li {
  color: #050505;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.mcg-way-list li::before {
  background: var(--sector-gold);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: .55em;
  width: 7px;
}

.mcg-watch-link + .mcg-sector-button {
  display: flex;
  max-width: 300px;
}

.mcg-section-head {
  margin-bottom: 54px;
}

.mcg-section-head--inverse h2 {
  color: #ffffff;
}

.mcg-services {
  background: #ffffff;
  padding-bottom: clamp(58px, 6vw, 82px);
  padding-top: clamp(58px, 6vw, 82px);
}

.mcg-sector--investors .mcg-services {
  padding-bottom: clamp(54px, 5vw, 76px);
  padding-top: clamp(54px, 5vw, 76px);
}

.mcg-sector--investors .mcg-services .mcg-section-head {
  margin-bottom: clamp(34px, 4vw, 44px);
}

.mcg-sector--investors .mcg-services__grid {
  gap: clamp(42px, 6vw, 110px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  max-width: none;
  width: 100%;
}

.mcg-sector--investors .mcg-service__icon {
  height: 56px;
  margin-bottom: 30px;
  width: 64px;
}

.mcg-sector--investors .mcg-service h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.15;
  max-width: 340px;
}

.mcg-sector--investors .mcg-service p {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.35;
  max-width: 420px;
}

.mcg-sector--investors .mcg-services > .mcg-sector-button {
  margin-top: clamp(34px, 4vw, 50px);
}

.mcg-sector--commercial .mcg-services {
  padding-bottom: clamp(56px, 5vw, 72px);
  padding-top: clamp(64px, 6vw, 86px);
}

.mcg-sector--commercial .mcg-services .mcg-section-head {
  margin-bottom: clamp(48px, 5vw, 64px);
}

.mcg-sector--commercial .mcg-service__icon {
  height: 62px;
  margin-bottom: 26px;
  width: 72px;
}

.mcg-sector--commercial .mcg-service h3 {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.22;
}

.mcg-sector--commercial .mcg-services > .mcg-sector-button {
  margin-top: clamp(38px, 4vw, 54px);
}

.mcg-services .mcg-section-head {
  margin-bottom: clamp(38px, 4vw, 48px);
}

.mcg-services__grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 3.2vw, 46px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 58px);
}

.mcg-sector--residential .mcg-services__grid {
  gap: clamp(18px, 2.4vw, 40px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mcg-sector--residential .mcg-service h3 {
  font-size: clamp(17px, 1.35vw, 20px);
}

.mcg-service__icon {
  display: block;
  height: 68px;
  margin-bottom: 28px;
  width: 78px;
}

.mcg-service__icon svg {
  display: block;
  height: 100%;
  overflow: visible;
  width: 100%;
}

.mcg-service__icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.mcg-service__icon path {
  fill: none;
  stroke: #000000;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.is-visible .mcg-service__icon path {
  animation: mcg-icon-draw 1150ms ease forwards;
}

.is-visible .mcg-service:nth-child(2) .mcg-service__icon path {
  animation-delay: 110ms;
}

.is-visible .mcg-service:nth-child(3) .mcg-service__icon path {
  animation-delay: 220ms;
}

.is-visible .mcg-service:nth-child(4) .mcg-service__icon path {
  animation-delay: 330ms;
}

.is-visible .mcg-service:nth-child(5) .mcg-service__icon path {
  animation-delay: 440ms;
}

.mcg-service h3 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.28;
  margin: 0;
}

.mcg-service {
  color: #000;
  display: block;
  text-decoration: none;
}

.mcg-service:hover h3,
.mcg-service:focus h3 {
  color: #af7f36;
}

.mcg-service p {
  font-size: 16px;
  line-height: 1.42;
  margin: 14px 0 0;
  max-width: 240px;
}

.mcg-projects {
  background: #000000;
  padding: 76px clamp(24px, 7vw, 214px) 66px;
}

.mcg-projects .mcg-pill {
  background: #000000;
  border-color: var(--sector-gold);
  color: var(--sector-gold);
}

.mcg-projects .mcg-section-head {
  margin-bottom: 44px;
}

.mcg-projects__grid {
  display: grid;
  gap: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-sector--commercial .mcg-projects__grid {
  grid-template-columns: 1fr;
}

.mcg-project-card {
  color: #ffffff;
}

.mcg-project-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 12px;
}

.mcg-sector:not(.mcg-sector--commercial) .mcg-project-card h3 {
  min-height: 2.36em;
}

.mcg-project-card h3 a {
  color: inherit;
  text-decoration: none;
}

.mcg-project-card h3 a:hover,
.mcg-project-card h3 a:focus-visible {
  color: var(--sector-gold);
}

.mcg-project-meta {
  list-style: none;
  margin: 12px 0 36px;
  padding: 0;
}

.mcg-project-meta__item {
  display: block;
}

.mcg-project-meta__item:not(:first-child),
.mcg-project-meta__icon,
.mcg-project-meta__label {
  display: none !important;
}

.mcg-project-meta__icon {
  align-items: center;
  border: 1px solid rgba(229, 184, 103, 0.72);
  border-radius: 50%;
  color: var(--sector-gold-bright);
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.mcg-project-meta__icon svg {
  display: block;
  height: 19px;
  width: 19px;
}

.mcg-project-meta__icon path,
.mcg-project-meta__icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mcg-project-meta__copy,
.mcg-project-meta__label,
.mcg-project-meta__value {
  display: block;
}

.mcg-project-meta__label {
  color: var(--sector-gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.mcg-project-meta__value {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.22;
}

.mcg-compare {
  aspect-ratio: 0.72;
  background: #d9d9d9;
  overflow: hidden;
  position: relative;
}

.mcg-sector--commercial .mcg-compare {
  aspect-ratio: 16 / 9;
}

.mcg-compare__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.mcg-compare__image--before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.mcg-compare__label {
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  font-size: 12px;
  left: 12px;
  padding: 5px 8px;
  position: absolute;
  top: 12px;
}

.mcg-compare__label--after {
  left: auto;
  right: 12px;
}

.mcg-compare__range {
  cursor: ew-resize;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.mcg-compare__line {
  background: #ffffff;
  bottom: 0;
  left: var(--position);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  z-index: 3;
}

.mcg-compare__line::after {
  animation: mcg-compare-pulse 2.4s ease-in-out infinite;
  background: var(--sector-gold);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: top;
  width: 100%;
}

.mcg-compare__handle {
  background: #ffffff;
  border: 2px solid var(--sector-gold);
  border-radius: 50%;
  height: 34px;
  left: var(--position);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  z-index: 4;
}

.mcg-compare__handle::before {
  color: var(--sector-green);
  content: "<>";
  font-size: 13px;
  left: 50%;
  letter-spacing: -1px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mcg-proof {
  background: #e8e8e8;
  color: #000000;
  padding-bottom: clamp(56px, 6vw, 76px);
  padding-top: clamp(56px, 6vw, 76px);
}

.mcg-sector--investors .mcg-proof {
  background: #e8e8e8;
  color: #000000;
  padding-bottom: clamp(54px, 5vw, 78px);
  padding-top: clamp(54px, 5vw, 78px);
}

.mcg-sector--investors .mcg-proof .mcg-section-head {
  margin-bottom: 30px;
}

.mcg-sector--investors .mcg-proof__stats {
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  grid-template-columns: repeat(4, minmax(0, max-content));
  justify-content: space-between;
  max-width: 80%;
  width: 80%;
}

.mcg-sector--investors .mcg-proof__stats div {
  gap: 14px;
}

.mcg-sector--investors .mcg-proof__stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
}

.mcg-sector--investors .mcg-proof__stats div > span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.08;
  max-width: 96px;
}

.mcg-sector--investors .mcg-counter {
  font-family: inherit;
}

.mcg-sector--residential .mcg-proof {
  background: var(--sector-green);
  color: #ffffff;
}

.mcg-sector--residential .mcg-proof h2,
.mcg-sector--residential .mcg-proof__stats,
.mcg-sector--residential .mcg-proof__stats strong,
.mcg-sector--residential .mcg-proof__stats div > span {
  color: #ffffff;
}

.mcg-sector--commercial .mcg-proof {
  padding-bottom: clamp(34px, 4vw, 54px);
  padding-top: clamp(34px, 4vw, 54px);
}

.mcg-sector--commercial .mcg-proof .mcg-section-head {
  margin-bottom: 22px;
}

.mcg-sector--commercial .mcg-proof__stats {
  gap: clamp(24px, 4vw, 74px);
  max-width: 82%;
}

.mcg-sector--commercial .mcg-proof__stats strong {
  font-size: clamp(34px, 3.6vw, 46px);
}

.mcg-sector--commercial .mcg-proof__stats div > span {
  font-size: clamp(14px, 1.25vw, 18px);
  max-width: 130px;
}

.mcg-proof .mcg-section-head {
  margin-bottom: clamp(40px, 5vw, 62px);
}

.mcg-proof__stats {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-proof__stats div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.mcg-proof__stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.mcg-proof__stats div > span {
  font-size: 20px;
  line-height: 1.1;
}

.mcg-counter {
  font: inherit;
}

.mcg-counter.has-counted {
  font-family: inherit;
}

.mcg-sector-feature {
  align-items: center;
  background: var(--sector-paper);
  display: grid;
  gap: clamp(36px, 7vw, 94px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  padding: 0 clamp(24px, 7vw, 214px) 0 0;
}

.mcg-sector-feature__image {
  min-height: 496px;
  overflow: hidden;
}

.mcg-sector-feature__image img {
  display: block;
  height: 100%;
  min-height: 496px;
  object-fit: cover;
  width: 100%;
}

.mcg-sector-feature h2 {
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 22px;
}

.mcg-sector-feature p:not(.mcg-pill) {
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
  max-width: 520px;
}

.mcg-sector--commercial .mcg-sector-feature {
  border-bottom: 58px solid var(--sector-blue);
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  padding: 0;
}

.mcg-sector--commercial .mcg-sector-feature > div:not(.mcg-sector-feature__image) {
  padding: clamp(54px, 7vw, 112px) clamp(44px, 8vw, 118px);
}

.mcg-sector--commercial .mcg-sector-feature__image,
.mcg-sector--commercial .mcg-sector-feature__image img {
  min-height: 496px;
}

.mcg-sector--commercial .mcg-sector-feature h2 {
  font-size: clamp(36px, 3.8vw, 52px);
  margin-bottom: 30px;
}

.mcg-sector--commercial .mcg-sector-feature p:not(.mcg-pill) {
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  max-width: 620px;
}

.mcg-sector--commercial .mcg-sector-intro {
  align-items: center;
  background: var(--sector-paper);
  gap: clamp(40px, 5vw, 56px);
  grid-template-columns: minmax(50%, 1fr) minmax(320px, 0.78fr);
  margin: 0;
  max-width: none;
  min-height: 556px;
  padding: 0 0 76px;
}

.mcg-sector--commercial .mcg-sector-intro__video {
  background-color: var(--sector-blue);
  margin-top: -31px;
}

.mcg-sector--commercial .mcg-sector-intro__video::after {
  background: rgba(0, 54, 86, 0.58);
}

.mcg-sector--commercial .mcg-sector-process {
  line-height: 1.28;
  margin-bottom: 30px;
}

.mcg-sector--commercial .mcg-sector-intro__text h2 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.1;
}

.mcg-sector--commercial .mcg-watch-link {
  margin: 84px 0 32px;
}

.mcg-tanya {
  background: var(--sector-paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  min-height: 518px;
  overflow: visible;
}

.mcg-tanya__text {
  align-self: center;
  justify-self: end;
  max-width: 530px;
  padding: 70px 44px;
  text-align: right;
}

.mcg-tanya__text p {
  font-size: 20px;
  line-height: 1.45;
  margin: 16px 0 34px;
}

.mcg-tanya__bio span {
  display: block;
}

.mcg-inner {
  background: #f8f8f8;
  color: #050505;
  font-family: "Cormorant Garamond", serif;
  overflow: hidden;
}

.mcg-inner--gold {
  --mcg-accent: #af7f36;
  --mcg-deep: #050505;
}

.mcg-inner--green {
  --mcg-accent: #af7f36;
  --mcg-deep: #12442e;
}

.mcg-inner--red {
  --mcg-accent: #af7f36;
  --mcg-deep: #91112b;
}

.mcg-inner--blue {
  --mcg-accent: #af7f36;
  --mcg-deep: #003656;
}

.mcg-inner-hero {
  align-items: end;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: grid;
  min-height: 760px;
  padding: 180px 7vw 96px;
  position: relative;
}

.mcg-inner-hero::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .12));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.mcg-inner-hero__content {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.mcg-inner-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.1vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 22px 0 24px;
  max-width: 1100px;
  text-transform: uppercase;
}

.mcg-inner-hero p:not(.mcg-pill) {
  color: #fff;
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.42;
  margin: 0 0 34px;
  max-width: 850px;
}

.mcg-inner-page--testimonials .mcg-inner-hero {
  min-height: 480px;
  padding-bottom: 56px;
  padding-top: 132px;
}

.mcg-renovation-types {
  background: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 7vw;
  position: relative;
  z-index: 3;
}

.mcg-renovation-type {
  background: #f8f8f8;
  border-top: 5px solid var(--mcg-deep);
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}

.mcg-renovation-type__count {
  color: var(--mcg-accent);
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  margin-bottom: 22px;
}

.mcg-renovation-type .mcg-service__icon {
  color: #050505;
  height: 46px;
  margin-bottom: 22px;
  width: 54px;
}

.mcg-renovation-type .mcg-service__icon path {
  stroke: currentColor;
}

.mcg-renovation-type h2 {
  color: #050505;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 14px;
}

.mcg-renovation-type p {
  color: #222222;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  margin: 0;
  max-width: 360px;
}

.mcg-inner-page--design-build .mcg-renovation-types {
  background: var(--mcg-deep);
  padding: 0 7vw;
}

.mcg-inner-page--design-build .mcg-renovation-type {
  background: rgba(255, 255, 255, .08);
  border-top-color: var(--mcg-accent);
  color: #ffffff;
  min-height: 220px;
}

.mcg-inner-page--design-build .mcg-renovation-type .mcg-service__icon,
.mcg-inner-page--design-build .mcg-renovation-type h2 {
  color: #ffffff;
}

.mcg-inner-page--design-build .mcg-renovation-type .mcg-service__icon path {
  stroke: var(--mcg-accent);
}

.mcg-standard-intro {
  align-items: center;
  background: #ffffff;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  padding: clamp(58px, 7vw, 92px) 7vw;
}

.mcg-standard-intro__copy h2 {
  color: #050505;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 18px 0 28px;
}

.mcg-standard-intro__copy p:not(.mcg-pill) {
  color: #161616;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 760px;
}

.mcg-standard-intro__image {
  margin: 0;
}

.mcg-standard-intro__image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.mcg-inner-page--design-build .mcg-standard-intro {
  background:
    linear-gradient(135deg, rgba(18, 68, 46, .12), transparent 48%),
    #ffffff;
}

.mcg-inner-content {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 96px 7vw;
}

.mcg-renovation-content {
  background:
    linear-gradient(135deg, rgba(18, 68, 46, .08), transparent 42%),
    #ffffff;
  grid-template-columns: 1fr;
  padding-bottom: 54px;
  padding-top: 54px;
}

.mcg-inner-content article {
  background: #fff;
  border-left: 5px solid var(--mcg-deep);
  padding: clamp(32px, 4vw, 64px);
}

.mcg-renovation-content article {
  align-items: start;
  display: grid;
  gap: clamp(22px, 3vw, 44px);
  grid-template-columns: minmax(230px, .4fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(28px, 3.5vw, 46px);
  width: 100%;
}

.mcg-renovation-content article:nth-child(2) {
  background: var(--mcg-deep);
  border-left-color: var(--mcg-accent);
}

.mcg-renovation-content article:nth-child(2) h2,
.mcg-renovation-content article:nth-child(2) p {
  color: #ffffff;
}

.mcg-renovation-content article:nth-child(3) {
  background:
    linear-gradient(rgba(18, 68, 46, .82), rgba(18, 68, 46, .82)),
    url("../assets/residential/hero-residential-poster.jpg") center / cover;
  border-left-color: var(--mcg-accent);
}

.mcg-renovation-content article:nth-child(3) h2,
.mcg-renovation-content article:nth-child(3) p {
  color: #ffffff;
}

.mcg-renovation-content article .mcg-pill,
.mcg-renovation-content article h2 {
  grid-column: 1;
}

.mcg-renovation-content__copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 10px;
}

.mcg-renovation-content__copy p:last-child {
  margin-bottom: 0;
}

.mcg-inner-page--risk-guide .mcg-inner-content article:nth-child(1),
.mcg-inner-page--risk-guide .mcg-inner-content article:nth-child(2) {
  grid-column: 1 / -1;
}

.mcg-inner-page--risk-guide .mcg-inner-content article:nth-child(1) {
  padding-block: clamp(36px, 4.8vw, 70px);
}

.mcg-blank-content {
  gap: 0;
}

.mcg-blank-content article {
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  max-width: 1180px;
  min-height: 330px;
  padding: clamp(28px, 4vw, 52px);
}

.mcg-inner-page--design-build .mcg-blank-content {
  background: #ffffff;
  padding: 0;
}

.mcg-inner-page--design-build .mcg-blank-content article {
  border-left: 0;
  max-width: none;
  min-height: 420px;
  padding: clamp(54px, 7vw, 92px) 7vw;
}

.mcg-inner-page--design-build .mcg-blank-content article:nth-child(odd) {
  background: var(--mcg-deep);
}

.mcg-inner-page--design-build .mcg-blank-content article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(18, 68, 46, .08), transparent 44%),
    #ffffff;
}

.mcg-inner-page--design-build .mcg-blank-content article:nth-child(odd) h2,
.mcg-inner-page--design-build .mcg-blank-content article:nth-child(odd) p {
  color: #ffffff;
}

.mcg-inner-page--design-build .mcg-blank-content article:nth-child(odd) .mcg-pill {
  border-color: var(--mcg-accent);
  color: #ffffff;
}

.mcg-inner-page--design-build .mcg-blank-content article:nth-child(odd) .mcg-blank-copy {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .34)) 0 0 / 84% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .24)) 0 38px / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .20)) 0 76px / 92% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .16)) 0 114px / 62% 1px no-repeat;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content {
  background: #ffffff;
  gap: 0;
  grid-template-columns: 1fr;
  padding: 0;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article {
  align-items: start;
  border-left: 0;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  max-width: none;
  min-height: 0;
  padding: clamp(54px, 7vw, 92px) 7vw;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content__text {
  grid-column: 1;
  min-width: 0;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content__image {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content__image img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  min-height: clamp(320px, 34vw, 520px);
  object-fit: cover;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(odd) {
  background:
    linear-gradient(135deg, rgba(18, 68, 46, .08), transparent 44%),
    #ffffff;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
  background: var(--mcg-deep);
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-pill,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) h2,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) p {
  color: #ffffff;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-pill {
  border-color: var(--mcg-accent);
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__image {
  grid-column: 1;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__text {
  grid-column: 2;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-pill,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > h2,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-renovation-content__copy {
  grid-column: 1;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-copy {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .34)) 0 0 / 84% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .24)) 0 38px / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .20)) 0 76px / 92% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .16)) 0 114px / 62% 1px no-repeat;
}

.mcg-blank-content article:nth-child(2),
.mcg-blank-content article:nth-child(3) {
  background: #ffffff;
  border-left-color: var(--mcg-deep);
}

.mcg-blank-content article:nth-child(2) h2,
.mcg-blank-content article:nth-child(2) p,
.mcg-blank-content article:nth-child(3) h2,
.mcg-blank-content article:nth-child(3) p {
  color: #050505;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(odd) {
  background:
    linear-gradient(135deg, rgba(18, 68, 46, .08), transparent 44%),
    #ffffff;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
  background: var(--mcg-deep);
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-pill,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) h2,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) p {
  color: #ffffff;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-pill,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > h2,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-copy {
  grid-column: 1;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-content__image {
  grid-column: 2;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__text {
  grid-column: 2;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-blank-content__image {
  grid-column: 1;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment {
  background: #ffffff;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-pill,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment h2,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment p {
  color: #050505;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-pill {
  border-color: var(--mcg-accent);
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-blank-content__text {
  grid-column: 1;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment > .mcg-blank-content__image,
.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-blank-content__image {
  grid-column: 2;
  grid-row: 1;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-blank-content__text > .mcg-blank-copy {
  margin-top: 28px;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-section-gallery {
  display: grid;
  gap: clamp(10px, 1vw, 16px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 0;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-section-gallery .mcg-gallery-item {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.mcg-inner-page--bespoke-furniture-maker .mcg-section-gallery .mcg-gallery-item:first-child {
  grid-column: auto;
}

.mcg-blank-content__image {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
}

.mcg-blank-content__image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.mcg-blank-content .mcg-renovation-content__copy {
  grid-column: 1;
  grid-row: 3;
  min-height: 126px;
  padding-top: 0;
}

.mcg-blank-copy {
  background:
    linear-gradient(90deg, rgba(18, 68, 46, .18), rgba(18, 68, 46, .18)) 0 0 / 84% 1px no-repeat,
    linear-gradient(90deg, rgba(18, 68, 46, .12), rgba(18, 68, 46, .12)) 0 38px / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(18, 68, 46, .12), rgba(18, 68, 46, .12)) 0 76px / 92% 1px no-repeat,
    linear-gradient(90deg, rgba(18, 68, 46, .10), rgba(18, 68, 46, .10)) 0 114px / 62% 1px no-repeat;
  display: block;
  min-height: 126px;
}

.mcg-inner-content h2,
.mcg-inner-projects h2,
.mcg-inner-contact h2 {
  color: #050505;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 18px 0 24px;
}

.mcg-renovation-content h2 {
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.05;
  margin-bottom: 0;
}

.mcg-inner-content p,
.mcg-inner-projects p,
.mcg-inner-contact p {
  color: #050505;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.5;
  margin: 0 0 14px;
}

.mcg-renovation-content p {
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.48;
}

.mcg-inner-cards {
  background: var(--mcg-deep);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 7vw 56px;
}

.mcg-inner-cards div {
  background: rgba(255, 255, 255, .08);
  min-height: 132px;
  padding: 28px;
}

.mcg-inner-cards span {
  background: var(--mcg-accent);
  display: block;
  height: 2px;
  margin-bottom: 28px;
  width: 42px;
}

.mcg-inner-cards h3 {
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

.mcg-renovation-projects {
  background: #ffffff;
  padding: clamp(52px, 6vw, 78px) 7vw;
}

.mcg-renovation-projects__head {
  align-items: end;
  display: grid;
  gap: 18px 38px;
  grid-template-columns: minmax(240px, .32fr) minmax(0, 1fr);
  margin-bottom: clamp(28px, 4vw, 42px);
}

.mcg-renovation-projects__head h2 {
  color: #050505;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.mcg-renovation-projects__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-renovation-project {
  background: #f8f8f8;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
  min-width: 0;
}

.mcg-renovation-project img {
  aspect-ratio: 1.43;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.mcg-renovation-project div {
  padding: 22px 22px 24px;
}

.mcg-renovation-project h3 {
  color: #050505;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 22px;
}

.mcg-renovation-project a {
  align-items: center;
  background: var(--mcg-accent);
  color: #ffffff !important;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 36px;
  padding: 0 16px;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.mcg-renovation-project a:hover,
.mcg-renovation-project a:focus-visible {
  background: var(--mcg-deep);
  transform: translateY(-2px);
}

.mcg-about-history {
  background: #fff;
  display: grid;
  gap: clamp(44px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .72fr);
  padding: clamp(70px, 8vw, 110px) 7vw;
}

.mcg-about-history__copy h2,
.mcg-about-section-title h2,
.mcg-about-cta h2 {
  color: #111;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 18px 0 34px;
}

.mcg-about-history__copy p:not(.mcg-pill) {
  color: #171717;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 22px;
}

.mcg-about-history__image {
  align-self: start;
}

.mcg-about-history__image img {
  display: block;
  height: auto;
  width: 100%;
}

.mcg-about-proof {
  border-top: 1px solid rgba(0,0,0,.14);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.mcg-about-proof div {
  border-right: 1px solid rgba(0,0,0,.12);
  padding: 22px 18px 0 0;
}

.mcg-about-proof div:last-child {
  border-right: 0;
}

.mcg-about-proof strong {
  color: var(--sector-gold);
  display: block;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  line-height: .95;
  margin-bottom: 10px;
}

.mcg-about-proof span {
  color: #171717;
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mcg-about-accreditations {
  background:
    linear-gradient(135deg, rgba(175,127,54,.08), transparent 42%),
    #ffffff;
  border-top: 1px solid rgba(0,0,0,.06);
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(290px, .38fr) minmax(0, 1fr);
  padding: clamp(62px, 7vw, 92px) 7vw;
}

.mcg-about-accreditations .mcg-pill {
  margin: 0 0 22px;
}

.mcg-about-accreditations__head h2 {
  color: #111;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: 560px;
}

.mcg-about-accreditations__grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
}

.mcg-about-accreditations figure {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 22px 70px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 190px;
  justify-content: center;
  margin: 0;
  padding: 32px 24px 28px;
  position: relative;
}

.mcg-about-accreditations figure::before {
  background: var(--sector-gold);
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.mcg-about-accreditations img {
  display: block;
  max-height: 72px;
  max-width: 210px;
  object-fit: contain;
  width: auto;
}

.mcg-about-accreditations figcaption {
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.mcg-about-team {
  background: #151515;
  color: #fff;
  padding: clamp(76px, 8vw, 108px) 7vw;
}

.mcg-about-section-title h2 {
  color: #fff;
  margin-top: 0;
}

.mcg-about-team__grid {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-about-team article {
  min-width: 0;
}

.mcg-about-team img,
.mcg-about-team__placeholder {
  aspect-ratio: 4 / 5;
  display: block;
  margin-bottom: 22px;
  width: 100%;
}

.mcg-about-team img {
  object-fit: cover;
  object-position: center top;
}

.mcg-about-team__placeholder {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mcg-about-team h3 {
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 6px;
}

.mcg-about-team__role {
  color: var(--sector-gold) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  margin-bottom: 14px !important;
}

.mcg-about-team p {
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.mcg-about-team__email {
  align-items: center;
  color: rgba(255,255,255,.82);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.mcg-about-team__email:hover,
.mcg-about-team__email:focus-visible {
  color: var(--sector-gold);
}

.mcg-about-values {
  background:
    linear-gradient(135deg, rgba(175,127,54,.18), transparent 38%),
    #050505;
  color: #fff;
  display: grid;
  gap: clamp(38px, 5vw, 72px);
  grid-template-columns: minmax(240px, .28fr) minmax(0, 1fr);
  padding: clamp(68px, 8vw, 112px) 7vw;
  text-align: left;
}

.mcg-about-values h2 {
  color: #fff;
  font-size: clamp(38px, 4.8vw, 76px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  max-width: 320px;
}

.mcg-about-values div {
  align-self: center;
  counter-reset: mcg-value;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.mcg-about-values span {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,0));
  border-top: 1px solid rgba(175,127,54,.64);
  color: var(--sector-gold);
  display: block;
  font-size: clamp(26px, 2.7vw, 46px);
  line-height: 1.1;
  min-height: 138px;
  padding: 34px 22px 22px 0;
  position: relative;
}

.mcg-about-values span::before {
  color: rgba(255,255,255,.32);
  content: "0" counter(mcg-value);
  counter-increment: mcg-value;
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  margin-bottom: 22px;
}

.mcg-about-cta {
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 72px 24px;
  text-align: center;
}

.mcg-about-cta h2 {
  color: #fff;
  margin: 0 0 18px;
}

.mcg-about-cta p {
  color: #fff;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 32px;
  max-width: 720px;
}

.mcg-inner-projects {
  display: grid;
  gap: 0;
  padding: 96px 7vw;
}

.mcg-inner-projects article {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 1.1fr;
  min-height: 430px;
}

.mcg-inner-projects article:nth-child(even) {
  direction: rtl;
}

.mcg-inner-projects article:nth-child(even) > * {
  direction: ltr;
}

.mcg-inner-projects img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.mcg-inner-projects article > div {
  align-content: center;
  display: grid;
  padding: clamp(34px, 5vw, 82px);
}

.mcg-inner-testimonials {
  background: #fff;
  overflow: hidden;
  padding-top: 96px;
}

.mcg-testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.mcg-testimonial-slider .mcg-testimonials__grid {
  display: grid;
  gap: 24px;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  grid-template-columns: none;
  transition: transform .65s ease;
}

.mcg-testimonial-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(28px, 3vw, 42px);
  margin-top: 26px;
}

.mcg-testimonial-arrow {
  align-items: center;
  background: transparent;
  border: 1px solid var(--sector-gold, var(--mcg-accent));
  border-radius: 999px;
  color: var(--sector-gold, var(--mcg-accent));
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 20px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
  width: 44px;
}

.mcg-testimonial-arrow:hover,
.mcg-testimonial-arrow:focus-visible {
  background: var(--sector-gold, var(--mcg-accent));
  color: #000000;
}

.mcg-testimonial-arrow:disabled {
  cursor: default;
  opacity: .35;
}

.mcg-company-mark {
  color: var(--mcg-accent);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.mcg-inner-insights {
  background: #fff;
  padding-top: 96px;
}

.mcg-insight-sections {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto 44px;
  max-width: 1440px;
  padding: 0 7vw;
}

.mcg-insight-sections article {
  background: #f4f1ec;
  border-left: 3px solid var(--sector-gold);
  padding: 24px;
}

.mcg-insight-sections h2 {
  color: #111;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 12px;
}

.mcg-insight-sections p {
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.mcg-inner-insights .mcg-insights__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-inner-insights article {
  background: #f8f8f8;
}

.mcg-inner-contact {
  color: #fff;
  margin: 0;
  padding-top: 110px;
}

.mcg-inner-contact p,
.mcg-inner-contact h2,
.mcg-inner-contact a {
  color: #fff;
}

.mcg-contact-address {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.mcg-contact-address svg {
  fill: var(--sector-gold);
  flex: 0 0 22px;
  height: 22px;
  margin-top: 4px;
  width: 22px;
}

.mcg-contact-map {
  color: var(--sector-gold) !important;
  display: inline-block;
  font-weight: 900;
  margin: 0 0 22px;
}

.mcg-contact-starting-points {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 20px;
}

.mcg-contact-starting-points a,
.mcg-contact-socials a {
  border: 1px solid rgba(175,127,54,.66);
  color: var(--sector-gold) !important;
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 13px 16px;
  text-decoration: none;
}

.mcg-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcg-contact-socials a {
  padding: 10px 14px;
}

.mcg-form-check {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 12px;
  font-size: 16px;
}

.mcg-form-check input {
  height: 18px;
  width: 18px;
}

.mcg-inner--green .mcg-sector-cta,
.mcg-inner--red .mcg-sector-cta,
.mcg-inner--blue .mcg-sector-cta {
  background: var(--mcg-deep);
}

.mcg-inner--gold .mcg-sector-cta {
  background: #050505;
}

.mcg-inner .mcg-joinery {
  background: #fff;
}

.mcg-sitemap {
  background: #f6f4ef;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(72px, 8vw, 112px) 7vw;
}

.mcg-sitemap__group {
  background: #fff;
  border-top: 4px solid var(--sector-gold);
  padding: clamp(28px, 3vw, 42px);
}

.mcg-sitemap__group--wide {
  grid-column: 1 / -1;
}

.mcg-sitemap h2 {
  color: #050505;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 24px;
}

.mcg-sitemap h3 {
  color: #050505;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
}

.mcg-sitemap ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mcg-sitemap li {
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin: 0;
  padding: 0 0 10px;
}

.mcg-sitemap a {
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration-color: rgba(175,127,54,.45);
  text-underline-offset: 4px;
}

.mcg-sitemap a:hover,
.mcg-sitemap a:focus {
  color: var(--sector-gold);
}

.mcg-sitemap__columns {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-sitemap__columns > div {
  border-left: 1px solid rgba(0,0,0,.1);
  padding-left: 22px;
}

.mcg-sitemap__insights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {

  .mcg-inner-content,
  .mcg-renovation-types,
  .mcg-renovation-content article,
  .mcg-renovation-projects__head,
  .mcg-renovation-projects__grid,
  .mcg-about-history,
  .mcg-about-accreditations,
  .mcg-about-team__grid,
  .mcg-inner-projects article,
  .mcg-inner-cards,
  .mcg-inner-insights .mcg-insights__grid {
    grid-template-columns: 1fr;
  }

  .mcg-about-proof,
  .mcg-insight-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcg-sitemap,
  .mcg-sitemap__columns,
  .mcg-sitemap__insights {
    grid-template-columns: 1fr;
  }

  .mcg-testimonial-slider .mcg-testimonials__grid {
    grid-auto-columns: calc((100% - 24px) / 2);
    grid-template-columns: none;
  }

  .mcg-inner-projects article:nth-child(even) {
    direction: ltr;
  }

  .mcg-inner-hero {
    min-height: 640px;
    padding: 170px 24px 76px;
  }

  .mcg-inner-content,
  .mcg-renovation-types,
  .mcg-renovation-projects,
  .mcg-inner-projects,
  .mcg-inner-cards,
  .mcg-about-history,
  .mcg-about-accreditations,
  .mcg-about-team,
  .mcg-about-values {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mcg-renovation-content article .mcg-pill,
  .mcg-renovation-content article h2,
  .mcg-blank-content__image,
  .mcg-renovation-content__copy,
  .mcg-renovation-content article p {
    grid-column: 1;
  }

  .mcg-blank-content__image {
    grid-row: auto;
  }

  .mcg-renovation-content__copy {
    grid-row: auto;
    padding-top: 0;
  }

  .mcg-blank-content .mcg-renovation-content__copy {
    grid-row: auto;
  }

  .mcg-inner-page--design-build .mcg-blank-content {
    padding-left: 0;
    padding-right: 0;
  }

  .mcg-inner-page--design-build .mcg-blank-content article {
    min-height: 0;
    padding: 48px 24px;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content {
    padding-left: 0;
    padding-right: 0;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
    min-height: 0;
    padding: 48px 24px;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
    grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-pill,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > h2,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-renovation-content__copy,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-pill,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > h2,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-renovation-content__copy {
    grid-column: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__image {
    grid-row: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-content__image {
    grid-column: 2;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__image {
    grid-column: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__text {
    grid-column: 2;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-blank-content__text {
    grid-column: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment > .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-blank-content__image {
    grid-column: 2;
    grid-row: 1;
  }

  .mcg-about-values div {
    grid-template-columns: 1fr 1fr;
  }

  .mcg-about-values {
    grid-template-columns: 1fr;
  }

  .mcg-about-accreditations__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {

  .mcg-about-proof,
  .mcg-about-accreditations__grid,
  .mcg-insight-sections,
  .mcg-contact-starting-points {
    grid-template-columns: 1fr;
  }

  .mcg-testimonial-slider .mcg-testimonials__grid {
    grid-auto-columns: 100%;
    grid-template-columns: none;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content__text,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-pill,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > h2,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) > .mcg-renovation-content__copy {
    grid-column: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__image {
    grid-row: auto;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-section-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

.mcg-tanya__image {
  align-items: end;
  background: #e8e8e8;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.mcg-tanya__image img {
  display: block;
  margin-top: -42px;
  max-height: 606px;
  max-width: 520px;
  object-fit: contain;
  transform: translateY(1px);
  width: min(68%, 520px);
}

.mcg-testimonials__grid,
.mcg-insights__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 42px;
}

.mcg-testimonials {
  background: #003656;
  color: #ffffff;
  padding-bottom: clamp(58px, 6vw, 82px);
  padding-top: clamp(58px, 6vw, 82px);
}

.mcg-sector--investors .mcg-testimonials {
  background: #7a1327;
}

.mcg-sector--residential .mcg-testimonials {
  background: var(--sector-green);
}

.mcg-testimonials .mcg-section-head {
  align-items: center;
  display: grid;
  gap: 16px 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 38px;
}

.mcg-testimonials .mcg-section-head .mcg-pill {
  justify-self: start;
}

.mcg-testimonials .mcg-section-head .mcg-pill,
.mcg-testimonials .mcg-section-head h2 {
  color: #ffffff;
  grid-column: 1;
}

.mcg-testimonials__grid {
  color: #ffffff;
}

.mcg-google-rating {
  align-self: center;
  color: var(--sector-gold);
  grid-column: 2;
  grid-row: 1 / span 2;
  line-height: 1;
  text-align: center;
}

.mcg-google-rating span {
  display: block;
}

.mcg-google-rating span:first-child {
  font-size: 28px;
  font-weight: 700;
}

.mcg-google-rating span:last-child {
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 5px;
}

.mcg-testimonials blockquote {
  border-left: 2px solid var(--sector-gold);
  margin: 0;
  min-width: 0;
  padding: 0 0 0 22px;
}

.mcg-testimonial-logo {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 18px;
}

.mcg-testimonial-logo span {
  border: 1.6px solid currentColor;
  border-top: 0;
  display: inline-block;
  height: 14px;
  position: relative;
  width: 16px;
}

.mcg-testimonial-logo span::before,
.mcg-testimonial-logo span::after {
  background: currentColor;
  content: "";
  height: 1.6px;
  left: -2px;
  position: absolute;
  top: -3px;
  transform: rotate(-38deg);
  transform-origin: right center;
  width: 11px;
}

.mcg-testimonial-logo span::after {
  left: auto;
  right: -2px;
  transform: rotate(38deg);
  transform-origin: left center;
}

.mcg-testimonials p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.mcg-testimonials cite {
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
}

.mcg-partners {
  align-items: center;
  background: #ffffff;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  padding: 56px clamp(24px, 6vw, 110px) 64px;
}

.mcg-partners h2 {
  font-size: clamp(29px, 2.72vw, 41px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.mcg-partners div {
  align-items: center;
  display: grid;
  gap: clamp(14px, 1.55vw, 28px);
  grid-template-columns: repeat(8, minmax(62px, 1fr));
}

.mcg-partner-logo {
  align-items: center;
  color: #111111;
  display: flex;
  justify-content: center;
  line-height: 1;
  min-height: 62px;
  padding: 4px;
}

.mcg-partner-logo img {
  display: block;
  filter: grayscale(1);
  height: auto;
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
}

.mcg-consultation {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  padding: clamp(58px, 7vw, 92px) clamp(24px, 7vw, 214px);
}

.mcg-consultation p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 470px;
}

.mcg-consultation__form {
  background: #000000;
  display: grid;
  gap: 14px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.mcg-consultation__form label {
  color: #ffffff;
  display: grid;
  font-size: 16px;
  gap: 8px;
  line-height: 1.35;
}

.mcg-form-field--full {
  grid-column: 1 / -1;
}

.mcg-form-note {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: .86;
}

.mcg-consultation__form input,
.mcg-consultation__form select,
.mcg-consultation__form textarea,
.mcg-lead input,
.mcg-sector-footer input {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.25;
  min-height: 52px;
  padding: 13px 14px;
  width: 100%;
}

.mcg-consultation__form textarea {
  min-height: 132px;
}

.mcg-consultation__form input::placeholder,
.mcg-consultation__form textarea::placeholder,
.mcg-lead input::placeholder,
.mcg-sector-footer input::placeholder {
  color: #555555;
  opacity: 1;
}

.mcg-consultation__form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #000000 50%), linear-gradient(135deg, #000000 50%, transparent 50%);
  background-position: calc(100% - 18px) 23px, calc(100% - 11px) 23px;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
}

.mcg-consultation__form button {
  align-self: end;
  font-size: 18px;
  grid-column: 2;
  justify-self: stretch;
  min-height: 52px;
}

.mcg-form-status {
  background: rgba(255, 255, 255, .1);
  border-left: 3px solid var(--mcg-gold);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin: 2px 0 0;
  padding: 12px 14px;
}

.mcg-lead .mcg-form-status,
.mcg-sector-footer .mcg-form-status {
  background: rgba(0, 0, 0, .08);
  color: #050505;
  grid-column: 1 / -1;
}

.mcg-lead {
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 398px;
  padding: 100px clamp(24px, 7vw, 214px);
}

.mcg-lead form,
.mcg-sector-footer form {
  align-items: center;
  display: flex;
  max-width: 550px;
}

.mcg-lead form {
  flex-wrap: wrap;
  gap: 0;
}

.mcg-lead input {
  flex: 1 1 230px;
  height: 54px;
  max-width: 446px;
  order: 1;
}

.mcg-lead .mcg-sector-button {
  order: 3;
}

.mcg-lead-captcha {
  color: #050505;
  display: grid;
  flex: 0 0 100%;
  font-size: 17px;
  gap: 8px;
  line-height: 1.35;
  margin-top: 12px;
  max-width: 550px;
  order: 2;
}

.mcg-lead-captcha input {
  max-width: 160px;
}

.mcg-math-captcha input {
  max-width: 160px;
}

.mcg-honeypot {
  display: none !important;
}

.mcg-lead .mcg-form-status {
  flex: 0 0 100%;
  max-width: 550px;
  order: 4;
  width: 100%;
}

.mcg-joinery {
  background: var(--sector-paper);
  padding: clamp(56px, 7vw, 88px) 0;
}

.mcg-joinery__intro {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1.25fr;
  margin: 0 auto 34px;
  max-width: 1120px;
  padding: 0 24px;
}

.mcg-joinery__intro p {
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
}

.mcg-joinery__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
  padding: 0 clamp(18px, 3vw, 42px);
}

.mcg-gallery-item {
  aspect-ratio: 4 / 5;
  background: #d9d9d9;
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.mcg-gallery-item::after {
  background: rgba(18, 68, 46, 0.22);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 200ms ease;
  z-index: 1;
}

.mcg-gallery-item:hover::after,
.mcg-gallery-item:focus-visible::after {
  opacity: 1;
}

.mcg-gallery-item:focus-visible {
  outline: 2px solid var(--sector-gold);
  outline-offset: 3px;
}

.mcg-gallery-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 280ms ease;
  width: 100%;
}

.mcg-gallery-item:hover img,
.mcg-gallery-item:focus-visible img {
  transform: scale(1.04);
}

.mcg-gallery-item__caption {
  background: linear-gradient(180deg, rgba(18, 68, 46, 0), rgba(18, 68, 46, 0.86));
  bottom: 0;
  color: #fff;
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 600;
  left: 0;
  line-height: 1.25;
  padding: 44px 14px 14px;
  position: absolute;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  width: 100%;
  z-index: 2;
}

.mcg-joinery > .mcg-sector-button {
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.mcg-joinery > .mcg-sector-button:hover,
.mcg-joinery > .mcg-sector-button:focus-visible {
  transform: translate(-50%, -2px);
}

.mcg-insights {
  background: #ffffff;
}

.mcg-insights article {
  background: #f0f0f0;
}

.mcg-insights article a {
  color: inherit;
  display: block;
  text-decoration: none;
}

.mcg-insights img {
  aspect-ratio: 2.17;
  display: block;
  object-fit: cover;
  width: 100%;
}

.mcg-insights h3 {
  color: var(--sector-green);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.28;
  margin: 0;
  padding: 18px 18px 44px;
}

.mcg-insights article p {
  font-size: 14px;
  margin: 0;
  padding: 0 18px 18px;
  text-align: right;
}

.mcg-insights > .mcg-sector-button {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.mcg-sector-cta {
  align-items: center;
  background: var(--sector-green);
  color: #ffffff;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  padding: 70px clamp(24px, 7vw, 214px);
}

.mcg-sector-cta .mcg-pill--light {
  border-color: var(--sector-gold);
  color: var(--sector-gold);
}

.mcg-sector-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mcg-sector-footer {
  background: #000000;
  color: #ffffff;
  padding: 54px clamp(24px, 7vw, 214px) 56px;
}

.mcg-sector-footer__newsletter {
  align-items: end;
  display: grid;
  gap: 20px 40px;
  grid-template-columns: minmax(300px, 630px) auto;
  margin-bottom: 58px;
}

.mcg-sector-footer__newsletter h2 {
  grid-column: 1;
  margin-bottom: 18px;
}

.mcg-sector-footer__newsletter form {
  align-items: end;
  display: grid;
  gap: 14px 18px;
  grid-column: 1;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 180px);
  max-width: 550px;
}

.mcg-sector-footer__newsletter form > input[type="email"] {
  grid-column: 1;
}

.mcg-sector-footer__newsletter .mcg-math-captcha {
  color: #ffffff;
  display: grid;
  font-size: 16px;
  gap: 8px;
  grid-column: 1 / -1;
  line-height: 1.35;
}

.mcg-sector-footer__newsletter .mcg-math-captcha input {
  max-width: 160px;
}

.mcg-sector-footer__newsletter button {
  min-height: 52px;
}

.mcg-footer-social {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
}

.mcg-footer-social a {
  color: var(--sector-gold) !important;
  display: block;
  height: 34px;
  transition: color 180ms ease, transform 180ms ease;
  width: 34px;
}

.mcg-footer-social a:hover,
.mcg-footer-social a:focus-visible {
  color: var(--sector-gold) !important;
  outline: none;
  transform: translateY(-2px);
}

.mcg-footer-social svg {
  display: block;
  height: 100%;
  width: 100%;
}

.mcg-footer-social path,
.mcg-footer-social rect,
.mcg-footer-social circle {
  fill: currentColor;
  stroke: none;
}

.mcg-footer-social a:nth-child(2) rect,
.mcg-footer-social a:nth-child(2) circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mcg-footer-social a:nth-child(4) path:last-child {
  fill: #000000;
}

.mcg-sector-footer button {
  background: var(--sector-gold);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  min-height: 44px;
  min-width: 180px;
}

.mcg-sector-footer__main {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: 230px 1fr 300px;
}

.mcg-sector-footer__main img {
  max-width: 217px;
  width: 100%;
}

.mcg-sector-footer nav {
  column-gap: 32px;
  columns: 3;
}

.mcg-sector-footer nav a,
.mcg-sector-footer address a,
.mcg-sector-footer address span {
  color: #ffffff;
  display: block;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
}

.mcg-sector-footer address {
  font-style: normal;
}

.mcg-sector-footer address strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.mcg-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  position: fixed;
  z-index: 9999;
}

.mcg-lightbox[hidden] {
  display: none;
}

.mcg-lightbox img {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  display: block;
  max-height: 82vh;
  max-width: min(1120px, 92vw);
  object-fit: contain;
}

.mcg-lightbox__caption {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  margin: 16px 0 0;
  max-width: min(1120px, 92vw);
  text-align: center;
}

.mcg-lightbox__caption[hidden] {
  display: none;
}

.mcg-lightbox__close {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  font-size: 0;
  height: 44px;
  justify-items: center;
  line-height: 0;
  padding: 0;
  place-items: center;
  position: absolute;
  right: 24px;
  text-align: center;
  top: 20px;
  width: 44px;
}

.mcg-lightbox__close::before {
  content: "\00d7";
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.mcg-lightbox__nav {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  font-size: 0;
  height: 56px;
  justify-content: center;
  line-height: 0;
  padding: 0;
  place-items: center;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
}

.mcg-lightbox__nav::before {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-2px);
}

.mcg-lightbox__nav--prev {
  left: 24px;
}

.mcg-lightbox__nav--prev::before {
  content: "\2039";
}

.mcg-lightbox__nav--next {
  right: 24px;
}

.mcg-lightbox__nav--next::before {
  content: "\203a";
}

.mcg-lightbox__nav:hover,
.mcg-lightbox__nav:focus-visible,
.mcg-lightbox__close:hover,
.mcg-lightbox__close:focus-visible {
  background: #af7f36;
  border-color: #af7f36;
  outline: none;
}

.mcg-call-modal {
  align-items: center;
  background: rgba(0, 0, 0, .78);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 10000;
}

.mcg-call-modal[hidden] {
  display: none;
}

.mcg-call-modal__panel {
  background: #000000;
  border: 1px solid var(--sector-gold);
  color: #ffffff;
  max-width: 420px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  text-align: center;
  width: min(100%, 420px);
}

.mcg-call-modal__panel h2 {
  color: #ffffff;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
  margin: 14px 0 18px;
}

.mcg-call-modal__panel a {
  color: var(--sector-gold);
  display: inline-block;
  font-size: clamp(24px, 4vw, 34px);
  text-decoration: none;
}

.mcg-call-modal__close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #ffffff;
  cursor: pointer;
  font-size: 28px;
  height: 38px;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
}

.mcg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.mcg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mcg-line-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes mcg-process-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateX(-18px);
  }

  18% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mcg-icon-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes mcg-sound-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(164, 122, 56, 0.45);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(164, 122, 56, 0);
    transform: translateY(-1px);
  }
}

@keyframes mcg-compare-pulse {
  0%,
  100% {
    transform: scaleY(0.18);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 1100px) {
  .mcg-sector-hero__media--collage {
    padding: 0;
  }

  .mcg-investor-collage {
    height: 650px;
    max-height: none;
  }

  .mcg-services__grid,
  .mcg-renovation-projects__grid,
  .mcg-projects__grid,
  .mcg-testimonials__grid,
  .mcg-insights__grid,
  .mcg-joinery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcg-sector-footer__newsletter {
    grid-template-columns: 1fr;
  }

  .mcg-footer-social {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .mcg-sector-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .mcg-sector-footer__main address {
    grid-column: 1 / -1;
  }

  .mcg-sector--investors .mcg-proof__stats {
    grid-template-columns: repeat(2, max-content);
    max-width: 100%;
    width: 100%;
  }

  .mcg-sector--investors .mcg-services__grid {
    gap: 38px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mcg-sector--residential .mcg-services__grid {
    gap: 22px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mcg-sector--residential .mcg-service__icon {
    height: 58px;
    margin-bottom: 22px;
    width: 66px;
  }

  .mcg-partners {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    padding-left: 42px;
    padding-right: 42px;
  }

  .mcg-partners div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {

  .admin-bar .mcg-sector-header {
    top: 46px;
  }

  .mcg-sector-header {
    align-items: center;
    background: rgba(0, 0, 0, 0.92);
    min-height: 66px;
    padding: 10px 18px;
  }

  .mcg-sector-header__logo {
    width: 138px;
  }

  .mcg-sector-header__nav {
    gap: 16px;
    min-width: calc(100vw - 36px);
    right: 18px;
    text-align: left;
  }

  .mcg-sector-header__nav a {
    font-size: 16px;
    line-height: 24px;
  }

  .mcg-sector-hero {
    min-height: 620px;
  }

  .mcg-sector-hero__content {
    padding: 170px 24px 90px;
  }

  .mcg-sector--investors .mcg-sector-hero__content {
    max-width: 680px;
    padding: 190px 24px 88px;
  }

  .mcg-sector--investors .mcg-sector-hero p:not(.mcg-sector-kicker) {
    white-space: normal;
  }

  .mcg-investor-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .mcg-investor-collage__item--one {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .mcg-investor-collage__item--two {
    grid-column: 2;
    grid-row: 1;
  }

  .mcg-investor-collage__item--three {
    grid-column: 2;
    grid-row: 2;
  }

  .mcg-investor-collage__item--four {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .mcg-sector-actions,
  .mcg-lead form,
  .mcg-sector-footer form {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .mcg-sector-button {
    min-width: 0;
    width: 100%;
  }

  .mcg-lead {
    min-height: 0;
    padding: 72px 24px;
  }

  .mcg-lead h2 {
    font-size: clamp(34px, 12vw, 56px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .mcg-lead input {
    flex: 0 0 auto;
    height: 54px;
    max-width: none;
    min-height: 54px;
    padding: 12px 18px;
    width: 100%;
  }

  .mcg-lead .mcg-sector-button {
    min-height: 54px;
  }

  .mcg-lead-captcha {
    gap: 8px;
    margin-top: 0;
    width: 100%;
  }

  .mcg-lead-captcha input {
    height: 48px;
    max-width: 150px;
    min-height: 48px;
  }

  .mcg-sector-intro,
  .mcg-tanya,
  .mcg-sector-feature,
  .mcg-consultation,
  .mcg-lead,
  .mcg-standard-intro,
  .mcg-sector-cta,
  .mcg-joinery__intro,
  .mcg-partners {
    grid-template-columns: 1fr;
  }

  .mcg-sector-intro,
  .mcg-services,
  .mcg-proof,
  .mcg-testimonials,
  .mcg-insights,
  .mcg-projects,
  .mcg-standard-intro,
  .mcg-consultation,
  .mcg-sector-cta,
  .mcg-sector-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mcg-sector-intro {
    padding-top: 0;
  }

  .mcg-sector--commercial .mcg-sector-intro {
    gap: 34px;
    grid-template-columns: 1fr;
    margin: 0;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 0 24px 72px;
  }

  .mcg-sector-feature {
    padding: 0 24px 64px;
  }

  .mcg-sector--commercial .mcg-sector-feature {
    border-bottom-width: 32px;
    gap: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    padding: 0 24px 64px;
  }

  .mcg-sector--commercial .mcg-sector-feature > div:not(.mcg-sector-feature__image) {
    padding: 44px 0 0;
    width: 100%;
  }

  .mcg-sector-feature__image {
    margin: 0 -24px;
    min-height: 320px;
  }

  .mcg-sector-feature__image img {
    min-height: 320px;
  }

  .mcg-sector--commercial .mcg-sector-feature__image {
    margin: 0 -24px;
    min-height: 320px;
    width: calc(100% + 48px);
  }

  .mcg-sector--commercial .mcg-sector-feature__image img {
    min-height: 320px;
  }

  .mcg-sector--commercial .mcg-sector-feature h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
    margin-bottom: 22px;
  }

  .mcg-sector--commercial .mcg-sector-feature p:not(.mcg-pill) {
    font-size: 19px;
    line-height: 1.35;
    max-width: 100%;
  }

  .mcg-sector-intro__video {
    margin-top: -24px;
  }

  .mcg-sector--commercial .mcg-sector-intro__video {
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  .mcg-sector--commercial .mcg-sector-intro__text {
    min-width: 0;
    width: 100%;
  }

  .mcg-sector--commercial .mcg-sector-process {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 22px;
    overflow: visible;
  }

  .mcg-sector--commercial .mcg-sector-process span {
    display: block;
    font-size: inherit;
    max-width: 100%;
    white-space: normal;
  }

  .mcg-sector--commercial .mcg-sector-intro__text h2 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.12;
  }

  .mcg-sector--commercial .mcg-watch-link {
    margin: 26px 0 28px;
    max-width: 100%;
    white-space: normal;
  }

  .mcg-watch-link {
    margin-bottom: 34px;
  }

  .mcg-services__grid,
  .mcg-renovation-types,
  .mcg-renovation-projects__grid,
  .mcg-projects__grid,
  .mcg-proof__stats,
  .mcg-testimonials__grid,
  .mcg-insights__grid,
  .mcg-sector-footer__main {
    grid-template-columns: 1fr;
  }

  .mcg-sector:not(.mcg-sector--commercial) .mcg-project-card h3 {
    min-height: 0;
  }

  .mcg-sector--investors .mcg-proof__stats,
  .mcg-sector--investors .mcg-services__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
  }

  .mcg-sector--investors .mcg-proof__stats {
    gap: 24px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
  }

  .mcg-sector--investors .mcg-proof__stats div {
    align-items: center;
    flex-direction: column;
    gap: 7px;
    justify-content: flex-start;
    min-height: 92px;
    text-align: center;
  }

  .mcg-sector--investors .mcg-proof__stats strong {
    font-size: clamp(38px, 11vw, 48px);
  }

  .mcg-sector--investors .mcg-proof__stats div > span {
    font-size: 16px;
    line-height: 1.15;
    max-width: 138px;
  }

  .mcg-sector--residential .mcg-services__grid,
  .mcg-sector--commercial .mcg-services__grid {
    gap: 30px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .mcg-sector--residential .mcg-service,
  .mcg-sector--commercial .mcg-service {
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 155px;
    text-align: center;
    width: 100%;
  }

  .mcg-sector--residential .mcg-service__icon,
  .mcg-sector--commercial .mcg-service__icon {
    height: 54px;
    margin: 0 auto 12px;
    width: 62px;
  }

  .mcg-sector--residential .mcg-service h3,
  .mcg-sector--commercial .mcg-service h3 {
    font-size: 20px;
    line-height: 1.18;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .mcg-partners {
    grid-template-columns: 1fr;
  }

  .mcg-partners div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcg-testimonials .mcg-section-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .mcg-google-rating {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }

  .mcg-tanya__text {
    justify-self: stretch;
    padding: 64px 24px 24px;
    text-align: left;
  }

  .mcg-tanya__image img {
    margin-top: -24px;
    width: 72%;
  }

  .mcg-consultation__form {
    grid-template-columns: 1fr;
  }

  .mcg-consultation__form button {
    grid-column: 1;
  }

  .mcg-joinery__grid {
    grid-template-columns: 1fr;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-section-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .mcg-lightbox__nav {
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .mcg-sector-footer__newsletter {
    margin-bottom: 44px;
  }

  .mcg-sector-footer__newsletter form {
    grid-template-columns: 1fr;
  }

  .mcg-sector-footer__newsletter form > input[type="email"],
  .mcg-sector-footer__newsletter .mcg-math-captcha,
  .mcg-sector-footer__newsletter button {
    grid-column: 1;
  }

  .mcg-footer-social {
    gap: 18px;
  }

  .mcg-footer-social a {
    height: 30px;
    width: 30px;
  }

  .mcg-sector-footer nav {
    columns: 1;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content__text {
    grid-column: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article > .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(odd) .mcg-blank-content__image {
    grid-column: 2;
    grid-row: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__image {
    grid-column: 1;
    grid-row: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article:nth-child(even) .mcg-blank-content__text {
    grid-column: 2;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-blank-content__text {
    grid-column: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment > .mcg-blank-content__image,
  .mcg-inner-page--bespoke-furniture-maker .mcg-blank-content article.mcg-joinery-investment .mcg-blank-content__image {
    grid-column: 2;
    grid-row: 1;
  }

  .mcg-inner-page--bespoke-furniture-maker .mcg-section-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mcg-sector--residential .mcg-joinery {
  background: #f5f5f3;
  padding: clamp(64px, 7vw, 112px) 0;
}

.mcg-sector--residential .mcg-joinery__intro {
  align-items: center;
  gap: clamp(32px, 5vw, 92px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  margin-bottom: clamp(28px, 3vw, 48px);
  max-width: 1280px;
}

.mcg-sector--residential .mcg-joinery__intro h2 {
  font-size: clamp(29px, 2.8vw, 51px);
  line-height: 1.08;
}

.mcg-sector--residential .mcg-joinery__intro p {
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.25;
  max-width: 760px;
}

.mcg-sector--residential .mcg-joinery__grid {
  display: grid;
  gap: clamp(10px, 1vw, 18px);
  grid-template-areas:
    "bedroom storage storage utility"
    "headboard wardrobes bunks hall"
    "living living stairs stairs";
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(230px, 21vw, 410px));
  margin: 0 auto clamp(30px, 3vw, 48px);
  max-width: 1820px;
  padding: 0;
  width: min(100%, calc(100vw - clamp(28px, 5vw, 96px)));
}

.mcg-sector--residential .mcg-gallery-item {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(1) {
  grid-area: bedroom;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(2) {
  grid-area: storage;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(3) {
  grid-area: utility;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(4) {
  grid-area: headboard;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(5) {
  grid-area: wardrobes;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(6) {
  grid-area: bunks;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(7) {
  grid-area: hall;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(8) {
  grid-area: living;
}

.mcg-sector--residential .mcg-gallery-item:nth-child(9) {
  grid-area: stairs;
}

.mcg-sector--residential .mcg-joinery > .mcg-sector-button {
  min-width: min(100%, 330px);
}

@media (max-width: 1100px) {
  .mcg-sector--residential .mcg-joinery__grid {
    grid-template-areas:
      "bedroom storage"
      "utility storage"
      "headboard wardrobes"
      "bunks hall"
      "living stairs";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, clamp(230px, 36vw, 380px));
  }
}

@media (max-width: 720px) {
  .mcg-sector--residential .mcg-joinery__intro {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .mcg-sector--residential .mcg-joinery__grid {
    grid-template-areas:
      "bedroom"
      "storage"
      "utility"
      "headboard"
      "wardrobes"
      "bunks"
      "hall"
      "living"
      "stairs";
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: calc(100% - 32px);
  }

  .mcg-sector--residential .mcg-gallery-item {
    aspect-ratio: 4 / 3;
  }

  .mcg-sector--residential .mcg-gallery-item:nth-child(5),
  .mcg-sector--residential .mcg-gallery-item:nth-child(6) {
    aspect-ratio: 3 / 4;
  }
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery {
  background: #f5f5f3;
  padding: clamp(64px, 7vw, 112px) 0;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__intro {
  align-items: center;
  gap: clamp(32px, 5vw, 92px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  margin-bottom: clamp(28px, 3vw, 48px);
  max-width: 1280px;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__intro h2 {
  font-size: clamp(29px, 2.8vw, 51px);
  line-height: 1.08;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__intro p {
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.25;
  max-width: 760px;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__grid {
  display: grid;
  gap: clamp(10px, 1vw, 18px);
  grid-template-areas:
    "hall dining dining kitchen"
    "wide wide storage stair";
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(250px, 26vw, 490px));
  margin: 0 auto clamp(30px, 3vw, 48px);
  max-width: 1820px;
  padding: 0;
  width: min(100%, calc(100vw - clamp(28px, 5vw, 96px)));
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(1) {
  grid-area: hall;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(2) {
  grid-area: dining;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(3) {
  grid-area: kitchen;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(4) {
  grid-area: wide;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(5) {
  grid-area: storage;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(6) {
  grid-area: stair;
}

:is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery > .mcg-sector-button {
  min-width: min(100%, 330px);
}

.mcg-sector--commercial .mcg-sector-hero__media {
  background-position: center 38%;
}

.mcg-sector--commercial .mcg-gallery-item:nth-child(2) img,
.mcg-sector--commercial .mcg-gallery-item:nth-child(4) img {
  object-position: center 38%;
}

.mcg-sector--commercial .mcg-gallery-item:nth-child(5) img,
.mcg-sector--commercial .mcg-gallery-item:nth-child(6) img {
  object-position: center 28%;
}

.mcg-project-archive,
.mcg-project-detail {
  background: #f4f4f2;
}

.mcg-project-archive--residential,
.mcg-project-detail--residential {
  --project-accent: var(--sector-green);
}

.mcg-project-archive--investors,
.mcg-project-detail--investors {
  --project-accent: #7a1327;
}

.mcg-project-archive--commercial,
.mcg-project-detail--commercial {
  --project-accent: #003656;
}

.mcg-project-hero {
  align-items: end;
  background: var(--project-accent);
  color: #ffffff;
  display: grid;
  min-height: clamp(430px, 42vw, 660px);
  padding: calc(76px + clamp(58px, 8vw, 120px)) clamp(24px, 7vw, 214px) clamp(58px, 7vw, 96px);
}

.mcg-project-hero__content {
  max-width: 1060px;
}

.mcg-project-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5.2vw, 84px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 18px 0 22px;
  text-transform: none;
}

.mcg-project-hero p:not(.mcg-pill) {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.35;
  margin: 0;
  max-width: 850px;
}

.mcg-project-list {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 214px);
}

.mcg-project-list.mcg-reveal {
  opacity: 1;
  transform: none;
}

.mcg-project-list__head,
.mcg-project-gallery__head {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.mcg-project-list__head h2,
.mcg-project-gallery__head h2,
.mcg-project-sector-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  margin: 14px 0 0;
}

.mcg-project-list__grid {
  display: grid;
  gap: clamp(22px, 2.2vw, 36px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-project-tile {
  background: #ffffff;
  min-width: 0;
}

.mcg-project-tile a {
  color: #111111;
  display: grid;
  min-height: 100%;
  text-decoration: none;
}

.mcg-project-tile img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.mcg-project-tile__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.mcg-project-tile__type {
  color: var(--project-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mcg-project-tile strong {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.08;
}

.mcg-project-tile__body > span:last-child {
  color: #555555;
  font-size: 16px;
}

.mcg-project-detail__intro {
  background: #ffffff;
  display: grid;
  gap: clamp(34px, 4.5vw, 72px);
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  padding: calc(76px + clamp(42px, 6vw, 76px)) clamp(24px, 7vw, 214px) clamp(54px, 6vw, 86px);
}

.mcg-project-detail__copy {
  align-content: center;
  display: grid;
}

.mcg-project-detail__copy .mcg-pill {
  justify-self: start;
  min-width: min(100%, 280px);
}

.mcg-project-detail h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5.2vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: clamp(26px, 3.4vw, 48px) 0 22px;
  text-transform: none;
}

.mcg-project-detail__location {
  align-items: center;
  border-top: 2px solid var(--project-accent);
  color: var(--project-accent);
  display: inline-flex;
  font-size: 17px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 24px;
  padding-top: 14px;
}

.mcg-project-detail__location span {
  display: inline-flex;
  height: 18px;
  width: 18px;
}

.mcg-project-detail__location svg {
  display: block;
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

.mcg-project-detail__summary {
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.35;
  margin: 0 0 22px;
}

.mcg-project-detail__content {
  color: #333333;
  font-size: 16px;
  line-height: 1.62;
}

.mcg-project-detail__content p {
  margin: 0 0 14px;
}

.mcg-project-detail__image {
  margin: 0;
}

.mcg-project-detail__image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mcg-project-gallery {
  background: #101010;
  color: #ffffff;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 214px);
}

.mcg-project-gallery .mcg-pill--light {
  border-color: var(--sector-gold);
  color: var(--sector-gold);
}

.mcg-project-gallery__grid {
  display: grid;
  gap: clamp(12px, 1.4vw, 22px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mcg-project-gallery .mcg-gallery-item {
  aspect-ratio: 4 / 3;
  height: auto;
}

.mcg-project-sector-copy {
  background: #ffffff;
  display: grid;
  justify-items: center;
  padding: clamp(66px, 7vw, 110px) clamp(24px, 7vw, 214px);
  text-align: center;
}

.mcg-project-sector-copy > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.mcg-project-sector-copy p:not(.mcg-pill) {
  font-size: 18px;
  line-height: 1.55;
}

.mcg-project-sector-copy .mcg-sector-button {
  display: inline-flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .mcg-project-list__grid,
  .mcg-project-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__grid {
    grid-template-areas:
      "hall dining"
      "kitchen dining"
      "wide wide"
      "storage stair";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows:
      clamp(230px, 36vw, 360px)
      clamp(230px, 36vw, 360px)
      clamp(260px, 44vw, 420px)
      clamp(260px, 44vw, 420px);
  }
}

@media (max-width: 720px) {
  .mcg-project-list__grid,
  .mcg-project-gallery__grid {
    grid-template-columns: 1fr;
  }

  .mcg-project-detail__intro {
    grid-template-columns: 1fr;
  }

  :is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__intro {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  :is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-joinery__grid {
    grid-template-areas:
      "hall"
      "dining"
      "kitchen"
      "wide"
      "storage"
      "stair";
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: calc(100% - 32px);
  }

  :is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item {
    aspect-ratio: 4 / 3;
  }

  :is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(5),
  :is(.mcg-sector--investors, .mcg-sector--commercial) .mcg-gallery-item:nth-child(6) {
    aspect-ratio: 3 / 4;
  }
}

.mcg-sector .mcg-sector-button,
.mcg-sector .mcg-sector-button:visited,
.mcg-sector .mcg-sector-button:hover,
.mcg-sector .mcg-sector-button:focus-visible {
  background: var(--sector-gold) !important;
  color: #ffffff !important;
}

.mcg-sector-button--dark {
  background: var(--sector-gold) !important;
  color: #ffffff !important;
}

.mcg-sector .mcg-consultation .mcg-sector-button {
  background: transparent !important;
  border: 2px solid var(--sector-gold) !important;
  color: var(--sector-gold) !important;
}

.mcg-sector .mcg-consultation__form .mcg-sector-button--gold {
  background: var(--sector-gold) !important;
  border-color: var(--sector-gold) !important;
  color: #ffffff !important;
}

/* ==================== */
/* MCG 404
/* ==================== */

.mcg-error-body .site-header {
  background: #000000;
}

.mcg-error-page {
  background: #ffffff;
  min-height: 100vh;
}

.mcg-error-hero {
  align-items: end;
  display: grid;
  min-height: clamp(560px, 66vh, 720px);
  overflow: hidden;
  position: relative;
}

.mcg-error-hero__media,
.mcg-error-hero__shade {
  inset: 0;
  position: absolute;
}

.mcg-error-hero__media {
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.mcg-error-hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46) 54%, rgba(0, 0, 0, 0.7)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.08));
}

.mcg-error-hero__content {
  color: #ffffff;
  max-width: 980px;
  padding: clamp(150px, 16vw, 220px) clamp(24px, 7vw, 214px) clamp(74px, 8vw, 118px);
  position: relative;
  z-index: 2;
}

.mcg-error-hero .mcg-pill {
  border-color: var(--sector-gold);
  color: #ffffff;
  margin: 0 0 22px;
}

.mcg-error-hero h1 {
  color: #ffffff;
  font-size: clamp(42px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 24px;
  max-width: 900px;
}

.mcg-error-hero p:not(.mcg-pill) {
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
  margin: 0 0 34px;
  max-width: 820px;
}

.mcg-error-routes {
  background: #f7f4ef;
  display: grid;
  gap: clamp(30px, 4vw, 64px);
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr);
  padding: clamp(62px, 7vw, 108px) clamp(24px, 7vw, 214px);
}

.mcg-error-routes__intro {
  align-self: start;
}

.mcg-error-routes .mcg-pill {
  margin: 0 0 22px;
}

.mcg-error-routes h2 {
  color: #111111;
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.mcg-error-routes__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcg-error-route {
  background: #ffffff;
  color: #111111 !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mcg-error-route:hover,
.mcg-error-route:focus-visible {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  outline: 0;
  transform: translateY(-4px);
}

.mcg-error-route strong {
  color: var(--sector-gold);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.mcg-error-route span {
  color: #333333;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.mcg-error-links {
  align-items: center;
  background: #000000;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
  padding: 28px clamp(24px, 7vw, 214px);
}

.mcg-error-links a {
  color: #ffffff !important;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.mcg-error-links a:hover,
.mcg-error-links a:focus-visible {
  color: var(--sector-gold) !important;
}

@media (max-width: 980px) {
  .mcg-error-routes {
    grid-template-columns: 1fr;
  }

  .mcg-error-routes__grid {
    grid-template-columns: 1fr;
  }

  .mcg-error-route {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .mcg-error-hero {
    min-height: 620px;
  }

  .mcg-error-hero__content {
    padding-top: 136px;
  }

  .mcg-error-hero .mcg-sector-actions,
  .mcg-error-hero .mcg-sector-button {
    width: 100%;
  }

  .mcg-error-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
