/*
Theme Name: Sophie Emma
Author: Liam
Version: 1.0
*/

/* ==========================================
   RESET
========================================== */


html{
    font-size:16px;
	
/* ------	
 
0.5rem   = 8px
1rem     = 16px
1.5rem   = 24px
2rem     = 32px
3rem     = 48px
4rem     = 64px
5rem     = 80px
6rem     = 96px
	

#f8f2f0	lighter
#efe9e4	light
#ddd3cb	dark
#39332e darker

------ */

}

body{ margin:0; padding:0;
    background: #fff;
    font-family: Avenir, serif; font-weight:100;
    color:#0e260e; 
    line-height:1.5;
}

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

h1 { font-family:'Cormorant Garamond', Georgia, serif; font-weight:100; font-size:2.50rem; letter-spacing:0.1rem; }
h2 { font-family:'Cormorant Garamond', Georgia, serif; font-weight:100; font-size:2.25rem; letter-spacing:0.1rem; }
h3 { font-family:'Cormorant Garamond', Georgia, serif; font-weight:100; font-size:1.25rem; letter-spacing:0.075rem; }
p  { font-family: Avenir, serif; font-weight:100; font-size:1.50rem; }

.btn {
  font-family: Avenir, serif; font-weight:100; font-size:1.50rem;	
  display:inline-block;
  margin-top:15px;
  background:#325d42;
  color:white;
  padding:14px 34px;
  text-decoration:none;
  border-radius: 0.15rem;
  transition:.3s;
}

.btn:hover{
   background: #3f7357;
  transform: translateY(-2px);
}




#container{
  width:100%;
  margin:auto;
}

/* - - - - - - - - Header - - - - - - - - */

#header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 99999;
  padding: 2rem 3rem;
  background: #f8f2f0;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 8px 24px rgba(0,0,0,0.06);
  font-family: Avenir, serif;
  font-weight: 100;
  font-size: 1.50rem;
  transition: all .35s ease;
}

#header-wrap { 
  background:transparent; margin:0 auto; width:80%;  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;  
}

#header.scrolled {
  backdrop-filter:blur(16px);
  padding:1rem 3rem;
}

/* LEFT */

#header-logo {
  width: 106px;       /* adjust to your logo size */
  height:70px;
  background-image: url('https://sophieemma.co.uk/img/logos/header-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  justify-self:start;
}

#header-logo.scrolled { 
  width:50px; height:76px; 
} 

/* CENTRE */

#header-navigation {
  justify-self:center;
}

#header-navigation ul { 
  display:flex;
  list-style:none;
  gap:35px;
  margin:0;
  padding:0;
}

#header-navigation ul li a {
  color:#2E4638;
  text-decoration:none;
  font-size:1rem;
  transition:.3s;
}

#header-navigation ul li a:hover{
  color:#A78F7A;
}

/* RIGHT */

#header-social {
  justify-self:end;
}

#header-social ul {
  display:flex;
  list-style:none;
  gap:35px;
  margin:0;
  padding:0;
}

#header-social ul li a {
  color:#2E4638;
  text-decoration:none;
  font-size:1rem;
  transition:.3s;
}

#header-social ul li a:hover {
  color:#A78F7A;
}



/* - - - - - - - - Hero - - - - - - - - */

#hero {
  position:fixed;
  top:0; left:0;
  width:100%;  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:url('/img/banners/index/hero.png') top center / cover no-repeat;
}




/* Main hero content wrapper */

#hero-wrap {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Move content slightly left of centre */

#hero-block {
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: 0%;
  transform: translateY(4vh);
  text-align: left;
  padding: 2rem 0rem;
}

/* Hidden mobile hero */

.hero-mobile-logo {
  display: none;
}

/* Headline */

#hero-block h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #16301d;
  text-shadow: 0 1px 0 rgba(255,255,255,.6), 0 8px 24px rgba(0,0,0,.08);
}

/* Supporting text */

#hero-block p {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 560px;
  color: #213328;
}



/* Scroll indicator remains centered bottom */

.scroll-indicator {font-family: Avenir, serif; font-weight:100; font-size:1.50rem;	
  position:absolute;
  left:50%;
  bottom:32px;
  transform:translateX(-50%);
  font-weight:500;
  font-size:1rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#213328;
  opacity:.85;

  animation: gentleBounce 2.8s ease-in-out infinite;
}

@keyframes 
  gentleBounce {
  0%,100% {
  transform:translateX(-50%) translateY(0);
} 
  50% {
  transform:translateX(-50%) translateY(8px);
}
}



/* - - - - - - - - Page Hero - - - - - - - - */

#page-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('/img/hero.jpg') top center / cover no-repeat;
  background-attachment: fixed; /* THIS is the magic */
}


#page-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,248,242,.28);
  z-index:0;
}


/* Main hero content wrapper */

#page-hero-wrap {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Move content slightly left of centre */

#page-hero-block { 
  width: min(680px, 100%);
  margin: 0 auto;
  transform: translateY(4vh);
  text-align: center;
  padding: 2rem 0rem;
}

/* Headline */

#page-hero-block h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #16301d;
  text-shadow:
    0 1px 0 rgba(255,255,255,.6),
    0 8px 24px rgba(0,0,0,.08);
}

/* Supporting text */

#page-hero-block p {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 560px;
  color: #213328;
}



/* - - - - - - - - Index Page - - - - - - - - */

#index-01 {
  position: relative;
  margin-top: 100vh;   /* pushes below hero initially */
  background: #f8f2f0;	
  z-index: 2;
}

#index-01-wrap{
  position:relative;
  z-index:1;	
  width:80%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
  margin:0 auto;
  padding:5rem 0;
}

#index-01-img{
text-align:center;
	
}

#index-01-img img{ 
  border-radius: 0.25rem;
  width:400px;
  object-fit:contain;
  object-position:center;
  object-position:top center;	
}

#index-01-content{
  max-width:460px;transform:translateY(-10px);
}

#index-01-content h1 {
  margin-bottom:1rem;
}

#index-01-content p {
  font-size:1rem;
  line-height:1.7;
  margin-bottom:2rem;
}

#index-01-content img {
  display:block; width:50%; margin-bottom:3rem; 
}

#index-02 {
  background: #efe9e4;
  width:100%;
  margin:0 auto;
  position:relative;	
  overflow:hidden;
}

#index-02-wrap { 
  position:relative;
  z-index:1;	
  width:80%;
  padding:5rem 0; margin: 0 auto;
}

.section-title {
  text-align:center;
  margin-bottom:50px;
}

.section-03-button {  
  text-align: center;
  margin-top: 2rem; 
}

.section-title p {
  color:#5e655f; font-size:1.1em;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0rem;
}

.card {
  width: 320px;
  height: 341px;
  overflow: hidden;
  border-radius: 0.25rem;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
cursor:pointer;
}

#section-04 {
  background: #ddd3cb url('/img/backgrounds/floral/03.png') center right no-repeat;
  background-size:17%;
  width:100%;
  margin:0 auto;
  position:relative;	
  overflow:hidden;
}

#section-04-wrap { 
  position:relative;
  z-index:1;	
  width:80%;
  padding:5rem 0; margin: 0 auto;
}



/* - - - - - - - - About Page - - - - - - - - */

#about-section-01 { 
  width:100%;
  min-height:757px;
  position:relative;
  overflow:hidden;
  background:#f8f2f0;
	
  display:flex;
  align-items:center;	
}

/* image layer */
#about-section-01::after {
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:60%;
  height:100%;
  background:url('/img/banners/about/01.png') center right no-repeat;
  background-size:cover;
  z-index:1;
}

/* gradient fade */
#about-section-01::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:2;

  background:linear-gradient(
    to right,
    #f8f2f0 0%,
    #f8f2f0 38%,
    rgba(248,242,240,0.96) 45%,
    rgba(248,242,240,0.75) 52%,
    rgba(248,242,240,0.3) 60%,
    rgba(248,242,240,0) 68%
  );
}

#about-section-01-wrap {
  width:80%;
  margin:0 auto;
  position:relative;
  z-index:3;
}

#about-section-01-block {
  width: 40%; 
  margin:0; padding:0;   
}
 

#about-section-02 { 
  background: #f8f2f0;	
  width: 100%;
  position: relative; 
}

#about-section-02-wrap { 
  width: 80%;
  min-height: 700px; 
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;  
  align-items: center; 
}

#about-section-02-gap { 
  width:100%; height:1px; 
  padding:1rem 0; 
  background:#f7f4f0; 
}

#about-section-02-block-left { 
  position: absolute;
  left: 0;
  top: 0;
  width: 50vw;
  min-height: 700px; max-height:700px;
  background: url('/img/banners/about/02.png') center center no-repeat;
}

#about-section-02-block-right {
  width: 40%; padding:2rem 0; 
  margin-left: 54%;
  position: relative;
  z-index: 2;
  align-items: center;	
}
.about-signature {
  width:170px;
  height:42px;
  padding: 6rem 0 0 0;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;  background-image:url('/img/icons/signature.png');
}


#about-section-03 { background:#eeeae4;
  width: 100%; text-align:center;
	padding:0 0 4rem 0;
}

.about-section-03-wrap { 
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0rem; 
}

#section-title { 
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #5e6e5d;	
  width:100%;  
}

#about-section-03-title { 
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #5e6e5d;	
  width:100%;  
  padding:4rem 0 3rem 0; 
}

.grid-item {
  padding: 0.25rem;
}
.grid-item:not(:last-child) {
  border-right:1px solid #dfd4cd;
  padding: 0.25rem;  
}
.grid-item-block {
  width:50%;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.grid-item-icon {
  width:48px;
  height:48px;
  margin:0 auto 1.5rem auto;

  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.icon-bespoke {
  background-image:url('/img/icons/bespoke.png');
}

.icon-handcrafted {
  background-image:url('/img/icons/handcrafted.png');
}

.icon-timeless {
  background-image:url('/img/icons/timeless.png');
}

.icon-made {
  background-image:url('/img/icons/made.png');
}

.grid-item h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #524e46;
}


#about-section-04 { 
  background:#ddd3cb url(/img/banners/about/03.png) right no-repeat; width:100%;
  background-size:cover;
  margin:0 auto;
  position:relative;	
  overflow:hidden; 
}

#about-section-04-wrap { 
  width: 40%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 3.5rem 0;
}

#about-section-04-wrap img {
  width: 30px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

#about-section-04-wrap h1 { 
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.6;	
  font-weight: 400;
  color: #39332e;	
}



/* - - - - - - - - Collections Page - - - - - - - - */

#collections-01 {
  background: #efe9e4;
  width:100%;
  margin:0 auto;
  position:relative;	
}

#collections-01-wrap { 
  position:relative;
  z-index:1;	
  width:80%;
  padding:5rem 0; margin: 0 auto;
}

#collections-01-wrap h1 {   
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #524e46;}

.collections-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0rem;
}

.collections-card { 
  display:flex; flex-direction:column;
  width:320px; height:441px; 
}

.collections-card-image {
  height:441px;
  overflow:hidden;
  border-radius:0.25rem;
}

.collections-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.4s ease;
}

.collections-card:hover img {
  transform:scale(1.25);
  cursor:pointer;
}

.collections-card-content {
  padding-top:1rem;
  text-align:left;
}

.collections-card h3,
.collections-card p {
  margin:0;
}

#collections-02 { 
  width: 100%;
  min-height: 590px;
  max-height: 590px;
  height: 590px;

  position: relative;
  overflow: hidden;

  background: #f7f4f0 url('/img/banners/collections/02.png') center center no-repeat;
  background-size: cover;
}

#collections-02-wrap { 
  width: 80%;
  height:100%; 
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;  
  align-items: center; 
  padding:2rem 0;
}

#collections-02-block { background:#f1ede8;
  width: 30%; 
  margin-right:4rem; padding:2rem;   
}



/* - - - - - - - - Contact Page - - - - - - - - */

#contact-section-01 { 
  background: #f8f2f0;	
  width: 100%;
  position: relative; 
}

#contact-section-01-wrap { 
  width: 80%;
  min-height: 1000px; 
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;  
  align-items: center; 
}

#contact-section-01-block-left { 
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  min-height: 1000px; 
  max-height:1000px;
  background: url('/img/banners/contact/01.png') center center no-repeat;
}

#contact-section-01-block-right {
  width: 40%; 
  padding:2rem 0; 
  margin-right: 54%;
  position: relative;
  z-index: 2;
  align-items: center;	
}


#contact-section-02 { 
  background:#eeeae4;
  width: 100%; text-align:center;
  padding:4rem 0;
}

.contact-section-02-wrap { 
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; 
  align-items: start;
}

#section-title { 
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #5e6e5d;	
  width:100%;  
}

#contact-section-02-title { 
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #5e6e5d;	
  width:100%;  
  padding:4rem 0 3rem 0; 
}

.grid-item {
  padding: 0.25rem;
}
.grid-item:not(:last-child) {
  border-right:1px solid #dfd4cd;
  padding: 0.25rem;  
}
.grid-item-block {
  width:50%;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.grid-item-icon {
  width:48px;
  height:48px;
  margin:0 auto 1.5rem auto;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.icon-email {
  background-image:url('/img/icons/email.png');
}

.icon-phone {
  background-image:url('/img/icons/phone.png');
}

.icon-studio {
  background-image:url('/img/icons/studio.png');
}


.grid-item h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif; 
  text-transform:uppercase; letter-spacing: 0.09em;
  font-size:1rem; font-weight: 500; 	
  color: #524e46;
}

#contact-section-03 { 
  background: #f8f2f0 url('/img/backgrounds/floral/01.png') center right no-repeat;
  background-size:17%;
  width: 100%;
  position: relative; 
}

#contact-section-03-wrap { 
  width: 80%;
  min-height: 750px; 
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;  
  align-items: center;  
}

#contact-section-03-gap { 
  width:100%; height:1px; 
  padding:1rem 0; 
  background:#f7f4f0; 
}

#contact-section-03-block-left { 
  position: absolute;
  left: 0;
  top: 0;
  width: 50vw;
  min-height: 750px; max-height:750px;
  background: url('/img/banners/contact/02.png') center center no-repeat;
}
#contact-section-03-block-right { 
  width: 40%; padding:2rem 0; 
  margin-left: 54%;
  position: relative;
  z-index: 2;
  align-items: center;	
}

.contact-form {
  width: 100%;
  max-width: 560px;
  margin-top: 1rem;
  margin-bottom:2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e9dfd5;
  background: #fff;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
  transition: 0.3s ease;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #44624f;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a9a9a9;
}

/* BUTTON */

.contact-form button {
  background: #2f5b43;
  color: #fff;
  border: none;
  padding: 1rem 2.4rem;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0.5rem;
}

.contact-form button:hover {
  background: #3f7357;
  transform: translateY(-2px);
}

#contact-section-01 small { 
  margin-top: 4rem; padding-top:4rem;
  color: #5c5c5c;
  font-size: 0.9rem;
}



/* - - - - - - - - Kind Words - - - - - - - - */

#kind-words {
  background: #f8f2f0;
  width:100%;
  margin:0 auto;
  position:relative;	
  overflow:hidden;
}

#kind-words-wrap { 
  position:relative;
  z-index:1;	
  width:80%;
  padding:5rem 0; margin: 0 auto;
}

#testimonials {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
}

.testimonial {
  background:#efe9e4;
  padding:2.75rem;
} 

.testimonial-detail {
  display:flex; 
  justify-content:flex-start;
  align-items:flex-start;
}

.testimonial-image { 
  padding-right:1.75rem; 
}

.testimonial-image img { 
  border:1px solid #2d4d39; 
  border-radius:50rem;
}

.testimonial-text { 
  width:70%; font-size:1.1rem;
} 

.testimonial-text h3 {
  margin-top:0;
  line-height:1.2;
}	
	


/* - - - - - - - - Footer - - - - - - - - */


#footer {
  background:#39332e;
  width:100%;
  margin:0 auto;
  position:relative;	
  overflow:hidden; 	
  color:#f4efe8;
}


#footer-wrap {
  display:flex; flex-direction:column;
  width:80%;
  margin: 0 auto; padding:4rem 0 1rem 0;
}	

.footer-title { 
  display:flex; justify-content:center;  
  padding-bottom:4rem;
}

.footer-title h3 { 
  font-size:2rem; 
  padding:0 !important; 
  margin:0 !important; 
}

.footer-navigation {
  border-top:1px solid #47453d;
  border-bottom:1px solid #47453d;
}

.footer-navigation ul {
  display:flex;
  justify-content:center;
  gap:3rem;
  list-style:none;
  margin:0;
  padding:1rem 0;
}

.footer-navigation li {
  margin:0;
  padding:0;
}

.footer-details {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem; padding:3rem 0;
}

.footer-madebyliam {
  width:80px;
  height:47px;

  background-image:url('/img/icons/liam.png');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:right center;

  opacity:0.9;
  transition:opacity .3s ease;
}

.footer-madebyliam:hover {
  opacity:1;
  cursor:pointer;
}






/* ==========================================
   480px MOBILE
========================================== */

@media screen and (max-width:428px){

html{
  font-size:14px; overflow-x:hidden;
}

body{
  overflow-x:hidden;
}

h1{
  font-size:2.2rem;
  line-height:1.2;
}

h2{
  font-size:2rem;
}

h3{
  font-size:1.2rem;
}

p{
  font-size:1rem;
  line-height:1.7;
}

.btn{
  width:100%;
  box-sizing:border-box;
  text-align:center;
  padding:1rem;
}

/* ---------- GLOBAL WRAPS ---------- */

#header-wrap,
#hero-wrap,
#page-hero-wrap,
#index-01-wrap,
#index-02-wrap,
#section-04-wrap,
#about-section-01-wrap,
#about-section-02-wrap,
#collections-01-wrap,
#collections-02-wrap,
#contact-section-01-wrap,
#contact-section-03-wrap,
#kind-words-wrap,
#footer-wrap{
  width:90%; 
}

	
#about-section-02-gap { display:none;}	
	
/* ---------- HEADER ---------- */

#header{
  padding:1rem; position:scroll;
}

#header.scrolled{
  padding:1rem;
}

#header-wrap{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

#header-logo { 
  width:80px;
  height:60px;
}

#header-logo.scrolled{ 
  width:80px;
  height:60px;
}

#header-navigation ul,
#header-social ul{
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
}

/* ---------- HERO ---------- */

	
#hero {
  position:fixed;
  height:100vh;
  background-size:cover; border-bottom:2px solid red;
}

	
#hero-block,
#page-hero-block{ 
  width:90%; 
  transform:none;
  padding:0; margin:0 auto 10rem auto;
}

#hero-block h1,
#page-hero-block h1 { color:#fff;
  font-size:3.2rem;
  text-align:center; text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.12);
}

#hero-block p,
#page-hero-block p{ color:#fff;
  font-size:1.25rem; font-weight:500;
  line-height:1.7;
  text-align:center;	text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.12);
}

/* ---------- INDEX ---------- */

#index-01 {
  margin-top:50vh;
}

#index-01-wrap {
  grid-template-columns:1fr;
  gap:3rem;
  text-align:center;
}

#index-01-content {
  max-width:100%;
  transform:none;
}

#index-01-content img { 
margin: 0 auto 3.75rem auto;
}

#index-01-img img {
  width:100%;
  max-width:320px;
}

.grid,
.collections-grid,
#testimonials,
.about-section-03-wrap,
.contact-section-02-wrap{
  grid-template-columns:1fr;
  gap:2rem;
}

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

.card,
.collections-card{
  width:100%;
  height:auto;
}

.card img{
  height:auto;
}

.collections-card-image{
  height:auto;
}

/* ---------- ABOUT ---------- */

	


  #about-section-01 {
    min-height:auto;
    padding-top:320px; 
  }

  /* image becomes top banner */
  #about-section-01::after {
    width:100%;
    height:300px;
    top:0;
    left:0;
    background-position:center top;
  }

  /* remove fade */
  #about-section-01::before {
    display:none;
  }

  #about-section-01-wrap {
    width:90%;
    padding:3rem 0;
  }

  #about-section-01-block {
    width:100%;
  }
	
#about-section-01,
#about-section-02,
#contact-section-01,
#contact-section-03{
  height:auto;
  min-height:auto;
  max-height:none;
  background-size:cover;
}

#about-section-01-wrap,
#about-section-02-wrap,
#contact-section-01-wrap,
#contact-section-03-wrap{
  display:block;
  padding:4rem 0;
}

#about-section-01-block,
#about-section-02-block-right,
#contact-section-01-block-right,
#contact-section-03-block-right{
  width:100%;
  margin:0;
}

#about-section-02-block-left,
#contact-section-03-block-left {
  position:relative;
  width:100%;
  min-height:300px;
  max-height:300px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;	
}
	
#contact-section-01-block-left { 
  position:relative;
  width:100%;
  min-height:400px;
  max-height:400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;	
}

/* ---------- ABOUT STATS ---------- */

.about-section-03-wrap{
  width:90%;
}

.grid-item{
  border:none !important;
  padding:1rem 0;
}

.grid-item-block{
  width:100%;
}

/* ---------- QUOTE SECTION ---------- */

#about-section-04{
  background:#e3d9d3;
}

#about-section-04-wrap{
  width:90%;
  padding:3rem 0;
}

#about-section-04-wrap h1{
  font-size:1.5rem;
}

/* ---------- COLLECTIONS ---------- */

#collections-02{
  height:auto;
  min-height:auto;
  max-height:none;
  background-position:center;
  background-size:cover;
}

#collections-02-wrap{
  justify-content:center;
  padding:4rem 0;
}

#collections-02-block{
  width:100%;
  margin:0;
  padding:2rem;
  box-sizing:border-box;
}

/* ---------- CONTACT ---------- */

.form-row{
  flex-direction:column;
  gap:0;
}

.contact-form{
  max-width:100%;
}

	.contact-form input,
.contact-form textarea {
  box-sizing: border-box;
}
	
/* ---------- TESTIMONIALS ---------- */

#testimonials{
  gap:2rem;
}

.testimonial{
  padding:2rem;
}

.testimonial-detail{
  flex-direction:column;
}

.testimonial-image{
  padding:0 0 1rem 0;
}

.testimonial-text{
  width:100%;
}

/* ---------- FOOTER ---------- */

.footer-navigation ul{
  flex-direction:column;
  gap:1rem;
  text-align:center;
}

.footer-details{
  flex-direction:column;
  text-align:center;
}

}

