html, body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}





body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #0b2f46;
  background: #f8f4ed;
}

.site-header {
  height: 95px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fbf8f2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #0b2f46;
}

.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 38px;
  letter-spacing: 4px;
}

.brand-subtitle {
  text-align: center;
  letter-spacing: 8px;
  color: #3d9ba6;
  font-size: 15px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.topnav a {
  color: #0b2f46;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 8px;
}

.topnav a.active {
  border-bottom: 2px solid #3d9ba6;
}

.contact-btn {
  background: #075c72;
  color: white !important;
  padding: 16px 24px !important;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.hero {
  min-height: 650px;
  background:
    linear-gradient(to right, rgba(248,244,237,.92), rgba(248,244,237,.55), rgba(248,244,237,.1)),
    url("https://images.unsplash.com/photo-1582488719899-a2a54cb479fe?q=80&w=2586&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 650px;
  margin-left: 95px;
  margin-top: 20px;
}

.eyebrow {
  color: #0f6b78;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 15px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  background: #88b7bd;
  margin-right: 18px;
  vertical-align: middle;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.05;
  margin: 28px 0 20px;
  color: #0b2f46;
  font-weight: 500;
}

.hero-text {
  font-size: 21px;
  line-height: 1.5;
  color: #1e2d35;
  max-width: 490px;
  display: inline-block;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  color: #082f46;
}

.call-btn {
  display: inline-block;
  margin-top: 18px;
  background: #075c72;
  color: white;
  text-decoration: none;
  padding: 17px 28px;
  border-radius: 7px;
  font-weight: bold;
  letter-spacing: 1px;
}


.intro {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 30px;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #253957; /* your navy */
    max-width: 90%;
    margin: 0 auto;
}

.intro h2 {
    font-size: 2.5rem;
    color: #253957;
    margin-bottom: 20px;
    text-align: center;
}

.features {
  background: #fbf8f2;
  padding: 70px 70px 58px;
  display: grid;
  grid-template-columns: 1.7fr repeat(5, 1fr);
  gap: 24px;
  align-items: start;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fbf8f2;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.rooted {
  text-align: center;
  z-index: 1;
}

.rooted p {
  font-family: cursive;
  color: #3d9ba6;
  font-size: 30px;
  margin: 0;
}

.rooted h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin: 4px 0;
}

.rooted span {
  color: #3d9ba6;
  font-size: 30px;
}

.feature-card {
  text-align: center;
  padding: 0 22px;
  border-left: 1px solid #d6d0c6;
  z-index: 1;
}

.icon {
  width: 62px;
  height: 62px;
  border: 1.5px solid #3d9ba6;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 28px;
}

.feature-card h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.45;
  color: #333;
}



@media (max-width: 1000px) {
  .site-header {
    height: auto;
    padding: 25px;
    flex-direction: column;
    gap: 20px;
  }

  .topnav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero-content {
    margin: 60px 30px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-left: none;
    border-top: 1px solid #d6d0c6;
    padding-top: 24px;
  }
}

.social-icon-link img {
    vertical-align: middle;
}






.meet-text  {
  color: #0b2f46;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  margin: 0;
}



.meet-header  {
    color:  #0b2f46;
     text-align: center;
     font-size: 30px;
     font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1;
    /* Optional padding/margin if needed, but not a huge fixed margin-left */
    padding-left: px;
    font-weight: bold;
    white-space: nowrap;
    padding: 0px;
    border-radius: 0px;
}
.team-page {
  background: #f8f4ed;
  min-height: calc(100vh - 115px - 80px);
    padding: 30px 40px;
}

.team-intro {
  text-align: center;
  margin-bottom: 55px;
}

.team-intro h1 {
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 500;
  color: #082f46;
  margin: 0;
}

.wave,
.small-wave {
  color: #3d9ba6;
  font-size: 34px;
  line-height: 1;
  margin-top: 12px;
}

.photo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.photo-card {
  text-align: center;
}

.photo-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #082f46;
  margin-bottom: 22px;
}

.photo-label span {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: #3d9ba6;
}

.photo-frame {
  width: 430px;
  height: 480px;
  border: 20px solid #f5f1e6;
  box-shadow: 0 0 0 6px #e7dfcf;
  border-radius: 22px;
  overflow: hidden;
  box-sizing: border-box;
}

.photo-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bw {
  filter: grayscale(100%);
}

.ampersand {
    width: 120px;
    height: 120px;
    background: #f5f1e6;
    border: 3px solid #e7dfcf;
    border-radius: 50%;

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

    font-size: 72px;
    font-family: Georgia, serif;
    color: #082f46;
}

.ampersand .small-wave {
  font-size: 28px;
  margin-top: 8px;
}

footer {
    background: #082f46;
    color: white;
    text-align: center;
    padding: 18px 20px;
    font-size: 16px;
    margin-top: auto;
}

/* Mobile */
@media (max-width: 1000px) {
  .team-page {
    padding: 45px 25px;
  }

  .team-intro h1 {
    font-size: 42px;
  }

  .photo-row {
    flex-direction: column;
    gap: 35px;
  }

  .ampersand {
    margin-top: 0;
    font-size: 56px;
  }

  .photo-frame {
    width: 90vw;
    max-width: 430px;
    height: 470px;
  }

  .photo-label {
    font-size: 22px;
    letter-spacing: 4px;
  }
}

.photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}





.cafe-page {
  background: #f8f4ed;
  min-height: calc(100vh - 115px - 80px);
  padding: 70px 40px 80px;
}


    .cafe-text {
  font-size: 48px;
  font-weight: bold;
      text-align: center; /* Simplified for validity */

}








/* === Form Styles (Desktop/Default Styles) === */

form {
    border: 1px solid gray; /* Add this: 1px is "thin", solid is the style, #000000 is black */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #d8d6d0;
    padding: 20px;
    max-width: 600px;
    margin: 0; /* Changed from 'left' to '0' as 'left' is not a valid margin value */
    font-size: 20px;
    z-index: 10;
    color: #030303;
    text-align: left;
}

/* 1. Set up the container to handle side-by-side layout */
.flex-wrapper {
    display: flex;
    flex-wrap: wrap; /* This is the key: it drops items down instead of overlapping */
    gap: 20px; /* Space between text and image */
    align-items: flex-start;

}
  #message {
    min-height: 150px;
    max-height: 400px;
}
/* Media Query for Form on Mobile */
@media only screen and (max-width: 600px) {
    form {
        padding: 20px; /* Reduced padding for mobile */
        width: 100%; /* Take full width on mobile */
    }
}




.form-group {
     /* Use display: block or flex-direction: column for stacked layout */
    width: 100%;

    /* Aligns items vertically in the middle of the row */
    align-items: center; 
    margin-bottom: 15px; /* Space between rows */
    /* By default, this will align labels and inputs horizontally */
}


.form-group label {
    color:#062205;
    flex-basis: 150px; /* Set a fixed width for labels */
    margin-right: 5px; /* Space between label and input */
    font-size: 20px;

    margin-bottom: 5px; /* Adds space between the label and the input below it */
    text-align: left; /* Ensures the label text is left-aligned within its block */
}


.form-group input, .form-group textarea {
    flex-grow: 1; /* Allow input/textarea to take remaining space */
    padding: 5px;
    border: 1px solid #062205;
    border-radius: 4px;
    /* Inherits font from body, but you might want to specify size */
    font-size: 20px;
     /* Remove 'flex-grow: 1;' if you use a fixed pixel width */
    height: 40px;
    display: block; /* Forces the input/textarea to take its own line */
    width: 80%; /* Makes the input stretch to the full width of its container (the table cell) */
    box-sizing: border-box; /* Ensures padding and borders are included in the 100% width */
    margin-bottom: 5px; /* Adds space after the input/textarea before the next form group */
    text-align: left; /* Ensures text entry starts from the left */
}

/*  Ensure the input boxes fill the remaining space */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    /* Makes the input fields take up the rest of the available width */
    flex-grow: 1; 
    padding: 0px;
    border: 1px solid #090808;
    font-size: 16px; /* Adjust font size as needed */
}

.form-group-button {
 /* display: block is usually better for centering margins */
    display: inline-block; 
    font-size: 20px;
    background-color:  rgb(175, 175, 175);
    border: 1px solid  gray;
    padding: 5px 10px; /* Add padding to give it size */
    text-align: center;
    color: whitesmoke !important; /* Add the !important keyword */
    margin: 10px auto; 
  }

input.form-group-button {
    color: whitesmoke !important; /* The !important tag forces this rule to apply */
}


.page-container {
    width: 100%;            /* content width */
    margin: 0 auto;        /* center horizontally */
    display: flex;
    flex-direction: column;
    /* KEY CHANGE */
    flex: 1;

}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info,
.contact-form {
  flex: 1 1 400px;
  min-width: 300px;
}











@media screen and (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}


.contact-info {
    width: 50%;
}

.contact-form-wrapper {
    width: 50%;
}

.contact-form {
    width: 100%;
}


 .contact-text {
    color:  #0b2f46;
    backdrop-filter: blur(10px);
    /* ADD THIS: Softens the edges */
    /* 0px offsets, 20px blur, 10px spread */
box-shadow: none;
    text-align: justify; /* Simplified for validity */
    line-height: 1.5;
    padding: 20px; /* Increased padding helps the fade look more natural */
    border-radius: 15px; /* Larger radius looks softer than 5px */
    width: 100%;
    font-size: 25px;
}


main {
  flex: 1;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  text-align: center;
  color: #0b2f46;
}

.contact-header {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin: 0 0 35px;
  color: #0b2f46;
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.contact-info,
.contact-form-wrapper {
  flex: 1;
  min-width: 0;
}

.contact-text {
  color: #0b2f46;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  margin: 0;
}

.contact-form {
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background: #075c72;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}



.hut-main {

  padding: 70px 60px;

}

.hut-intro {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

.hut-photo-box {
  flex: 0 0 420px;
}

.hut-photo {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.hut-text-box {
  flex: 1;
}

.hut-text-box h1 {
  font-size: 48px;
  margin-bottom: 25px;
  text-align: left;
}

.hut-text-box p {
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.hut-divider {
  border: none;
  height: 2px;
  background-color: white;
  max-width: 1350px;
  margin: 60px auto 25px;
}

.hut-fresh-section {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

.hut-fresh-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}


.hut-carousel-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hut-carousel-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

/* Mobile */
@media screen and (max-width: 900px) {
  .hut-main {
    padding: 20px 15px;
  }

  .hut-intro {
    flex-direction: column;
    gap: 20px;
  }

  .hut-photo-box {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  .hut-text-box h1,
  .hut-text-box p {
    text-align: center;
  }

  .hut-carousel-row img {
    width: 100%;
    max-width: 350px;
  }
}



.catering-text {
  font-size: 18px;
  line-height: 1.6;

}

  .catering-header  {
    color: #0b2f46;
     text-align: center;
     font-size: 30px;
     font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1;
    /* Optional padding/margin if needed, but not a huge fixed margin-left */
    font-weight: bold;
    white-space: nowrap;
    padding: 0px;
    border-radius: 0px;
}


.catering-page {
  background: #f8f3ec;
  color: #07334a;
}

/* HERO */
.catering-hero {
  min-height: 420px;
background:
    linear-gradient(rgba(0, 30, 45, 0.25), rgba(0, 30, 45, 0.25)),
    url("Catering Table Wide.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 8%;
}

.hero-overlay {
  max-width: 620px;
  color: white;
}

.hero-overlay h1 {
  font-size: 68px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-overlay p {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 30px;
}

.hero-button,
.catering-cta a {
  display: inline-block;
  background: #006b80;
  color: white;
  padding: 15px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* INTRO */
.catering-intro {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}

.intro-text h2 {
  font-size: 36px;
  margin-bottom: 5px;
}

.intro-text h3 {
  color: #006b80;
  font-size: 26px;
  margin-bottom: 20px;
}

.intro-text p {
  line-height: 1.7;
  font-size: 17px;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 25px;
}

.event-list span {
  background: white;
  padding: 13px 16px;
  border-left: 4px solid #006b80;
  border-radius: 6px;
  font-weight: bold;
}

/* CARDS */
.catering-cards {
  max-width: 1150px;
  margin: 30px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  position: relative;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  color: white;
}

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

.card div {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.65));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

/* GALLERY */
.catering-gallery {
  max-width: 1150px;
  margin: 50px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.catering-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}

/* CTA */
.catering-cta {
  background: #006b80;
  color: white;
  text-align: center;
  padding: 60px 30px;
  margin-top: 60px;
}

.catering-cta h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.catering-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

.catering-cta a {
  background: transparent;
  border: 2px solid white;
}

/* MOBILE */
@media (max-width: 850px) {
  .catering-hero {
    min-height: 340px;
    padding: 60px 30px;
  }

  .hero-overlay h1 {
    font-size: 46px;
  }

  .catering-intro,
  .catering-cards {
    grid-template-columns: 1fr;
  }

  .catering-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-list {
    grid-template-columns: 1fr;
  }
}

  .wholesale-header  {
    color: #0b2f46;
     text-align: center;
     font-size: 30px;
     font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1;
    /* Optional padding/margin if needed, but not a huge fixed margin-left */
    font-weight: bold;
    white-space: nowrap;
    padding: 0px;
    border-radius: 0px;
}

.wholesale-page {
  background: #f7f3ec;
  color: #07364d;
}

.wholesale-hero {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 35px;
}

.section-label {
  font-weight: 800;
  color: #0b8190;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.wholesale-hero h1 {
  font-size: 64px;
  line-height: 1;
  margin: 0;
  letter-spacing: 2px;
}

.accent-line {
  width: 70px;
  height: 4px;
  background: #0b8190;
  margin: 28px 0;
}

.wholesale-hero h2 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.wholesale-hero p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.wholesale-button,
.cta-button {
  display: inline-block;
  margin-top: 18px;
  background: #00667a;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}

.wholesale-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

.wholesale-solutions {
  background: #fffdf9;
  padding: 55px 35px 70px;
  text-align: center;
  border-top: 1px solid #ddd6ca;
}

.wholesale-solutions h3,
.wholesale-gallery-section h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 35px;
}

.solution-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.solution-card {
  background: #f7f3ec;
  padding: 28px 18px;
  border-radius: 10px;
  border: 1px solid #e3ddd4;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.solution-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.solution-card h4 {
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

.solution-card p {
  font-size: 14px;
  line-height: 1.5;
}

.wholesale-gallery-section {
  padding: 65px 35px;
  text-align: center;
  background: linear-gradient(#eef8f8, #f7f3ec);
}

.wholesale-gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wholesale-gallery img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 10px;
}

.wholesale-cta {
  max-width: 1180px;
  margin: 0 auto 70px;
  background: linear-gradient(135deg, #0b8190, #06364d);
  color: white;
  padding: 42px 45px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.4fr .9fr auto;
  gap: 35px;
  align-items: center;
}

.wholesale-cta h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.wholesale-cta p {
  line-height: 1.6;
}

.wholesale-cta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wholesale-cta li {
  margin-bottom: 10px;
}

.wholesale-cta li::before {
  content: "✓ ";
  font-weight: bold;
}

.cta-button {
  background: white;
  color: #00667a;
  text-align: center;
}

/* Mobile */
@media (max-width: 900px) {
  .wholesale-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 45px 22px;
  }

  .wholesale-hero h1 {
    font-size: 46px;
  }

  .wholesale-hero-image img {
    height: 360px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wholesale-gallery {
    grid-template-columns: 1fr;
  }

  .wholesale-cta {
    grid-template-columns: 1fr;
    margin: 0 22px 50px;
  }
}

@media (max-width: 520px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

    /* INTRO */
    .intro {
      text-align: center;

    }

    .intro p {
      max-width: 95%;
      margin: auto;
      font-size: 1.3rem;

    }



    .cafe-page {
  background: #f8f4ed;
  padding: 45px 40px 35px;
  flex: 1;
}

.cafe-hero {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.cafe-eyebrow {
  color: #3d9ba6;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 15px;
  margin-bottom: 10px;
}

.cafe-hero h1 {
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 500;
  color: #082f46;
  margin: 0;
}

.cafe-hero h2 {
  font-family: cursive;
  font-size: 58px;
  color: #158f9b;
  font-weight: 400;
  margin: -5px 0 10px;
}

.cafe-subtext {
  font-size: 20px;
  line-height: 1.4;
  color: #082f46;
  margin: 0 0 22px;
}

.cafe-subtext strong {
  color: #075c72;
}

.cafe-image-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.cafe-main-image {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.cafe-badge {
  position: absolute;
  left: 30px;
  bottom: 22px;
  width: 170px;
  height: 170px;
  background: #075c72;
  color: white;
  border-radius: 50%;
  border: 4px solid #3d9ba6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 17px;
  line-height: 1.25;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.cafe-badge p {
  margin: 0;
}

.cafe-badge em {
  font-family: Georgia, serif;
  font-size: 18px;
}

.cafe-features {
  max-width: 920px;
  margin: 14px auto 0;
  background: rgba(255,255,255,.55);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: #082f46;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

@media (max-width: 900px) {
  .cafe-hero h1 {
    font-size: 48px;
  }

  .cafe-hero h2 {
    font-size: 42px;
  }

  .cafe-badge {
    position: static;
    margin: 18px auto 0;
  }

  .cafe-features {
    grid-template-columns: 1fr;
  }
}


.team-page,
.cafe-page {
  min-height: auto;
}



/* CONTACT PAGE FIX */

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.contact-info,
.contact-form-wrapper {
  flex: 1 1 400px;
  width: auto !important;
  min-width: 300px;
  box-sizing: border-box;
}

.contact-form {
  width: 100% !important;
  max-width: none;
  box-sizing: border-box;
}

.contact-text {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-wrapper {
    width: 100% !important;
    flex: none;
    min-width: 0;
  }
}