/* ============================
   BASE
============================= 


mute yellow #ebd5a5;

dark sage #2c3a34;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background: #f8f5ef;
  color: #111e18;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

h1, h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #111e18;

}

h2 {
    font-family: "Marcellus", serif;
  font-weight: 400;
  color: #111e18;
  font-size: 2rem;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  background-color: #ebd5a5;
  color: #2c3a34;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2c624a;
  margin-bottom: 16px;

        display: inline-block; /* 👈 key */
  margin-bottom: 16px;
  border-bottom: 1px solid  #ebd5a5;
}



/* ============================
   LAYOUT
============================= */

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* ============================
   HEADER
============================= */
.demo-bar {
  background-color: #2c3a34;
  padding: 10px 15px;
}
.summit-btn {
  color: white;
}

.demo-bar a:hover {
  color:#8a6a2c;
}

.site-header {
  padding: 24px 0;
  background: #f8f5ef;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c624a;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
    position: relative;
    color: #2c624a;
  font-size: 0.95rem;
}


.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #c49e53;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a:hover {
  color: #c49e53;
}

.main-nav a.active {
    color:  #c49e53;
}


@media (max-width: 768px) {

  .site-header {
    padding: 18px 0 10px;
  }

  /* STACK LOGO + NAV */
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* LOGO ON ITS OWN LINE */
  .logo {
    margin-bottom: 14px;
    font-size: 1.1rem;
    text-align: center;
  }

  /* NAV UNDERNEATH */
  .main-nav {
    display: flex;
    justify-content: center;   /* keeps it calm + centered */
    gap: 18px;
    flex-wrap: wrap;           /* allows wrapping on small screens */
    width: 100%;
  }

  /* LINKS */
  .main-nav a {
    font-size: 0.95rem;
  }

}
/*==============================================================
   HERO
============================= */

.hero {
  padding: 20px 0 100px;
  
}


.hero-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  


}
.hero-text {
      flex: 1.2; /* more space */
    max-width: 600px;
}

.hero-image {
      flex: 0.8; /* slightly less */
    width: 40%;
  display: flex;
  justify-content: right;
  align-items: center;

}
.hero-image img {
  border-radius: 18px;
  width: 400px;
  height: auto;

}

.hero-eyebrow {
    display: inline;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2c624a;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  letter-spacing: 0.5px;
 
}

.hero-intro {
  max-width: 520px;
  font-size: 1.15rem;

  color: #2c2c2c;
 
}

/* ============================
   MOBILE
============================= */

@media (max-width: 900px) {
  .site-header {
    padding: 18px 0 10px;
  }

  .site-header .container {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 14px;
    text-align: center;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    width: 100%;
  }

  .main-nav a {
    font-size: 0.95rem;
  }

  .hero {
    padding: 20px 0 20px;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero-text {
    width: 100%;
    order: 2;
   
    padding: 20px 0;
  }

  .hero-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    order: 1;
  }

  .hero-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
  }

  .hero-btn {
    display: none;
  
  }

  .hero-eyebrow {
    font-size: .8rem;
    letter-spacing: 0.14em;
    line-height: 1.6;
   
    padding: 20px 0;
   
   
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 10px 0;
  }

  .hero-intro {
    font-size: 1rem;
    line-height: 1.65;
   letter-spacing: .05rem;
    max-width: 500px;
  
  }
}

/* ===============================================================
   WHO THIS IS FOR
=============================================================== */


/* ============================
   SECTION 1: INTRO
============================= */

#who-for-intro {
  padding: 80px 30px;
  background: white;
}

.who-for-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  padding-left: 40px;
  padding-bottom: 20px;
 
}


#who-for-intro h2 {
  margin-bottom: 22px;
}

 .who-for-description {
  max-width: 760px;
  margin-bottom: 18px;
  
}
#who-for-intro .who-for-description {
  font-size: 1rem;
}

.who-for-description:last-of-type {
  margin-bottom: 0;
}


/* ============================
   SECTION 2: SHIFT
============================= */

#who-for-shift {
  padding: 95px 30px;
  position: relative;
  overflow: hidden;

  background-color: #e4efe8;
  background-image: url("images/floral.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.who-for-shift-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.who-for-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
 background-color: rgba(255, 255, 255, 0.65);
  padding: 20px 20px 30px;;
  border-radius: 18px;
 
}

/* centered block with left-aligned text */
.who-for-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

.who-for-column h3,
.who-for-column ul {
  width: 100%;
  max-width: 320px;
  text-align: left;
}

.who-for-column h3 {
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 1.4rem;
}

.who-for-column ul {
  margin: 0;
  padding-left: 20px;
}

.who-for-column li {
  margin-bottom: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.who-for-column li:last-child {
  margin-bottom: 0;
}

.who-for-left {
  color: #444a46;
}

.who-for-right {
  color: #1f2e26;
}


/* ============================
   TABLET
============================= */

@media (max-width: 900px) {
  #who-for-intro,
  #who-for-shift {
    padding: 70px 22px;
  }

  .who-for-columns {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  #who-for-shift {
    background-position: center;
    background-size: cover;
  }
}


/* ============================
   MOBILE
============================= */

@media (max-width: 560px) {
  #who-for-intro,
  #who-for-shift {
    padding: 60px 18px;
  }

  .who-for-column ul {
    padding-left: 18px;
  }
}
/* ==============================================================
   SERVICES
============================= */

.services {
  padding: 100px 0px 120px;
}

.services-header {
  max-width: 700px;
  margin-bottom: 50px;
}



.services-header h2 {
  margin: 0;
}

.services-grid {
  display: flex;
  gap: 30px;
}


/* Mobile */

@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==========================================================
   ABOUT PREVIEW
============================= */

.about-preview {
  padding: 100px 0;
background: white;
}

.about-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
 
}

.about-text {
width: 55%;
}

.about-image {
    width: 40%;

}

.about-text h2 {
  margin: 0 0 20px;
}

.about-text p {
  margin: 0 0 18px;
  color: #2c2c2c;
}

.about-text .btn {
  margin-top: 10px;
}

.about-image {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 350px;
   height: 500px; /* 👈 control height here */

  overflow: hidden; /* 👈 IMPORTANT: crops the image */
}

.about-image img {
  border-radius: 18px;
  max-width: 100%;
  height: 100%;
    object-position: center top;
   object-fit: cover; /* 👈 THIS does the cropping */
}

@media (max-width: 900px) {

  .about-preview {
    padding: 100px 0;
    
  }

  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-text {
    order: 1;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
   
  }

  .about-text .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .about-text h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 18px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 18px;
  }

  .about-text .btn {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
    text-align: center;
  }

  .about-image {
    order: 2;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-top: 50px;
  }

  .about-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
  }
}
/* ============================
   FINAL CTA
============================= */

.final-cta {
  padding: 110px 30px;
  background-color: #f7f4ef;
  background-image:
    linear-gradient(rgba(247, 244, 239, 0.78), rgba(247, 244, 239, 0.78)),
    url("images/floral.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, 1400px auto;
  border-top: 1px solid rgba(196, 158, 83, 0.6);
}

.final-cta-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}



.final-cta h2 {
  color: #1f2a25;
  margin: 0 0 24px;
}

.final-cta-text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #42514a;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 80px 20px;
    background-size: cover, 800px auto;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }

  .final-cta-text {
    font-size: 1rem;
  }
}
/*===============================================================================
SERVICES PAGE ================================================================
==============================================================================*/

/* =========================
   HERO
========================= */
.services-hero {
  padding: 120px 0 90px;
}

.services-hero-inner {
  max-width: 720px;
  padding: 30px 50px;
}

.services-hero h1 {
  margin-bottom: 18px;
}

.services-hero p {
  max-width: 620px;
  font-size: 1.05rem;
  color: #4c544c;
}

.services-hero .eyebrow {
  display: inline-block;
  border-bottom: 1px solid #c49e53;
}

/* =========================
   INTRO
========================= */
.services-intro {
  position: relative;
  overflow: hidden;
  padding: 60px 30px;
  background-color: #e4efe8;
  background-image: url("images/floral.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.intro-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,252,247,0.95) 100%);
  border: 1px solid rgba(44, 58, 52, 0.08);
  border-radius: 30px;
  padding: 52px;
  box-shadow: 0 22px 50px rgba(44, 58, 52, 0.07);
}

/* =========================
   SECTION HEADING
========================= */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  padding: 65px 0 110px;
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(235, 213, 165, 0.08), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(196, 158, 83, 0.08), transparent 16%);
  pointer-events: none;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* =========================
   SINGLE CLEAN CARD
========================= */
.service-page-card {
  position: relative; /* IMPORTANT */
  background: #ffffff;
  border: 1px solid rgba(44, 58, 52, 0.08);
  border-radius: 28px;
  padding: 48px 28px 36px; /* extra top space for badge */
  box-shadow: 0 14px 30px rgba(44, 58, 52, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

    display: flex;
  flex-direction: column;
}

.service-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(44, 58, 52, 0.08);
}

.service-page-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-page-card p {
  margin: 0;
  color: #49524d;
  line-height: 1.7;
}

.service-page-card .btn {
    margin-top: auto;
}
/* =========================
   BADGE
========================= */
/* BADGE */
.service-badge {
  position: absolute;
  top: -20px;     /* pulls it above the card */
  left: 28px;     /* aligns with content padding */

  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ebd5a5;
  color: #8a6a2c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  left: 50%;
transform: translateX(-50%);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .services-page-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 110px 0 85px;
  }

  .services-hero-inner {
    padding: 20px 0;
  }

  .intro-panel {
    padding: 36px 24px;
  }
}

@media (max-width: 560px) {
  .service-page-card {
    padding: 30px 22px;
  }
}
/* =========================
   EXPECT SECTION
========================= */
.expect-section {
  padding: 90px 30px;
  background: #ffffff;
}

/* Layout */
.expect-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.expect-left h2 {
  margin: 14px 0 30px;
}

/* LIST STYLE (no boxes) */
.expect-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(44, 58, 52, 0.12);
}

.expect-row {
  padding: 26px 0;
  border-bottom: 1px solid rgba(44, 58, 52, 0.12);
}

.expect-row h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #1f2a25;
}

.expect-row p {
  margin: 0;
  color: #42514a;
  max-width: 520px;
}

/* IMAGE */
.expect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(44, 58, 52, 0.08);
}

/* MOBILE */
@media (max-width: 900px) {
  .expect-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expect-image {
    order: -1;
  }
}
/* =========================
   FAQ
========================= */
.faq-section {
  padding: 90px 30px;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(235, 213, 165, 0.10), transparent 18%);
  pointer-events: none;
}

.faq-item {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(44, 58, 52, 0.08);
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(44, 58, 52, 0.04);
}
.eyebrow-faq {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2c624a;
  display: inline-block; /* 👈 key */
  border-bottom: 1px solid  #ebd5a5;
 
}

.faq-heading {
  margin: 5px 0;
}
/* =========================
   CTA
========================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 30px;

  background-color: #e4efe8;
  background-image: url("images/floral.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.cta-panel {
  position: relative;
  text-align: center;
  padding: 52px;
  border-radius: 30px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.85) 0%,
    rgba(255,252,247,0.95) 100%
  );

  border: 1px solid rgba(44, 58, 52, 0.08);
  box-shadow: 0 22px 50px rgba(44, 58, 52, 0.07);
}

.cta-panel h2 {
  color: #1f2a25;
}

.cta-panel p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #42514a;
}

.cta-panel .cta-btn,
.cta-panel .btn {
  margin-top: 14px;
}

.cta-panel .btn {
  margin-top: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .service-card-featured {
    transform: none;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 110px 0 85px;
  }

  .intro-panel,
  .expect-panel,
  .cta-panel {
    padding: 36px 24px;
  }
}

@media (max-width: 560px) {
  .price {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px 22px;
  }
}


/*===============================================================================
ABOUT PAGE 
=============================================================================*/

/* =========================
   ABOUT HERO
========================= */
.about-hero {
  padding: 90px 30px 70px;
  background: #ffffff;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text h1 {
  margin: 14px 0 22px;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #42514a;
  margin-bottom: 18px;
}

.about-hero-text p:not(.eyebrow):not(.about-intro) {
  color: #42514a;
}

.about-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(44, 58, 52, 0.08);
}

/* =========================
   ABOUT STORY
========================= */
.about-story {
  position: relative;
  overflow: hidden;
  padding: 60px 30px 90px;
  background-color: #e4efe8;
  background-image: url("images/floral.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.about-story-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,252,247,0.95) 100%);
  border: 1px solid rgba(44, 58, 52, 0.08);
  border-radius: 30px;
  padding: 52px;
  box-shadow: 0 22px 50px rgba(44, 58, 52, 0.07);
}

.about-story-panel h2 {
  margin: 14px 0 24px;
}

.about-story-content {
  max-width: 760px;
}

.about-story-content p {
  color: #42514a;
}

.about-story-content p + p {
  margin-top: 18px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-hero {
    padding: 70px 20px 50px;
  }

  .about-story {
    padding: 50px 20px 70px;
  }

  .about-story-panel {
    padding: 36px 28px;
  }
}

/*==============================================================================
CONTACT PAGE 
=============================================================================*/

/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  padding: 90px 30px 70px;
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.contact-intro h1 {
  margin: 14px 0 22px;
}

.contact-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #42514a;
  margin-bottom: 18px;
}

.contact-intro p:not(.eyebrow):not(.contact-lead) {
  color: #42514a;
}

/* =========================
   FORM PANEL
========================= */
.contact-form-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,252,247,0.96) 100%);
  border: 1px solid rgba(44, 58, 52, 0.08);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 22px 50px rgba(44, 58, 52, 0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 0.95rem;
  color: #1f2a25;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(44, 58, 52, 0.14);
  border-radius: 16px;
  padding: 16px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #1f2a25;
  background: rgba(255,255,255,0.92);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 160px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(196, 158, 83, 0.75);
  box-shadow: 0 0 0 3px rgba(196, 158, 83, 0.12);
}

/* =========================
   CONTACT NOTE
========================= */
.contact-note {
  position: relative;
  overflow: hidden;
  padding: 60px 30px 90px;
  background-color: #e4efe8;
  background-image: url("images/floral.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.contact-note-panel {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,252,247,0.95) 100%);
  border: 1px solid rgba(44, 58, 52, 0.08);
  border-radius: 30px;
  padding: 52px;
  box-shadow: 0 22px 50px rgba(44, 58, 52, 0.07);
}

.contact-note-panel h2 {
  margin: 14px 0 18px;
}

.contact-note-panel p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #42514a;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-hero {
    padding: 70px 20px 50px;
  }

  .contact-note {
    padding: 50px 20px 70px;
  }

  .contact-form-panel,
  .contact-note-panel {
    padding: 36px 28px;
  }
}

/*=====================================================================
FOOTER 
====================================================================*/
/* =========================
   FOOTER
========================= */
.site-footer {
  background: #f5f8f5;
  padding: 70px 30px 30px;
  border-top: 1px solid rgba(196, 158, 83, 0.6);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* MAIN LAYOUT */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 42px;
}

/* LEFT */
.footer-left {
  max-width: 600px;
}

.footer-logo {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  line-height: 1.08;
color: #2c624a;
  margin: 0 0 20px;
}

.footer-tagline {
  color: #42514a;
  line-height: 1.65;
  font-size: 1rem;
  margin: 0 0 28px;
  max-width: 620px;
}

.footer-contact p {
  margin: 0 0 12px;
  color: #42514a;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-contact a {
  color: #42514a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #c49e53;
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  min-width: 240px;
}

/* NAV IN A COLUMN */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  text-decoration: none;
  color: #1f2a25;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: #c49e53;
}

/* CTA */
.footer-cta {
  background: transparent;
  color: #2c624a;
  border: 1px solid #2c624a;
  padding: 10px 15px;
}

.footer-cta:hover {
  background: #2c624a;
  color: #fff;
}
/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(44, 58, 52, 0.08);
  padding-top: 22px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #6a756f;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 56px 20px 26px;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-logo h3 {
    font-size: 1rem;
   color: #2c624a;
  }

  .footer-right {
    align-items: center;
    min-width: auto;
  }

  .footer-nav {
    align-items: center;
  }
}