/* =========================================================
   STYLE C
   Cassiopeia Base Framework
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Montserrat:wght@300;400;500&display=swap');

/* =========================
   ROOT VARIABLES
========================= */

:root {
  --style-c-bg: #c6d0c5;
  --style-c-surface: #ffffff;
  --style-c-soft: #ececea;
  --style-c-text: #4a4a4a;
  --style-c-heading: #425e32;
  --style-c-accent: #7d8a7b;
  --style-c-line: #e5e5e5;
  --style-c-shadow: 0 10px 30px rgba(0,0,0,0.04);
  --style-c-radius: 18px;
  --style-c-width: 1580px;
}

/* =========================
   GLOBAL
========================= */

body.site {
  background: var(--style-c-bg);
  color: var(--style-c-text);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--style-c-heading);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}
@media (width <= 991.98px) {
  .container-header .mod-menu .mod-menu__sub a, .container-header .mod-menu .mod-menu__sub span {
    color: #58585a !important;
  }
}
h1 {
  font-size: clamp(2.8rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  margin: 0 0 1.2rem;
}
.container-header .navbar-toggler {
  color: green;
  cursor: pointer;
  border: 1px solid #fff;
}
ul,
ol {
  margin: 0 0 1.5rem 1.2rem;
  padding: 0;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.container-header {
  background: #ffffff;
  border-bottom: 1px solid var(--style-c-line);
  position: relative;
  z-index: 100;
}

.container-header .container-nav {
  max-width: var(--style-c-width);
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.container-header .grid-child.container-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: nowrap;
}

/* LOGO */

.navbar-brand {
  flex: 0 0 auto;
  margin: 0;
}

.navbar-brand img,
.brand-logo img,
.container-header .navbar-brand img {
  width: 380px;
  max-width: 380px;
  max-height: none;
  height: auto;
}

/* MENU MODULE */

.container-header .mod-menu,
.container-header .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2.4rem;
  flex-wrap: nowrap;
}

/* NAV LINKS INCLUDING PARENT ITEMS */

.container-header .navbar-nav .nav-link,
.container-header .navbar-nav .nav-item > a,
.container-header .navbar-nav .nav-item > span,
.container-header .mod-menu > li > a,
.container-header .mod-menu > li > span,
.container-header .mod-menu .dropdown-toggle,
.container-header .mod-menu .mod-menu__heading {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  line-height: 1.2;
  color: #2f2f2f;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.3rem 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.container-header .navbar-nav .nav-link:hover,
.container-header .navbar-nav .nav-item > a:hover,
.container-header .mod-menu > li > a:hover,
.container-header .mod-menu .dropdown-toggle:hover {
  opacity: 0.7;
}

/* DROPDOWNS */

.mod-menu__sub,
.dropdown-menu {
  background: #ffffff;
  border: 1px solid var(--style-c-line);
  border-radius: 14px;
  padding: 1rem 0;
  min-width: 280px;
  box-shadow: var(--style-c-shadow);
}

.mod-menu__sub li a,
.dropdown-menu .dropdown-item,
.container-header .mod-menu__sub li a,
.container-header .dropdown-menu .dropdown-item {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #2f2f2f;
  padding: 0.7rem 1.5rem;
  background: transparent;
  white-space: nowrap;
}

.mod-menu__sub li a:hover,
.dropdown-menu .dropdown-item:hover {
  background: rgba(0,0,0,0.03);
  color: #2f2f2f;
}

/* CHEVRON */

.mod-menu .dropdown-toggle::after,
.nav-item.dropdown .nav-link::after {
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* =========================
   PAGE WRAPPER
========================= */

.style-c-page {
  background: var(--style-c-bg);
}

.style-c-section {
  padding: 2rem 2rem;
}

.style-c-container {
  max-width: var(--style-c-width);
  margin: 0 auto;
}

/* =========================
   HERO
========================= */

.cp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cp-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.cp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 5rem;
}

.cp-hero__panel {
  background: rgba(255,255,255,0.92);
  padding: 2.5rem;
  border-radius: var(--style-c-radius);
  backdrop-filter: blur(3px);
  box-shadow: var(--style-c-shadow);
}

.cp-logo {
  max-width: 240px;
  margin-bottom: 2rem;
}

/* =========================
   INTRO BLOCK
========================= */

.style-c-intro {
  margin-top: -4rem;
  position: relative;
  z-index: 5;
}

.style-c-panel {
  background: var(--style-c-surface);
  padding: 3rem;
  border-radius: var(--style-c-radius);
  box-shadow: var(--style-c-shadow);
}

/* =========================
   SPLIT LAYOUT
========================= */

.style-c-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.style-c-image-placeholder {
  background: #dcdcdc;
  min-height: 520px;
  border-radius: var(--style-c-radius);
}

/* =========================
   CARDS
========================= */

.style-c-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.style-c-card {
  background: var(--style-c-surface);
  padding: 2rem;
  border-radius: var(--style-c-radius);
  box-shadow: var(--style-c-shadow);
}

/* =========================
   CTA
========================= */

.style-c-cta {
  text-align: center;
  padding: 5rem 2rem;
}

.style-c-button {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid var(--style-c-heading);
  border-radius: 999px;
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.style-c-button:hover {
  background: var(--style-c-heading);
  color: #fff;
}

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

.footer {
  background: #ffffff;
  border-top: 1px solid var(--style-c-line);
  padding: 0rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

  .container-header .grid-child.container-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .navbar-brand {
    width: 100%;
    text-align: center;
  }

  .navbar-brand img,
  .brand-logo img,
  .container-header .navbar-brand img {
    margin: 0 auto;
    width: 300px;
    max-width: 300px;
  }

  .container-header .mod-menu,
  .container-header .navbar-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .container-header .navbar-nav .nav-link,
  .container-header .navbar-nav .nav-item > a,
  .container-header .navbar-nav .nav-item > span,
  .container-header .mod-menu > li > a,
  .container-header .mod-menu > li > span,
  .container-header .mod-menu .dropdown-toggle,
  .container-header .mod-menu .mod-menu__heading {
    font-size: 18px !important;
  }

  .style-c-split,
  .style-c-grid {
    grid-template-columns: 1fr;
  }

  .cp-hero {
    min-height: 70vh;
  }

  .cp-hero__content {
    padding-bottom: 3rem;
  }

  .cp-hero__panel,
  .style-c-panel,
  .style-c-card {
    padding: 2rem;
  }

  .style-c-section {
    padding: 4rem 1.5rem;
  }

  .style-c-image-placeholder {
    min-height: 340px;
  }

}
.style-c-section--tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.style-c-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--style-c-radius);
  box-shadow: var(--style-c-shadow);
}

.style-c-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  text-align: center;
}

.style-c-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.style-c-quote cite {
  font-style: normal;
  font-size: 0.95rem;
}
/* =========================================================
   SLIM INTRO BANNER
========================================================= */

.cp-banner-intro {
  background: #f4f1ed;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.cp-banner-intro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #3e4a49;
  font-weight: 400;
}
/* =========================
   STYLE C CTA MODULE
========================= */

.style-c-cta-module {
  padding: 3rem 1.5rem;
}

.style-c-cta-inner {
  max-width: var(--style-c-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.style-c-cta-content,
.style-c-cta-contact {
  background: #fff;
  border-radius: var(--style-c-radius);
  padding: 3rem;
  box-shadow: var(--style-c-shadow);
}

.style-c-cta-content h2 {
  max-width: 720px;
}

.style-c-contact-item p,
.style-c-contact-item a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.style-c-contact-item h3 {
  margin-bottom: 0.4rem;
}

/* MOBILE */

@media (max-width: 768px) {

  .style-c-cta-module {
    padding: 2rem 1rem;
  }

  .style-c-cta-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .style-c-cta-content,
  .style-c-cta-contact {
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .style-c-cta-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .style-c-cta-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .style-c-cta-content .btn,
  .style-c-cta-content .btn-info {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .style-c-cta-contact {
    margin: 0;
  }

}
/* ==========================================
   THEME BUTTON
========================================== */

.style-c-cta-module .btn.btn-info {
  background-color: #6f8a6d !important;
  border-color: #6f8a6d !important;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(111, 138, 109, 0.18);
}

.style-c-cta-module .btn.btn-info:hover {
  background-color: #5f775d !important;
  border-color: #5f775d !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(111, 138, 109, 0.24);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

  .style-c-cta-module {
    padding: 2rem;
  }

  .style-c-cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* =========================
   FOOTER
========================= */

.style-c-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.style-c-footer-inner {
  max-width: var(--style-c-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 2rem;
  align-items: center;
}

.style-c-footer-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.style-c-footer-left img {
  width: auto;
  height: auto;
  max-height: 90px;
}

.style-c-instagram {
  max-height: 70px;
  width: auto;
  display: block;
}

.style-c-footer-right {
  text-align: right;
  
}

.style-c-footer-right p {
  margin: 0 0.75rem 0 0.75rem;
}

.style-c-footer-right a {
  color: inherit;
}

.style-c-instagram {
  width: 36px;
  height: 36px;
  margin-left: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.style-c-instagram:hover {
  transform: scale(1.08);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .style-c-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .style-c-footer-left {
    justify-content: center;
  }

  .style-c-footer-right {
    text-align: center;
  }

  .style-c-instagram {
    margin: 0 auto 1rem;
  }

}