@charset "UTF-8";
/* CSS Document */

@import url("https://use.typekit.net/qfe3udh.css?v=2");

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #d36a98;
}

body {
    font-family: "agenda", sans-serif;
	font-weight: 300;
	font-style: normal;
    font-size:22px;
	line-height: 1.3em;
	letter-spacing: -0.01em;
	margin:0;
	color:#243915;
}

@supports(padding: max(0px)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  @media (orientation: landscape) {
    body {
      padding-top: env(safe-area-inset-top);
      padding-bottom: env(safe-area-inset-bottom);
    }
  }
}


/* Smooth anchor scrolling site-wide */
html { scroll-behavior: smooth; }


/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
}

@media screen and (min-width: 1280px) {
	body {
		font-size:22px;
	}
}

p {
	line-height:1.3em;
}

h1 {
	letter-spacing: -0.03em;
}

h2 {
	font-size: 1.8em;
	letter-spacing: -0.02em;
}

h3 {
	letter-spacing: -0.01em;
}

h1, h2, h3 {
	line-height:1em;
}

li {
	padding-bottom:0.75em;
}

strong {
	font-weight: 600;
}

/* Subtle inline links: no underline by default */
.inline-link{
  color: inherit;
  text-decoration: none;      
  transition: text-decoration-color .2s ease;
}

/* Mouse hover */
.inline-link:hover{
  text-decoration: underline;
  text-underline-offset: .15em;
  text-decoration-thickness: .08em;
}

/* Keyboard focus */
.inline-link:focus{
  text-decoration: underline;
  text-underline-offset: .15em;
  text-decoration-thickness: .08em;
}

/* Strong visible focus indicator for accessibility */
.inline-link:focus-visible{
  outline: 2px solid #a8cb86; 
  outline-offset: 2px;
}


.white-background {
	background-color: #fff;
	width:100%;
	margin:0;
	padding:0;
}

.light-green-background {
	background-color: #f3f7f1;
	width:100%;
	margin:0;
	padding:0;
}

.constrict-page-width {
	max-width: 880px;
	padding: 2px 20px;
	margin: 0 auto;
}




.testimonial {
	background-color: #243915;
	color: #fff;
	font-size: 1.4em;
	line-height: 1.1em;
	font-weight:100;
	padding:1.4em 0;
}

.testimonial p {
	margin: 0;
}

@media screen and (min-width: 520px) {
	.testimonial {
		padding:1.6em 0;
	}
}

@media screen and (min-width: 1280px) {
	.testimonial {
		padding:2.2em;
	}
}

blockquote {
	padding:0;
	margin:0;
}

@media screen and (min-width: 800px) {
	blockquote p {
		text-indent: 2em;
	}
}

	blockquote footer {
		font-size: 0.75em;
		font-weight: 600;
		padding-top:1em;
		margin:0;
	}


/* stack under footer on mobile */
.quote-meta{
  display:block;
  margin-top:1em;
}

/* side-by-side at ≥800px, vertically centred, button pinned right */
@media screen and (min-width: 720px){
  .quote-meta{
    display:flex;
    align-items:center;
    gap:1em;
  }
  .quote-meta .button-green{
    margin-left:auto;
  }
}

/* ===== Green Button ===== */
.button-green{
  display:inline-block;
  background-color:#3b5224;       
  color:#a8cb86;
  font-size:22px;
  font-weight:100;
  padding:0.5em 1.25em;
  border-radius:50px;
  margin-top:20px;
  text-decoration:none;
  line-height:1.2;
  letter-spacing:-0.01em;
  cursor:pointer;

  /* transitions */
  transition:
    color 0.3s ease;
}

.button-green:hover,
.button-green:focus{         
  color:#fff;
}

/* accessible focus ring */
.button-green:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}



/* ===================== */
/* HEADER (mobile first) */
/* ===================== */


.site-header{
  background:#d36a98;
  color:#fbf3ec;
  position:relative;
  z-index:1000;
  padding:20px 20px;
}


.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  max-width:1200px;
  margin: 0 auto;
}

.site-logo img{
  width:160px;
  height:auto;
  display:block;
}
	
	@media (min-width: 480px) {
		.site-logo img{
		  width:180px;
		}
	}
	
	@media (min-width: 1200px) {
		.site-logo img{
		  width:200px;
		}
	}

/* ---- Desktop nav (hidden on mobile) ---- */
.primary-nav{ display:none; }

.primary-nav ul{
  display:flex;
  gap:clamp(18px,2vw,72px);
  margin:0;
  padding:0;
  list-style:none;
  flex-wrap:nowrap;
}

@media (min-width: 1200px){
  .primary-nav ul{
    gap:clamp(24px,40px,72px);
  }
}

/* Base */
.primary-nav a{
  color:#fbf3ec;
  text-decoration:none;
  font-weight:300;
  letter-spacing:-0.01em;
  white-space:nowrap;
  display:inline-block;
  position:relative;
  transition: color .25s ease, transform .15s ease;
}

/* 3/4-width centred underline element */
.primary-nav a::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:12.5%;           /* centres a 75% line */
  width:75%;
  height:1px;
  background: currentColor;
  opacity:0;
  transform: scaleX(0.6);
  transform-origin:left;
  transition: opacity .2s ease, transform .2s ease; /* no delays */
}

/* CURRENT PAGE: raised + permanent underline (no animation) */
.primary-nav a[aria-current="page"],
.primary-nav a.is-current{
  color:#fff;
  transform: translateY(-2px);
}
.primary-nav a[aria-current="page"]::after,
.primary-nav a.is-current::after{
  opacity:1;
  transform: scaleX(1);
  transition: none; /* static, no re-run on click */
}

/* Hover (non-current): tiny lift + show underline */
.primary-nav a:hover{
  color:#fff;
  transform: translateY(-2px);
}
.primary-nav a:hover::after{
  opacity:1;
  transform: scaleX(1);
}

/* Keyboard focus: underline visible, no extra lift */
.primary-nav a:focus-visible{
  outline:2px solid #a8cb86;
  outline-offset:2px;
  color:#fff;
}
.primary-nav a:focus-visible::after{
  opacity:1;
  transform: scaleX(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .primary-nav a{ transition: color .25s ease; }
  .primary-nav a:hover{ transform:none; }
}







/* Reduced motion: remove the lift, keep instant underline */
@media (prefers-reduced-motion: reduce){
  .primary-nav a{ transition: color .3s ease; }
  .primary-nav a:hover{ transform:none; }
  .primary-nav a::after{
    transition: opacity .2s ease, transform .2s ease;
  }
}

	

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .primary-nav a{ transition: color .4s ease; }
  .primary-nav a:hover{ transform:none; }
  .primary-nav a::after{ transition: opacity .2s ease, transform .2s ease; }
}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .primary-nav a{ transition: color .4s ease; }
  .primary-nav a:hover,
  .primary-nav a:focus{ transform: none; }
}




/* ---- Mobile controls (phone + burger) ---- */
.mobile-controls{
  display:flex;
  align-items:center;
  gap:10px;
}

.mobile-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px; height:50px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}

.mobile-call img{
  width:20px; height:auto; display:block;
  filter:brightness(0) invert(1);
}

.mobile-call:hover img,
.mobile-call:focus img{
  animation:wiggle .4s ease-in-out;
}

@keyframes wiggle{
  0%{transform:rotate(0)}
  33%{transform:rotate(15deg)}
  66%{transform:rotate(-12deg)}
  100%{transform:rotate(0)}
}

/* ---- Burger ---- */
.burger-menu{
  width:50px; height:50px;
  cursor:pointer;
  position:relative;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}

/* top, middle, bottom bars */
.burger-menu span,
.burger-menu::before,
.burger-menu::after{
  content:"";
  display:block;
  width:22px;
  height:3px;
  background:#fbf3ec;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  transition:transform .3s ease-in-out, opacity .2s ease-in-out, top .3s ease-in-out, bottom .3s ease-in-out;
  border-radius:2px;
}

.burger-menu::before{ top:35%; }
.burger-menu span{ top:50%; transform:translate(-50%, -50%); }
.burger-menu::after{ bottom:35%; }

/* OPEN STATE */
.burger-menu.open span{ opacity:0; }
.burger-menu.open::before{
  transform:translateX(-50%) rotate(45deg);
  top:45%;
}
.burger-menu.open::after{
  transform:translateX(-50%) rotate(-45deg);
  top:45%;
}



/* X state */
.burger.is-open .burger-lines{ background:transparent; }
.burger.is-open::before{ top:50%; transform:translate(-50%,-50%) rotate(45deg); }
.burger.is-open::after { top:50%; transform:translate(-50%,-50%) rotate(-45deg); }


.mobile-menu{
  position:absolute; left:0; top:100%;
  width:100%;
  background:#d36a98;
  border-bottom:1px solid #f9f6f8;
  box-shadow:0 10px 18px rgba(0,0,0,.08);
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .3s ease, opacity .25s ease;
}

.mobile-menu a{
  display:block;
  padding:18px 22px;
  text-decoration:none;
  color:#f9f6f8;
  border-top:1px solid #f9f6f8;
  font-weight:300;
	font-size:24px;
}


.mobile-menu.is-open{ opacity:1; /* max-height set via JS */ }



@media (min-width:1024px){
  .primary-nav{ display:block; }


  .primary-nav{
    position:absolute;
    right:0;
    bottom:10px;
  }

  .mobile-controls{ display:none; }
  .mobile-menu{ display:none; }
}

	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	

	

/* PAGE TITLE SECTION */

	.page-title-section {
		background-color: #2b4a15;
		background-position: top;
		background-size: contain;
		background-repeat: no-repeat;
		color:#fff;	
	}
	
	.page-title-inner {
		max-width: 1200px;
		padding:20px;
		padding-top:66vw;
	}
	
	.page-title-inner h1 {
		font-size: 2em;
		margin: 0 0 0.3em 0;
	}
	
	.page-title-inner h1,
	.page-title-inner p {
		max-width: 500px;
	}
	
	@media (min-width: 720px){
		.page-title-section {
			background-position:right;
			min-height: 340px;
			display: flex;
    		align-items: center;
		}
		
		.page-title-inner {
			padding:20px;
		}
		
		.page-title-inner h1 {
			font-size: 2.5em;
		}
		
			.page-title-inner h1 {
				max-width: 400px;
			}
		
		
			.page-title-inner p {
				max-width: 360px;
			}
	}
	

	
	
		@media (min-width: 870px){
			
		.page-title-section {
			min-height: 400px;
		}

		
		.page-title-inner h1 {
			font-size: 2.75em;
		}
		
			.page-title-inner h1,
			.page-title-inner p {
				max-width: 420px;
			}
		}
	
	
			@media (min-width: 960px){

		
		.page-title-inner h1 {
			font-size: 2.85em;
		}
		
			.page-title-inner h1,
			.page-title-inner p {
				max-width: 480px;
			}
		}
	
	
	
	
	
		@media (min-width: 1024px){
			.page-title-section {
				min-height: 450px;
			}

			.page-title-inner h1 {
				font-size: 3em;
			}
			
			.page-title-inner h1 {
				max-width: 500px;
			}
		}
	
	@media (min-width: 1280px){
		.page-title-section {
			min-height: 500px;
		}
		
		.page-title-inner {
			width: 1200px;
			margin: 0 auto;
		}
		
		.page-title-inner h1 {
			max-width: 520px;
		}
	}
	
	@media (min-width: 1680px){
		.page-title-section {
			min-height: 600px;
		}
	}
	
	
	
/* PAGE TITLE ENDS */
	
	
	
	
	
	
	
	
	
	
	














/* ========================= */
/* CTA CARD (Level 2 - mid)  */
/* ========================= */

.cta{
  margin:24px auto;
  position:relative;            /* above bg + Level 1 thistles */
  z-index:2;

  /* JS drives --p (0→1). Mid layer rises from start→end */
  transform: translateY(calc(var(--mid-start, 75px) + (var(--mid-end, 25px) - var(--mid-start, 75px)) * var(--p, 0)));
  will-change: transform;
}

/* Card */
.cta-box{
  background:#d36a98;
  color:#fff;
  border-radius:24px;
  border:1px solid #fff;
  overflow:hidden;
  padding:24px 24px 32px 24px;
  display:grid;

  /* Mobile layout: top row text, bottom row image + call-me */
  grid-template-columns:auto 1fr;   /* image | call-me */
  grid-template-rows:auto 150px; 
  grid-template-areas:
    "talk talk"
    "image call";
  align-items:end;
  column-gap:12px;
}

/* Portrait defaults */
.portrait{
  grid-area:image;
  align-self:end;
  margin-left:-65px;
  margin-bottom:-30px;
}
.portrait img{
  display:block;
  height:200px;
  width:auto;
  position:relative;
  bottom:-30px;
}

.text-col{ display:contents; }

/* Let’s Talk block */
.lets-talk{
  grid-area:talk;
  max-width:48ch;
}
.lets-talk h2{ margin:0 0 .4rem 0; }
.lets-talk p{ margin:0; }

/* Call-me */
.call-me{
  grid-area:call;
  align-self:center;
  margin:0;
  margin-top:20px;
}
.call-me a{ color:#fff; }
.phone{
  font-size:1.8rem;
  font-weight:800;
  vertical-align:baseline;
  white-space:nowrap;
  text-decoration:none;
  color:#fff;
}
.enquiry{ text-decoration:underline; }

/* ===== Responsive tweaks ===== */

@media (min-width:400px){
  .portrait{ margin-left:-50px; }
}

@media (min-width:420px){
  .portrait{ margin-left:-40px; }
}

@media (min-width:540px){
  .cta{
    /* stronger travel on wider view */
    --mid-start: 150px;
    --mid-end:   50px;
  }

  .cta-box{
    grid-template-columns:auto 1fr; 
    grid-template-rows:1fr;
    grid-template-areas:"image text";
    align-items:stretch;
    column-gap:0;          /* gap handled by text padding */
    padding:30px;
  }

  .portrait{
    display:flex;
    align-items:flex-end;
    margin-left:-90px;
    margin-bottom:-30px;
  }
  .portrait img{
    height:280px;
    bottom:0;
  }

  .text-col{
    grid-area:text;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:14px;
    padding-left:40px;
  }

  .lets-talk{ max-width:70ch; }
  .lets-talk h2{ font-size:2.2rem; }
  .phone{ font-size:2rem; }

  .call-me{
    align-self:stretch; 
    text-align:left;
  }
}

@media (min-width:640px){
  .portrait{ margin-left:-50px; }
  .portrait img{ height:240px; }
}


/* ============================================== */
/* CTA SCENE: background + thistles + parallax    */
/* Level 1: bg + thistle-3 + thistle-5 (no par)   */
/* Level 2: .cta (mid)                            */
/* Level 3: thistle-1,2,4,6 (fast)                */
/* ============================================== */

.essex-countryside{
  position:relative;
  min-height:420px;
  padding:0 0 80px 0;          /* headroom for motion */
  overflow:hidden;
  margin-top:-24px;

  /* Scroll progress set by JS */
  --p: 0;

  /* Defaults for travel amounts */
  --mid-start: 75px;
  --mid-end:   25px;
  --fast-start: 100px;
  --fast-end:     0px;
}

@media (min-width:540px){
  .essex-countryside{
    --mid-start: 150px;
    --mid-end:    50px;
    --fast-start: 200px;
    --fast-end:     0px;
  }
}

/* Background stays static (Level 1, no parallax) */
.essex-countryside::before {
  content: "";
  position: absolute;
  inset: 0;
	margin-bottom:-1px;
  background-image: url("../../images/cta-background.jpg");
  background-image: -webkit-image-set(
    url("../../images/cta-background.avif") type("image/avif") 1x,
    url("../../images/cta-background.webp") type("image/webp") 1x,
    url("../../images/cta-background.jpg")  type("image/jpeg") 1x
  );
  background-image: image-set(
    url("../../images/cta-background.avif") type("image/avif") 1x,
    url("../../images/cta-background.webp") type("image/webp") 1x,
    url("../../images/cta-background.jpg")  type("image/jpeg") 1x
  );
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Thistle base */
.thistle{
  position:absolute;
  left:50%;
  bottom:-5px;
  pointer-events:none;
  z-index:1;                   /* Level 1 baseline */
  transform: translate3d(var(--x,0px), 0, 0);
  will-change: transform;
}

/* Sway on the images (independent of parallax) */
.thistle img{
  display:block;
  transform-origin:50% 100%;
  will-change:transform;
}

@keyframes sway15{ from{transform:rotate(-1.5deg)} to{transform:rotate(1.5deg)} }
@keyframes sway2 { from{transform:rotate(-2deg)}   to{transform:rotate(2deg)}   }
@keyframes sway3 { from{transform:rotate(-3deg)}   to{transform:rotate(3deg)}   }
@keyframes sway5 { from{transform:rotate(-5deg)}   to{transform:rotate(5deg)}   }

.thistle-one   img{ animation:sway2  3.20s ease-in-out   0s   infinite alternate; }
.thistle-two   img{ animation:sway3  3.73s ease-in-out  .35s  infinite alternate; }
.thistle-three img{ animation:sway15 2.80s ease-in-out  .15s  infinite alternate; }
.thistle-four  img{ animation:sway2  4.07s ease-in-out  .60s  infinite alternate; }
.thistle-five  img{ animation:sway15 3.33s ease-in-out  .90s  infinite alternate; }
.thistle-six   img{ animation:sway5  2.07s ease-in-out  .95s  infinite alternate; }


/* defaults */
.thistle-one  { --x:-460px; }
.thistle-two  { --x:-420px; }
.thistle-three{ --x: 520px; }  /* constant */
.thistle-four { --x: 150px; }
.thistle-five { --x:-660px; }  /* constant */
.thistle-six  { --x:-180px; }

/* 420+ */
@media (min-width:420px){
  .thistle-four { --x: 180px; }
  .thistle-six  { --x:-200px; }
}

/* 480+ */
@media (min-width:480px){
  .thistle-one  { --x:-290px; }
  .thistle-two  { --x:-270px; }
  .thistle-four { --x: 200px; }
  .thistle-six  { --x:-150px; }
}

/* 520+ */
@media (min-width:520px){
  .thistle-four { --x: 220px; }
  .thistle-six  { --x:-180px; } /* back to base */
}

/* 800+ */
@media (min-width:800px){
  .thistle-one  { --x:-460px; } /* back to base */
  .thistle-two  { --x:-420px; } /* back to base */
  .thistle-four { --x: 180px; }
}


/* Sizes */
.thistle-one  img{ width:105px; height:auto; }
.thistle-two  img{ width:98px;  height:auto; }
.thistle-three img{ width:90px;  height:auto; }
.thistle-four img{ width:120px; height:auto; }
.thistle-five img{ width:100px; height:auto; }
.thistle-six  img{ width:110px; height:auto; }

/* Level 1 no parallax */
.thistle-three,
.thistle-five{
  z-index:1;
}

/* Level 3 fast parallax uses --p */
.thistle-one,
.thistle-two,
.thistle-four,
.thistle-six{
  z-index:3;
  transform: translate3d(
    var(--x, 0px),
    calc(var(--fast-start) + (var(--fast-end) - var(--fast-start)) * var(--p)),
    0
  );
}

/* Reduced-motion */
@media (prefers-reduced-motion: reduce){
  .thistle img{ animation:none !important; }
  .cta{ transform:none !important; }
  .thistle-one,
  .thistle-two,
  .thistle-four,
  .thistle-six{
    transform: translate3d(var(--x,0px), 0, 0) !important;
  }
}



	
	
	
	
	
	







































/* Accordion styling */
#faqs {
  padding: 40px 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 30px),
    url("../../images/faqs-background.jpg");
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 30px),
    -webkit-image-set(
      url("../../images/faqs-background.avif") type("image/avif") 1x,
      url("../../images/faqs-background.jpg")  type("image/jpeg") 1x
    );
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 30px),
    image-set(
      url("../../images/faqs-background.avif") type("image/avif") 1x,
      url("../../images/faqs-background.jpg")  type("image/jpeg") 1x
    );
  background-size: 100% 100%, 400vw auto;
  background-position: 0 0, top;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
}


@media (min-width: 980px) {
  #faqs {
    padding: 60px 0;
    background-size: 100% 100%, cover;
  }
}

#faqs h2 {
  font-size: 1.2em;
  margin-bottom: 0.8em;
  margin-top: 0;
  color: #fff;
  font-weight: bold;
}

.faq-question {
  cursor: pointer;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0);
}

.faq-question h3 {
  margin: 0;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3em;
}

.faq-question p {
  margin: 15px 0 0 0;
  font-size: 22px;
}

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

.faq-question a:hover {
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .faq-question h3 {
    font-size: 22px;
  }

  .faq-question p {
    font-size: 22px;
  }
}

/* FAQ answers — animated */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  letter-spacing: 0.01em;
  font-weight: 100;
  transition: max-height .32s ease, opacity .25s ease, margin-top .32s ease;
}

/* Open state */
.faq-question.active .faq-answer {
  opacity: 1;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

@media (hover: hover) and (pointer: fine) {
  .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.faq-question.active,
.faq-question.active:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


	
	
	
	
	








	
/* ========== BASE: layout + styling ========== */
.site-footer {
  display: block;
  background: #d36a98;
  color: #fbf3ec;
  padding: 12px 0;
  line-height: 36px;
}

.site-footer a {
  color: #fbf3ec;
  text-decoration: none;
}
	
.site-footer a:hover {
  color: #fff;
}

.site-footer ul,
.site-footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "c1"
    "c2"
    "c3"
    "c4"
    "c5"
    "c6";
  column-gap: 16px;
  row-gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding:20px;
}

/* area bindings */
.block-1 { grid-area: c1; }
.block-2 { grid-area: c2; }
.block-3 { grid-area: c3; }
.block-4 { grid-area: c4; }
.block-5 { grid-area: c5; }
.block-6 { grid-area: c6; }

/* helpers */
.footer-logo { width: 160px; height: auto; display: block; margin-bottom:30px; }
.iocf { width: 180px; height: auto; display: block; }
.celebrant-directory { width: 90px; height: auto; display: block; }
.block-4 { display: flex; gap: 8px; }
	
.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin:10px 0 30px 0;
}

.socials a {
  display: inline-flex;
}

.socials img {
  width: 36px;
  height: auto;
  display: block;
}

.footer-grid p { margin: 0; }


.block-2 > ul > li > ul > li {
  position: relative;
  padding-left: 0;
}
.block-2 > ul > li > ul > li::before {
  content: "•";
  display: inline-block;
  margin-right: 0.5em;
  color: #fbf3ec;
}
	
.block-4 {
	margin: 30px 0;
	display: flex;
	grid-gap: 20px;
}
	
.block-5 {
	padding-bottom: 12px;
	padding-top: 18px;       
}
	

	
	
	@media (min-width: 480px) {
		.footer-logo { width: 180px; height: auto; display: block; margin-bottom:30px; }
	}


@media (min-width: 590px) and (max-width: 719.98px) {
  .footer-logo { margin-bottom:30px; }
	
  .footer-grid {
     grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    grid-template-areas:
      "c1 c2"
      "c4 c3"
      "c5 c5"
      "c6 c6";
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }
	
  .block-2 { padding-top: 60px;}
	
  .block-4 { display: flex; flex-direction: column; gap: 20px; margin-top: 0px;}
	
  .block-5 { padding-top: 30px;}
	
  .iocf { width: 200px;}
  .celebrant-directory { width: 100px; }
}
	

@media (min-width: 720px) and (max-width: 879.98px) {
  .footer-grid {
     grid-template-columns: minmax(0, 50fr) minmax(0, 50fr);
    grid-template-areas:
      "c1 c2"
      "c4 c3"
      "c5 c5"
      "c6 c6";
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }
	
  .footer-logo { margin-bottom:26px; }
	
  .block-2 { margin-top: 56px;}
	
	.block-4 { display: flex; flex-direction: column; gap: 20px; margin-top: 0px;}
	
   .block-5 { padding-top: 30px;}
	
  .iocf { width: 200px;}
  .celebrant-directory { width: 100px; }

}


@media (min-width: 880px) and (max-width: 1023.98px) {
  .footer-grid {
    grid-template-columns: minmax(0, 40fr) minmax(0, 36fr) minmax(0, 24fr);
    grid-template-areas:
      "logo c2 c3"
      "c1d  c2   c3"
      "c4   c4   c4"
	  "c5   c5   c5"
	  "c6   c6   c6";
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }

  .block-1 { display: contents; }
  .footer-logo { grid-area: logo; justify-self: left; margin-bottom:42px;}
  .brand-details { grid-area: c1d; display: flex; flex-direction: column; }
  .block-4 { grid-area: c4; }
}


@media (min-width: 1024px) {
	
  .site-footer {
	  padding: 24px 0 12px 0;
	}
	
  .footer-grid {
    grid-template-columns: minmax(0, 26fr) minmax(0, 32fr) minmax(0, 19fr) minmax(0, 23fr);
    grid-template-areas:
      "c1 c2 c3 c4"
      "c5 c5 c5 c5"
      "c6 c6 c6 c6";
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }

  .block-1 { display: block; }
  .brand-details { grid-area: auto; display: flex; flex-direction: column; }
  .footer-logo { grid-area: auto; justify-self: auto; margin-bottom:42px;}
  .block-4 { flex-direction: column; align-items: flex-end; grid-gap: 40px; margin:64px 0 0 0;}
  .iocf { width: 200px;}
  .celebrant-directory { width: 100px; }
  }


@media (min-width: 1200px) {
	
  .footer-grid {
	grid-template-columns: minmax(0, 32fr) minmax(0, 34fr) minmax(0, 22fr);
    grid-template-areas:
      "c1 c2 c3 c4"
      "c5 c5 c6 c6";
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }
	
	 .block-4 { 
		 margin:28px 0 0 0;
	}

  .block-6 {
    text-align: right;
  }
	
  .footer-logo { width: 200px; margin-bottom:30px; }
  .iocf { width: 240px;}
  .celebrant-directory { width: 120px; }
	
  .block-5, .block-6 {
	  padding-top: 18px;
	}
}
	

@media (min-width: 1440px) {
  .site-footer {
	  padding: 36px 0 20px 0;
	}
}
	
.footer-divider{
  grid-area: c5;         
  grid-column: 1 / -1;   
  align-self: start;     
  border: 0;
  height: 2px;           
  background: #fbf3ec;
  opacity: .6;
  margin: 0;
  width: 100%; 
}

