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

* {
    box-sizing:border-box;
	font-synthesis: none;
}
body {
    margin:0;
    height: 100%;
    width: 100%;
    background-color: #EFEDE7;
    font-family: helvetica-neue-lt-pro, Helvetica, Arial, sans-serif;
    font-weight: 200;
	font-size: clamp(14px, 1.5vw, 18px);
}


/* Preload all hover images */
body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;

  background:
    url("../images/icons/plane_hover.svg") no-repeat -9999px -9999px,
    url("../images/social/instagram_hover.svg") no-repeat -9999px -9999px,
    url("../images/social/linkedin_hover.svg") no-repeat -9999px -9999px;
}


.layoutgrid {
    display: grid;
	width:100vw;
    grid-template-columns: 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw 6.25vw;
    grid-template-rows: 100vh, auto; /* Two full-height rows for hero, rest as needed */
    margin: 0;
    padding: 0;
	
   
   
	
	/*Make grid visible 
	background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: calc(100% / 16) 100%, 100% calc(100% / 12);
	/*End make grid visible */
}

a:link, a:visited, a:active {
    text-decoration: none;
    color:#1D1D1B;
}

a:hover {
    text-decoration: none;
    color:#9F9F9F;
}

img {
    border-style: none;
}


    


/*===========================TOP BLACK BAR=======================*/

.top_black_bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 10vh, 280px);
  background-color: #1D1D1B;
  display: flex;
  align-items: center;   /* vertical centre */
  justify-content: center; /* horizontal centre */
  padding: 0 6.25vw;
  box-sizing: border-box;
  z-index: 999;
  margin: 0;
}

/*===========================END TOP BLACK BAR=======================*/

/*===========================BURGER MENU=======================*/
#burger-menu {
          position: fixed;
	      
	      width: 2em;
          height:3em;
	
          /* this line centres it vertically in the top bar */
          top: calc(clamp(80px, 10vh, 280px) / 2 - 1.5em);
	
          background-color: transparent;
          z-index:999999;
          
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .5s ease-in-out;
          -moz-transition: .5s ease-in-out;
          -o-transition: .5s ease-in-out;
          transition: .5s ease-in-out;
          cursor: pointer;
        
          right: 6.25vw;
	      mix-blend-mode: difference;
}

#burger-menu span {
              display: block;
              position: absolute;
              height: 2px;
              width: 100%;
              background: #EFEDE7;
              opacity: 1;
              left: 0;
              -webkit-transform: rotate(0deg);
              -moz-transform: rotate(0deg);
              -o-transform: rotate(0deg);
              transform: rotate(0deg);
              -webkit-transition: .25s ease-in-out;
              -moz-transition: .25s ease-in-out;
              -o-transition: .25s ease-in-out;
              transition: .25s ease-in-out;
 
 }

#burger-menu:focus {
  outline: none; 
  }

#burger-menu:hover span:first-child {
  width: 40px; 
  }

#burger-menu:hover span:last-child {
  width: 20px; 
  }


#burger-menu span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#burger-menu span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}


#burger-menu.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 4px;
  width: 30px;
}


#burger-menu.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 4px;
  width: 30px;
}

#burger-menu.open span {
    background: #EFEDE7; /* Change to white */
}

/*=========================END BURGER MENU=====================*/



/*=========================OVERLAY MENU=====================*/

 li a:hover,
 li a:focus {
  color: #B1E2DF; }


.overlay-menu-background {
    width: 100%;
    height: 100%;
    background-color: #1D1D1B;
    position: fixed;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s, visibility 0s 1s;
    color: #EFEDE7;
	font-family: instrument-serif, serif;
	font-size: 5rem;
	
	 display: flex;
  justify-content: center; /* horizontal centre */
  align-items: center;     /* vertical centre */
}

.overlay-menu-background.active {
  visibility:visible;
    opacity: 1;
  transition: opacity 1s;
  }
  


.menu-options {
    list-style-type: none;
    padding: 0;
}

.menu-options li {
    margin-bottom: 1.5rem;
}

.menu-options a {
    text-decoration: none;
    color: #EFEDE7;
    font-size: clamp(3rem, 4vw, 5rem);
	font-family: instrument-serif, sans-serif;
    font-weight: bold;
}



.overlay-menu-background * {
    color: #EFEDE7; /* Ensure text is white */
}


   

  
  /* prevent page from scrolling when the menu is open */
  .fixed-position {
    overflow: hidden;
 }
  
/*=========================END OVERLAY MENU=====================*/


/*=========================TOP LOGO BAR===================*/
.toplogo {  
          margin: 0;       
  		  position: relative; 
          display: flex;
          align-items: center;
          justify-content: center;
            }


.toplogo img {
            height: clamp(30px, 3.5vw, 65px);
  display: block;
            }
            
            
 


/*=========================END TOP LOGO BAR==================*/





/*=========================HOME HERO==================*/
.home-hero-image {
    position: relative; 
	display:block;
    grid-column: 1 / span 16;
    grid-row: 1 / span 1;
 
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: 50% center;
    width:100vw;
    min-height:100vh;
    box-sizing: border-box;
    overflow: hidden;
   
    transition: background-image 3s ease-in-out, opacity 3s ease-in-out;
	
    
}

 position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% center;
  opacity: 0;
  z-index: 1;

  /* we will enable transition AFTER the first paint in JS */
  transition: none;

    
.home-hero-image::after { /* darkened overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); 
    z-index: 10; /* Overlay is above the image but below the content */
}

/* Ensure text or elements on top of the hero image are above the overlay */
.home-hero-text {
    position: absolute;       /* position relative to .home-hero-image */
    right: 6.25vw;            /* distance from right */
    bottom: 4vw;           /* distance from bottom */
    z-index: 10;              /* above overlay */
    color: #B1E2DF;
   font-size: clamp(0.8rem, 1.5vw, 2rem);
    text-align: right;
    line-height: 0.5;
    font-family: adobe-handwriting-ernie, serif;
    font-weight: 200;
    font-style: normal;
 
}



/*=========================END HOME HERO==================*/


/*=========================HOME: PULL QUOTE=====================*/
	
.pull {
	font-family: instrument-serif, serif;
	font-size: 5em;
}

.highlight {
  position: relative;
  display: inline-block;
	
}

.highlight svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
}

/* shared stroke appearance */
.highlight rect,
.highlight ellipse {
  stroke: #1d1d1b;
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  opacity: 1;
}

/* ----- Animations ----- */

/* both fade after drawing */
@keyframes fadeBoth {
   0%, 80% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

/* CREATIVE draws first */
@keyframes drawCreative {
  0%   { stroke-dashoffset: 600; }
  20%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

/* DESIGN waits, then draws later */
@keyframes drawDesign {
  0%, 29% { stroke-dashoffset: 500; }  /* hold completely hidden */
  30%  { stroke-dashoffset: 500; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

/* CREATIVE rounded rectangle */
.highlight.creative rect {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
	 stroke-dasharray: 10 6;      /* makes it dashed */
  animation:
    drawCreative 8s ease-out infinite,
    fadeBoth 8s linear infinite;
}

/* DESIGN ellipse */
.highlight.design ellipse {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation:
    drawDesign 8s ease-out infinite,
    fadeBoth 8s linear infinite;
}

.home-pull-quote {
    display:flex;
	 justify-content: center;         /* horizontal centring */
    align-items: center;             /* vertical centring */
	
	
    grid-column: 1 / span 16;
    grid-row: 2 / span 1;
    background-image: url("../images/backgrounds/Pink_Paper_Background.jpg");
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: center center;
    width:100vw;
    height:100vh;
    box-sizing: border-box;
    
}


.home-pull-quote img {
    display: inline-block;
    max-width: 80%;             /* constrain image to parent */
    width: clamp(320px, 80vw, 900px);                 /* scale down if needed */
    height: auto;                /* maintain aspect ratio */
	width: clamp(320px, 80vw, 900px);
}


/*=========================END HOME: PULL QUOTE=====================*/


/*=========================HOME: MOTEL=====================*/

.motel {
    grid-column: 1 / span 16;   
    grid-row: 3;                /* row 3 of parent grid */
    display: flex;              /* arrange two columns side by side */
    justify-content: space-between;  /* space between the two columns */
    align-items: stretch; /* make both columns fill the tallest one */
	background-image: url("../images/backgrounds/Woodgrain_Background.jpg");
	
	padding-top: 6.25vw;         /* top margin */
	padding-bottom: 6.25vw;         /* bottom margin */
	padding-left: 6.25vw;         /* left margin */
	padding-right: 6.25vw;         /* right margin */
	gap: 6.25vw; /* fluid gap that shrinks with viewport */
}



.motel-column-1 {
	 flex: 1;                    /* each column takes equal space */
    display: flex;
    justify-content: center;     /* centre image horizontally */
    align-items: center;         /* centre image vertically */
	position: relative; 
}

.motel-column-2 {
	flex: 1;                    /* each column takes equal space */
    display: flex;
    justify-content: center;     /* centre image horizontally */
    align-items: center;         /* centre image vertically */
	position: relative; 
	
}

.motel-column-1 img {
    max-width: 100%;            /* scale responsively */
    height: auto;
    display: block;
}

.motel-column-2 img {
    max-width: 100%;            /* scale responsively */
    height: auto;
    display: block;
}


.polaroid-wrap {
  position: relative;
  aspect-ratio: 1 / 1; /* matches Polaroid */
  width: 100%;
}

.circle-text {
  position: absolute;
  bottom: 8%;          /* adjust overlap amount vertically */
  right: 10%;           /* adjust overlap amount horizontally */
  width: 20%;          /* size of the circular text */
  height: auto;
  pointer-events: none; /* makes it non-clickable */
	
	
	
	animation: spin 12s linear infinite; /* ✨ constant rotation */
  transform-origin: center center;     /* ensures it spins around its own centre */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*=========================END HOME: MOTEL=====================*/



/*=========================HOME: GREEN SECTION=====================*/

.green-section {
   grid-column: 1 / span 16;   
    grid-row: 4;                /* row 4 of parent grid */
	width: 100%;
    background-color: #3B3B2E;
    box-sizing: border-box;
	
    display: flex;
    justify-content: flex-start;
	text-align:left;
	 color: #EFEDE7;
}

.green-section-content {
    padding-left: 6.25vw; /* 1 column margin on all sides */
	padding-top: 6.25vw; /* 1 column margin on all sides */
	padding-bottom: 6.25vw; /* 1 column margin on all sides */
    color: #EFEDE7;
	width: 50%;
	
}

.green-section-content p {
    line-height: 1.5;
    margin: 0;
}

.read-more-btn {
   position: relative;
	display: inline-block;
    margin-top: 2rem;       /* spacing below text */
    padding: 0.75rem 2rem;  /* oblong shape */
    background-color: #EFEDE7;
    color: #000000;
    text-decoration: none;
    font-family: inherit;
    font-weight: normal;
    border-radius: 2px;     /* subtle rounding */
    transition: all 0.3s ease;
	font-size: 0.7em;
}

.read-more-btn:hover {
    background-color: #F7CDCA;
    color: #1D1D1B;
}



/*=========================END HOME: GREEN SECTION=====================*/


/*========================= HOME: PORTFOLIO SECTION=====================*/

.portfolio-section {
    grid-column: 1 / span 16;   
    grid-row: 5;                /* row 4 of parent grid */
	 display: flex;              /* arrange two columns side by side */
    width: 100vw;
    box-sizing: border-box;
	
}

.portfolio-text {
	flex: 0 0 50%;      /* don’t grow or shrink, take 50% */              /* each column takes equal space */
    display: flex;
    flex-direction: column;      /* stack h2, p, button vertically */
	align-items: flex-start;
    padding: 6.25vw;             /* 1-column margin on all sides */
}

.portfolio-text h2 {
    font-family: adobe-handwriting-ernie, serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 1em;
}


.portfolio-text p.serif-header {
   font-family: instrument-serif, serif;
	font-weight: light;
	font-size: clamp(2rem, 5vw, 7rem); 
    line-height: 1.5;
	margin-bottom: 1em;
}

.portfolio-text p {
    line-height: 1.5;
    margin: 0;
}

.portfolio-image {
	flex: 1;      
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


	
.portfolio-text .read-more-btn-black {
	 position: relative;
	display: inline-block;
    margin-top: 2rem;       /* spacing below text */
    padding: 0.75rem 2rem;  /* oblong shape */
    background-color: #1D1D1B;
    color: #EFEDE7;
    text-decoration: none;
    font-family: inherit;
    font-weight: normal;
    border-radius: 2px;     /* subtle rounding */
    transition: all 0.3s ease;
	font-size: 0.7em;
}

.read-more-btn-black:hover {
    background-color: #B1E2DF;
    color: #1D1D1B;
}

/*=========================END HOME: PORTFOLIO SECTION=====================*/



/*========================= HOME: FEATURED PROJECTS SECTION=====================*/

.featured-section {
    grid-column: 1 / span 16;   /* full width parent grid */
    grid-row: 6;                /* row 6 of parent grid */
    display: flex;              /* two side-by-side columns */
    width: 100%;
    box-sizing: border-box;
	height:auto;
}

/* Left column with stacked images */
.featured-left {
   flex: 0 1 50%;        /* don't grow, allow shrink, base width 50% */
    background-color: #3B3B2E;  /* green background */
    display: flex;
    flex-direction: column;     /* stack images */
    gap: 5vw;                  /* spacing between images */
    padding: 6.25vw;            /* padding on all sides */
    box-sizing: border-box;
	object-fit: contain;       /* scales images to fit without cropping */
}

.featured-left img {
    width: 100%;                /* scale images to column width */
    height: auto;
    display: block;
}

/* Right column with full background image */
.featured-right {
    flex: 1;                    /* 50% width */
    background-image: url("../images/backgrounds/marble_background.jpg");
    background-size: cover;
    background-position: center center;
    position: relative;         /* needed for centering text */
    display: flex;
    align-items: center;        /* vertical centering */
    justify-content: center;    /* horizontal centering */
}

/* Text on the right column */
.featured-text {
    font-family: "instrument-serif", serif;
    color: #1D1D1B;
    font-size: clamp(4rem, 5vw, 7rem); 
    text-align: center;
}
/*=========================END HOME: FEATURED PROJECTS SECTION=====================*/


/*========================= HOME: BRANDS SECTION=====================*/


.brands-section {
	grid-column: 1 / span 16;   /* full width parent grid */
    grid-row: 7;                /* row 7 of parent grid */
    width: 100%;
    box-sizing: border-box;
	padding: 6.25vw;
}
	
.brands-section p {
	font-family: instrument-serif, serif;
	font-size: clamp(2rem, 5vw, 2rem);
    line-height: 1.5;
	margin-bottom: 1rem;
}

.full-width-border {
  grid-column: 2 / 15;
  box-sizing: border-box;
  border-bottom: 1px solid #1D1D1B;
  text-align: center;
	margin-bottom: 2rem;
}

/* 5 equal subdivisions for images */
.image-row {
  display: flex;
  justify-content: space-between; /* evenly distribute logos */
  align-items: center;             /* vertical alignment */
  flex-wrap: wrap;                 /* allows wrapping if needed */
  gap: 2vw;                        /* optional spacing between logos */
	margin-bottom: 6.25vw;
}

.image-col {
  flex: 1;                         /* each logo takes equal width */
  text-align: center;              /* centre logos in their column */
}

.image-col img {
  max-width: 50%;
  height: auto;
  display: inline-block;
}

/* new outer scroller container */
.logo-scroll {
  position: relative;
  overflow: hidden;   /* hides the overflowed logos */
  width: 100%;
	display: block;
}

/* moving track that carries both rows */
.scroll-track {
  display: flex;
	flex-wrap: nowrap;
   animation: scroll-logos 25s linear infinite;
}

.scroll-track .image-row {
  flex: 0 0 100%; /* each row exactly one full width */
  display: flex;  /* keep your row flex rules intact */
}

/* pause animation on hover (optional) */
.logo-scroll:hover .scroll-track {
  animation-play-state: paused;
}

/* keyframes for right→left movement */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*=========================END HOME: BRANDS SECTION=====================*/



/*=========================PROJECTS HERO SECTION==================*/

.projects-hero-image {
    position: relative; 
	display:block;
    grid-column: 1 / span 16;
    grid-row: 1 / span 1;
    background-image: url("../images/backgrounds/projects_top_banner.jpg");
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: center center;
    width:100vw;
    min-height:100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
    
}
    
.projects-hero-image::before { /* darkened overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); 
    z-index: 1; /* Overlay is above the image but below the content */
}

/* Ensure text or elements on top of the hero image are above the overlay */
.projects-hero-text {
    position: absolute;       /* position relative to .projects-hero-image */
    right: 6.25vw;            /* distance from right */
    bottom: 4vw;           /* distance from bottom */
    z-index: 10;              /* above overlay */
    color: #B1E2DF;
   font-size: clamp(0.8rem, 1.5vw, 2rem);
    text-align: right;
    line-height: 0.5;
    font-family: adobe-handwriting-ernie, serif;
    font-weight: 200;
    font-style: normal;
 
}




/*=========================END PROJECTS HERO SECTION==================*/



/*=========================PROJECTS CONTENT SECTION==================*/
.projects-hero-title {
  position: absolute;
  top: 6.25vw;           /* distance from top edge */
  left: 6.25vw;         /* pushed towards the right */
  padding-right:6.25vw;
  z-index: 10;           /* above the overlay */
  color: #EFEDE7;        /* off-white text colour */
  font-family: instrument-serif, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 100;
  text-align: left;
  top: 50%;              /* vertically centre start */
  transform: translateY(-50%); /* adjust for element height */
}


.projects-container {
  grid-column: 1 / span 16;   
  grid-row:2;	
	
  display: grid;
  grid-template-columns: repeat(16, 1fr);
 
  box-sizing: border-box;
  line-height: 1; 
	
	
	padding-top:6.25vw;
	padding-bottom: 6.25vw;
	
	row-gap: 6vw;      /* vertical space between each row */

}

/* automatic placement for cards, 3 per row */
.project-card:nth-of-type(3n+1) { grid-column: 2 / span 4; }   /* left  */
.project-card:nth-of-type(3n+2) { grid-column: 7 / span 4; }   /* middle */
.project-card:nth-of-type(3n+3) { grid-column: 12 / span 4; }  /* right  */

.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;

}

.project-type {
  text-transform: uppercase;
  margin-bottom: 0.5em;
	font-size: 0.9rem;
}

.project-thumb {
  width: 100%;
  height: auto;
  z-index: 0; /* image below overlay */
	display:block;
}

.project-thumb-wrapper {
	position: relative;       /* this anchors the ::before overlay */
    display: block;
    overflow: hidden;         /* keeps overlay confined to image bounds */
	display: inline-block;  /* shrink to the image’s dimensions */
	margin-bottom: 0.75em; 
}

/* create the overlay pseudo-element */
.project-thumb-wrapper::before {
  content: "Read MORE.";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EFEDE7;
  font-family: instrument-serif, serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  pointer-events: none;  /* keeps the link clickable */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* show overlay when the card or image is hovered */
.project-link:hover .project-thumb-wrapper::before {
  opacity: 1;
}


.project-name {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  margin-bottom: 0.5em;   /* or 0.5em for a touch more air */
}

.project-client {
  font-size: 0.9rem;
	margin: 0;
  padding: 0;
}

.projects-bottom-row {
	grid-column: 1 / span 16;   
    grid-row:3;	
	background-color: #EFEDE7;
	 text-align: center;
 padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
}

.projects-bottom-row .read-more-btn-black {
	 position: relative;
	display: inline-block;
    margin-top: 2rem;       /* spacing below text */
    padding: 0.75rem 2rem;  /* oblong shape */
    background-color: #1D1D1B;
    color: #EFEDE7;
    text-decoration: none;
    font-family: inherit;
    font-weight: normal;
    border-radius: 2px;     /* subtle rounding */
    transition: all 0.3s ease;
	font-size: 0.7em;
}

.projects-bottom-row .read-more-btn-black:hover {
    background-color: #F7CDCA;
    color: #1D1D1B;
}

/*=========================END PROJECTS CONTENT SECTION==================*/


/*=========================INDIVIDUAL PROJECT CONTENT SECTION==================*/

.project-hero-image {
    position: relative; 
	display:block;
    grid-column: 1 / span 16;
    grid-row: 1 / span 1;
    
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: center center;
    width:100vw;
    min-height:100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
    
}
    
.project-hero-image::before { /* darkened overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); 
    z-index: 1; /* Overlay is above the image but below the content */
}

/* Ensure text or elements on top of the hero image are above the overlay */
.project-hero-text {
    position: absolute;       /* position relative to .projects-hero-image */
    right: 6.25vw;            /* distance from right */
    bottom: 4vw;           /* distance from bottom */
    z-index: 10;              /* above overlay */
    color: #B1E2DF;
   font-size: clamp(0.8rem, 1.5vw, 2rem);
    text-align: right;
    line-height: 0.5;
    font-family: adobe-handwriting-ernie, serif;
    font-weight: 200;
    font-style: normal;
 
}

.project-hero-title {
  position: absolute;
  top: 6.25vw;           /* distance from top edge */
  left: 6.25vw;         /* pushed towards the right */
  padding-right:6.25vw;
  z-index: 10;           /* above the overlay */
  color: #EFEDE7;        /* off-white text colour */
  font-family: instrument-serif, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 100;
  text-align: left;
  top: 50%;              /* vertically centre start */
  transform: translateY(-50%); /* adjust for element height */
}



.project-container {
  grid-column: 1 / span 16;
  grid-row: 2;
	
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(9, auto);
width: 100%;   
}

.project-row1 {
	grid-column: 1 / span 16;
    grid-row: 1;
    display: flex;
	flex-direction: row;
    gap: 4vw;
	padding: 6.25vw;
	width: 100%; 
	justify-content: space-between;
}

.project-row1-left {
  flex: 1 1 50%;  
	padding-right: 4vw;
}

.project-row1-left h2 {
  font-family: instrument-serif, serif;
  font-size: clamp(0.8rem, 5vw, 2rem);
  font-weight:200;
	margin-top:0;
}

.project-row1-right {
  flex: 1 1 50%;  
  display: flex;
  flex-direction: column;
  font-size: clamp(0.7rem, 1rem, 2rem);
}

.project-meta-item {
  border-bottom: 1px solid #1D1D1B;
  padding: 0.5em 0;
}

.meta-label {
 text-transform: uppercase;   /* makes label text all caps */
}




.project-row2 {
  grid-column: 1 / span 16;
  grid-row: 2;
  display: flex;
  flex-direction:row;
  gap: 4vw;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
  width: 100%;
}

.project-row2-left,
.project-row2-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
}

.project-quote {
  font-family: instrument-serif, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 200;
  margin-top: clamp(10vw, 14vw, 18vw);
  margin-bottom: 0.5em;
  line-height: 1.4;
  padding-left: 0.5em;     /* gives room for overhanging strokes */
  margin-left:1vw; 
  margin-right:0;
  border: none;
}

.quote-person {
 font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 200;
  margin-top: 0; 
  margin-left:1vw; 
  opacity: 0.8;
  font-family: adobe-handwriting-ernie, serif;
  padding-left: 0.5em;     /* gives room for overhanging strokes */
  overflow:visible;
}


.project-row3 {
  grid-column: 1 / span 16;
  grid-row:3;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
  width: 100%;
}

.project-row4{
  grid-column: 1 / span 16;
  grid-row:4;
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
}


.project-row5 {
  grid-column: 1 / span 16;
  grid-row:5;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
  width: 100%;
}

.project-row6{
  grid-column: 1 / span 16;
  grid-row:6;
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
}



.project-row7 {
  grid-column: 1 / span 16;
  grid-row:7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4vw;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
}


.project-row7-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.project-row7-right h2 {
  font-family: instrument-serif, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 200;
  margin-bottom: 1rem;
}

.project-row7-right p {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 300;
}


.project-row7-right .read-more-btn-black {
	 position: relative;
	display: inline-block;
    margin-top: 0;       /* spacing below text */
	margin-bottom: 2rem;       /* spacing below text */
    padding: 0.75rem 2rem;  /* oblong shape */
    background-color: #1D1D1B;
    color: #EFEDE7;
    text-decoration: none;
    font-family: inherit;
    font-weight: normal;
    border-radius: 2px;     /* subtle rounding */
    transition: all 0.3s ease;
	font-size: 0.7em;
}

.read-more-btn-black:hover {
    background-color: #B1E2DF;
    color: #1D1D1B;
}

.project-row8 {
	
 grid-column: 1 / span 16;
  grid-row: 8;
  text-align: center;
 padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
}

.project-row8 .read-more-btn-black {
	 position: relative;
	display: inline-block;
    margin-top: 2rem;       /* spacing below text */
    padding: 0.75rem 2rem;  /* oblong shape */
    background-color: #1D1D1B;
    color: #EFEDE7;
    text-decoration: none;
    font-family: inherit;
    font-weight: normal;
    border-radius: 2px;     /* subtle rounding */
    transition: all 0.3s ease;
	font-size: 0.7em;
}

.project-row8 .read-more-btn-black:hover {
    background-color: #F7CDCA;
    color: #1D1D1B;
}


/*=========================END INDIVIDUAL PROJECT CONTENT SECTION==================*/



/*========================= PRESS SECTION==================*/
.press-hero-image {
    position: relative; 
	display:block;
    grid-column: 1 / span 16;
    grid-row: 1 / span 1;
    background-image: url("../images/backgrounds/press_banner.jpg");
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: center center;
    width:100vw;
    min-height:100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
    
}
    
.press-hero-image::before { /* darkened overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); 
    z-index: 1; /* Overlay is above the image but below the content */
}

.press-hero-title {
  position: absolute;
  top: 6.25vw;           /* distance from top edge */
  left: 6.25vw;         /* pushed towards the right */
  padding-right:6.25vw;
  z-index: 10;           /* above the overlay */
  color: #EFEDE7;        /* off-white text colour */
  font-family: instrument-serif, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 100;
  text-align: left;
  top: 50%;              /* vertically centre start */
  transform: translateY(-50%); /* adjust for element height */
}

.press-bottom-row {
	grid-column: 1 / span 16;   
    grid-row:3;	
	background-color: #EFEDE7;
	 text-align: center;
 padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-bottom: 6.25vw;
}

.press-bottom-row .read-more-btn-black {
	 position: relative;
	display: inline-block;
    margin-top: 2rem;       /* spacing below text */
    padding: 0.75rem 2rem;  /* oblong shape */
    background-color: #1D1D1B;
    color: #EFEDE7;
    text-decoration: none;
    font-family: inherit;
    font-weight: normal;
    border-radius: 2px;     /* subtle rounding */
    transition: all 0.3s ease;
	font-size: 0.7em;
}

.press-bottom-row .read-more-btn-black:hover {
    background-color: #F7CDCA;
    color: #1D1D1B;
}

/*=========================END PRESS SECTION==================*/




/*========================= ABOUT SECTION==================*/

.about-hero-image {
    position: relative; 
	display:block;
    grid-column: 1 / span 16;
    grid-row: 1 / span 1;
    background-image: url("../images/backgrounds/about_banner.jpg");
    background-size: cover;
    z-index:0;
    margin:0;
    padding:0;
    background-repeat:no-repeat;
    background-position: center center;
    width:100vw;
    min-height:100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
    
}
    
.about-hero-image::before { /* darkened overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); 
    z-index: 1; /* Overlay is above the image but below the content */
}

/* Ensure text or elements on top of the hero image are above the overlay */
.about-hero-text {
    position: absolute;       /* position relative to hero-image */
    right: 6.25vw;            /* distance from right */
    bottom: 4vw;           /* distance from bottom */
    z-index: 10;              /* above overlay */
    color: #B1E2DF;
   font-size: clamp(0.8rem, 1.5vw, 2rem);
    text-align: right;
    line-height: 0.5;
    font-family: adobe-handwriting-ernie, serif;
    font-weight: 200;
    font-style: normal;
 
}

.about-hero-title {
  position: absolute;
  top: 6.25vw;           /* distance from top edge */
  left: 6.25vw;         /* pushed towards the left */
  padding-right:6.25vw;
  z-index: 10;           /* above the overlay */
  color: #EFEDE7;        /* off-white text colour */
  font-family: instrument-serif, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 100;
  text-align: left;
  top: 50%;              /* vertically centre start */
  transform: translateY(-50%); /* adjust for element height */
}

.about-green-1 {
   grid-column: 1 / span 16;   
    grid-row: 2;                /* row 4 of parent grid */
	width: 100%;
    background-color: #3B3B2E;
    box-sizing: border-box;
	
    display: flex;
    justify-content: flex-start;
	text-align:left;
	 color: #EFEDE7;
	padding-top:6.26vw;
}

.about-green-2 {
   grid-column: 1 / span 16;   
    grid-row: 3;                /* row 4 of parent grid */
	width: 100%;
    background-color: #3B3B2E;
    box-sizing: border-box;
	
    display: flex;
    justify-content: flex-start;
	text-align:left;
	 color: #EFEDE7;
}


.about-green-3 {
   grid-column: 1 / span 16;   
    grid-row: 4;                /* row 4 of parent grid */
	width: 100%;
    background-color: #3B3B2E;
    box-sizing: border-box;
	
    display: flex;
    justify-content: flex-start;
	text-align:left;
	 color: #EFEDE7;
	padding-bottom:6.25vw;
}



.about-text {
	flex: 0 1 50%;        /* don't grow, allow shrink, base width 50% */
    background-color: #3B3B2E;  /* green background */
    display: flex;
    flex-direction: column;     /* stack images */
    gap: 5vw;                  /* spacing between images */
    padding-left: 6.25vw;    
    padding-right: 6.25vw; 
    box-sizing: border-box;
	object-fit: contain;       /* scales images to fit without cropping */
	justify-content: center;   /* vertical centring */
}

.about-text p {
    line-height: 1.5;
    margin: 0;
}

.about-image {
	 flex: 0 0 50%; /* fixed at exactly half width */
	
}


.about-image img {
    width: 100%;                /* scale images to column width */
    height: auto;
    display: block;
}



/*===== White Section on About page =====*/
.about-section {
  background-color: #EFEDE7;
  grid-column: 1 / span 16;
  grid-row: 5;
  width: 100%;
}

/*===== Section Titles =====*/
.section-title {
  width: 100%;
  padding: 0 6.25vw;
  font-family: adobe-handwriting-ernie, serif;
  font-size: 3vw;
  line-height: 1.2;
  margin-top: 4vw;
  margin-bottom: 2vw;
  color: #1D1D1B;
}

/*===== Three-Column Layout =====*/
.three-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 6.25vw;
  gap: 2vw;
  margin-bottom: 6.25vw;
  flex-wrap: wrap; /* allows stacking on mobile */
}

/*===== Individual Columns =====*/
.column {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.column img {
  width: auto;
  height: 5vw;
  object-fit: cover;
  margin-bottom: 1vw;
}

.column p {
  font-size: 1rem;
  margin:0;
  color: #1D1D1B;
}



 .about-featured {
  grid-column: 1 / span 16;
  grid-row: 6;
  width: 100%;
  display: flex;
  flex-direction: row; /* side by side by default */
 
  }

  .about-left,
  .about-right {
       flex: 1 1 50%;  /* each takes half the width */
  }

  .about-left {
      padding: 6.25vw;             
	  display: flex;
  align-items: center;     /* vertical centring */
	  background-image: url('../images/backgrounds/marble_background.jpg');
  }

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

  .about-right {
      min-height: 50vw;            /* give some height to background image */
      align-items: center;
      justify-content: center;
  }

  .about-featured-text {
       font-family: instrument-serif, serif;
	  font-size: clamp(1.5rem, 4vw, 2.5rem); /* scale smaller on mobile */
      justify-content: center;   /* vertical centring */
  } 

/*=========================END ABOUT SECTION==================*/


/*=========================FOOTER========================*/


/* Full-width background image */
.contact-section {
  grid-column: 1 / span 16;
  grid-row: 8;
  background-image: url('../images/backgrounds/footer_image.jpg');
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;             /* always fills full height */
  box-sizing: border-box;
  padding-top: 4vw;     /* space above the white div */
  padding-bottom: 0;    /* no space below */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* White inner box */
.contact-inner {
  background-color: #EFEDE7;
  width: calc(100% - 4vw);          /* 2vw margin on both sides */
  margin: 0 2vw 0 2vw;
  padding-left: 4.25vw;
  padding-right: 4.25vw;
	padding-top:4.25vw;
  box-sizing: border-box;

  display: block;                 
  height: auto;                     /* let it size naturally */
}

/* Columns container */
.contact-columns {
 display: flex;
  justify-content: space-between;   /* centre the group as a whole */
  align-items: flex-start;
  padding-bottom:2.25vw;
}

/* Individual columns */

.contact-col {
  flex: 0 0 auto;            /* fit content, don’t stretch */
  box-sizing: border-box;
}

/* Typography */
.contact-col h2 {
 font-family: instrument-serif, serif;
 font-size: clamp(2rem, 5vw, 2rem);
 line-height: 1.5;
 margin-bottom: 1rem;
 font-weight:200;
	margin-top:0;
	line-height:1;
}

.contact-col p,
.contact-col a {
  color: #1D1D1B;
  text-decoration: none;
}



.contact-email img {
  width: 24px;
  height: 24px;
  margin-top: 0.3rem;        /* nudges icon down to align optically */
}



.contact-email-text a {
  display: inline-block;

  text-decoration: none;
}

#plane {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;

  background: url("../images/icons/paperplane.svg") no-repeat center/contain;
  background-size: contain;        /* or 100% 100%; locks scaling */
  transition: none;                /* optional: remove image fade to stop flicker */
}

.contact-email-text:hover #plane {
	background-image: url("../images/icons/plane_hover.svg");
}

.contact-link:hover .contact-email-text {
  color: #9F9F9F; /* or whatever “lit up” state you want */
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: 0.5vw;
}

#instagram {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;

  background: url("../images/social/instagram.svg") no-repeat center/contain;
  background-size: contain;        /* or 100% 100%; locks scaling */
  transition: none;                /* optional: remove image fade to stop flicker */
}

/* Hover state swaps image */
#instagram:hover {
  background-image: url("../images/social/instagram_hover.svg");
}


#linkedin {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;

  background: url("../images/social/linkedin.svg") no-repeat center/contain;
  background-size: contain;        /* or 100% 100%; locks scaling */
  transition: none;                /* optional: remove image fade to stop flicker */
}

/* Hover state swaps image */
#linkedin:hover {
  background-image: url("../images/social/linkedin_hover.svg");
}

.email:hover {
  color: #9F9F9F;
	
}

/* Footer line */
.contact-footer {
  border-top: 1px solid #1D1D1B;
  margin-top: 6.5vw;
  padding-top: 1vw;
  text-align: right;
}

.contact-footer p {
  font-size: 0.9rem;
  color: #666;
}

/*=========================END FOOTER=====================*/





/*=========================MOBILE STYLES=====================*/
@media screen and (max-width: 768px) 
{
	
	.home-pull-quote {
    height: auto;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .home-pull-quote img {
    max-width: 80%;
    width: 80%;
  }
	
	
   .logo-copyright {
	   font-size: 0.8rem;
	}
	
	.motel {
    grid-column: 1 / -1;        /* full width on mobile */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
	
	.motel-column-1, .motel-column-2 {
        flex: 1 1 100%;         /* full width when stacked */
    }
	
	
	
	
	.portfolio-section {
      flex-direction: column;  /* stack left and right columns */
  }

  .portfolio-text,
  .portfolio-image {
      flex: none;              /* override flex: 1 */
      width: 100%;             /* full width */
  }

  .portfolio-text {
      padding: 6.25vw;         /* keep padding on mobile */
  }

  .portfolio-image img {
      width: 100%;             /* scale image to container */
      height: auto;
  }
	
	
	
	
  .featured-section {
     flex-direction: column-reverse;      /* stack columns vertically */
  }

  .featured-left,
  .featured-right {
      flex: none;                  /* let them take full width */
      width: 100%;
  }

  .featured-left {
      padding: 6.25vw;             /* keep padding around images */
  }

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

  .featured-right {
      min-height: 50vw;            /* give some height to background image */
      align-items: center;
      justify-content: center;
  }

  .featured-text {
      font-size: clamp(1.5rem, 6vw, 2.5rem); /* scale smaller on mobile */
      padding: 2rem;                /* optional breathing space */
  } 
	
	

	  

.contact-columns { /* keeps footer  narrower on mobile */
    flex-direction: column;
    gap: 6vw;
	 
  }

	
  .contact-left,
  .contact-middle,
  .contact-right {
    flex: 1 0 100%;
	   padding-left:15vw;
	padding-right:15vw;
  }
	
	.contact-left {
		padding-top: 15vw;
		
	}

  .contact-footer {
    text-align: right;
    margin-top: 6vw;
  }

.contact-footer p {
    font-size: 0.75rem;    /* smaller text on mobile */
  }

  .green-section-content {
    width: 100%;
	  padding-right:6.25vw;
  }	
	
	/* Stack projects vertically on mobile */

.projects-container {
    /* kill the 16-col layout entirely */
    display: block;
	 padding-left: 6.25vw;
    padding-right: 6.25vw;
  }

  .project-card {
   /* now each card just behaves like a normal block element and stacks */
    display: block;
    box-sizing: border-box;
    margin-bottom: 6vw;
  }

  /* kill the nth-of-type placement so they don't try to sit side by side */
  .project-card:nth-of-type(3n+1),
  .project-card:nth-of-type(3n+2),
  .project-card:nth-of-type(3n+3) {
    grid-column: auto;
  }
	
	/* style individual project page, row 1 */
	.project-row1 {
		flex-direction: column;
	}
	
	/* style individual project page, row 2 */
	.project-row2 {
		flex-direction: column;
	}
	
	.project-quote {
		margin-top:6.26vw;
	}
	
	/* style individual project page, row 4 */
	.project-row4 {
		flex-direction: column;
	}
	
	/* style individual project page, row 6 */
	.project-row6 {
		flex-direction: column;
	}
	
	/* style individual project page, row 7 */
	.project-row7 {
		flex-direction: column;
	}



/* style green section on About page */
.about-green-1 {
	
	flex-direction: column;
}
	
	.about-green-2 {
  flex-direction: column-reverse;	
}

.about-green-3 {
	
	flex-direction: column;
	padding-bottom:0;
}
	
	
	.about-text {
		
			padding-top:6.25vw;
	padding-bottom:6.25vw;
	}	
	
	.about-image {
			
	}

/* style white section on About page */
.column {
    flex: 0 0 100%;
    margin-bottom: 4vw;
  }
	
	.column img {
		height: 10vw;
	}
	

  .section-title {
    font-size: 6vw;
  }
	
	
	.about-featured {
		flex-direction: column;
	}	

	}
/*=========================END MOBILE STYLES=====================*/
