body{
    margin:0;
    padding:0;
    font-family: 'AvantGarde Tx', sans-serif;
    line-height: 1.5em;
}
#site_wrap{
    height:100vh;
    display: grid;
    grid-template-columns:  
        1fr
        repeat(4 ,minmax(0,272px))
        1fr
    ;
    grid-gap:0px;
    grid-template-rows: 
        90px
        min-content
        78px
        min-content
        min-content
        1fr
        ;
    grid-template-areas: 
        "header header header header header header"
        "featured_header featured_header featured_header featured_header featured_header featured_header"
        "tabs tabs tabs tabs tabs tabs"
        ". featured_main featured_main featured_main featured_profile ."
        ". content content content content ."
        "footer footer footer footer footer footer"
        ;
}
.header{
    background-color: #5B5545;
    grid-area: header;
    display: flex;
    width:100%;
    align-items: center;
    justify-content: space-between;
}
.header .logo{
    width:91px;
    align-items: center;
}
.header .nav{
    list-style: none;
    padding: 0px;
    display: flex;
}
.header .nav a{
    text-decoration: none;
    border-radius:50em;
    color:#C9BCA9;
    padding:5px 20px; 
    margin:5% auto;
    width: 80%;
    max-width: 75px;
    text-transform:uppercase;
    font-size: clamp(1rem, 2vw,2rem);
}
.header .nav a:hover, .header .nav .active{
    background-color: #E2DED2;
    color: #5B5545;
}
.featured_header{
  grid-area: featured_header;
  padding-top: 2em;
}
.featured_header{
    text-align: center;
    font-size: clamp(2rem, 6vw, 75px);
    font-weight:300;
    color: #C9BCA9;
    padding: 0px 0px 5px 0px;
    margin:0 10px;  
}
.tabs{
    background-color: none;
    grid-area: tabs;
    display: flex;
    align-items: center;
    justify-content:center;
}
.featured_main{
    grid-area: featured_main;
    padding-top:0;
}
.featured_main h1{
    color:#2F2E2C;
    text-align: center;
    font-size:55px;
    font-weight: 300;
    margin: -0.5em 0em 0.5em 0em; 
}
.featured_main{
    color:#2F2E2C;
    text-align: center;
    line-height: 1.2;
    font-size: clamp(2rem, 2.5vw, 26px);
    font: weight 550px;
    padding: 15px;
    margin: 1.5em;
}
.featured_profile{
    padding: 2em 3em;
    grid-area: featured_profile;  
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content{
    grid-area:content;
    display:flex;
}
.content img{
    margin:0 5px 2em 5px;
}
.footer{
    background-color: #5B5545;
    color: #E2DED2;
    text-align: center;
    padding-top: 2em;
    grid-area: footer;
    width: 100%;
}
.btn-light{
    text-decoration: none;
    border:2px solid #C9BCA9;
    border-radius:50em;
    color:#5B5545;
    background-color: #C9BCA9;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 300px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-light:hover{
    text-decoration: none;
    border:2px solid #5B5545;
    border-radius:50em;
    color:#E2DED2;
    background-color: #5B5545;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 300px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-light:active{
    text-decoration: none;
    border:2px solid #707070;
    border-radius:50em;
    color:#5B5545;
    background-color: #E2DED2;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 300px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-mid{
    text-decoration: none;
    border:2px solid #875F45;
    border-radius:50em;
    color:#E2DED2;
    background-color: #875F45;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 300px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-mid:hover{
    text-decoration: none;
    border:2px solid #5B5545;
    border-radius:50em;
    color:#E2DED2;
    background-color: #5B5545;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 300px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-mid:active{
    text-decoration: none;
    border:2px solid #707070;
    border-radius:50em;
    color:#5B5545;
    background-color: #E2DED2;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 300px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-dark{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border:2px solid #5B5545;
    border-radius:50em;
    color:#E2DED2;
    background-color: #5B5545;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 75px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-dark:hover{
    text-decoration: none;
    border:2px solid #875F45;
    border-radius:50em;
    color:#E2DED2;
    background-color: #875F45;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 75px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.btn-dark:active{
    text-decoration: none;
    border:2px solid #707070;
    border-radius:50em;
    color:#5B5545;
    background-color: #E2DED2;
    padding:5px 20px;
    margin:5% auto;
    width: 80%;
    max-width: 75px;
    text-transform:uppercase;
    font-weight:300;
    font-size: clamp(1rem, 2vw,2rem);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
ul {
  list-style-type: circle;
  margin-left: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width:600px) {

  /* Grid layout: header → buttons → profile → featured main → footer */
  #site_wrap {
    grid-template-rows:
      60px      /* header */
      auto      /* buttons */
      auto      /* featured profile */
      auto      /* featured main */
      auto;     /* footer */
    grid-template-areas:
      "header header header header header header"
      "tabs tabs tabs tabs tabs tabs"
      "featured_profile featured_profile featured_profile featured_profile featured_profile featured_profile"
      "featured_main featured_main featured_main featured_main featured_main featured_main"
      "footer footer footer footer footer footer";
  }
  /* Header */
  .header {
    flex-direction: column;
    justify-content: center;
    padding: 0.5em;
 }
 /* Mobile nav overrides */
.header .nav {
  display: none;            /* hidden until toggled */
  flex-direction: column;   /* vertical stack */
  align-items: center;
  gap: 0.5em;
  margin-top: 0.5em;
  padding: 0;
}
.header .nav.show {
  display: flex;            /* shown when toggle adds .show */
}
.header .nav a {
  width: auto;              /* let links size naturally */
  max-width: none;
  margin: 0.25em 0;
  font-size: clamp(0.9rem, 4vw, 1.2rem);
}
/* Toggle button */
.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;     /* push to right side of header */
}
  /* Buttons (tabs area) */
  .tabs {
    grid-area: tabs;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 0.4em;
    padding: 0.5em;
  }
   .btn-light,
   .btn-mid {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 6px 12px;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  } 
  .btn-dark {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 0.4em 0.8em;
    margin: 0.25em;
    width: auto;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
   .btn-light:hover,
   .btn-mid:hover {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 6px 12px;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  } 
  .btn-dark:hover {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 0.4em 0.8em;
    margin: 0.25em;
    width: auto;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
   .btn-light:active,
   .btn-mid:active {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 6px 12px;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  } 
  .btn-dark:active {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 0.4em 0.8em;
    margin: 0.25em;
    width: auto;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
  /* Featured profile */
  .featured_profile {
    grid-area: featured_profile;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin-bottom: -3em;
  }
  .featured_profile img {
    max-width: 80%;
    height: auto;
  }
  /* Featured main */
.featured_main h1 {
  font-size: clamp(1.2rem, 6vw, 2.5rem); /* scales with viewport */
  line-height: 1.2;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  text-align: center;
}
  .featured_main {
    grid-area: featured_main;
    font-size: clamp(0.7rem, 3vw, 1rem);
    padding: 0.5em;
    text-align: center;
    line-height: 1.3;
  }
  /* Footer */
  .footer {
    font-size: clamp(0.8rem, 2vw, 1rem);
    padding: 1em;
    text-align: center;
  }
  /* Hide unused sections */
  .featured_header,
  .content {
    display: none;
  }
}
