/**
 * Annam Farms stylesheet.
 *
 * Single consolidated stylesheet: previously the site loaded the full Jhana
 * ("yolo") theme CSS (~580KB) plus Animate.css and Font Awesome (~650KB
 * combined) for a header/footer that only actually uses a few dozen of
 * those selectors — the rest (WooCommerce, sliders, portfolios, megamenu
 * skins, etc.) was dead weight the browser still had to download and parse.
 *
 * This file keeps only what inc/header.php and inc/footer.php actually
 * render, in three parts, in the theme's original cascade order:
 *   1. Theme chrome        — the subset of yolo.css needed for the header
 *                            nav (desktop + mobile), sticky-header states
 *                            and .container centering.
 *   2. Theme overrides     — Annam brand colors/fonts + our logo, sticky
 *                            and footer fixes (was annam-theme-overrides.css).
 *   3. Site styles          — the page content itself (hero, sections,
 *                            forms, footer) — always custom, theme-free.
 * Regenerate part 1 with PurgeCSS against inc/*.php + public/*.php if the
 * header/footer markup changes and something looks unstyled.
 */

/* === 1. Theme chrome (trimmed yolo.css) === */
@supports (--css:variables) {
  :root {
    --h1_font_size: 48px;
    --h2_font_size: 42px;
    --h3_font_size: 32px;
    --h4_font_size: 24px;
    --text_color: #606060;
    --primary_color: #00ad8d;
    --heading_color: #1b2336;
    --menu_font: Josefin Sans;
    --menu_font_weight: 700;
    --menu_font_size: 18px;
    --heading_font: Josefin Sans;
    --heading_font_weight: 700;
    --primary_font: Poppins;
    --primary_font_weight: 400;
    --primary_font_size: 14px;
    --logo_mobile_padding: 15px;
    --main_menu_mobile_height: 100px;
    --header_3_nav_distance: 20px;
    --logo_padding_top: 10px;
    --logo_padding_bottom: 10px;
    --header_3_nav_bg_color: #ffffff;
    --header_3_nav_text_color: #3f3a64;
    --header_3_height: 100px;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.animate {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
img {
  max-width: 100%;
  height: auto;
}
.sticky {
  opacity: 1;
}
body {
  overflow-x: hidden;
}
body .site {
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  height: auto;
}
a,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}
p {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
body {
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  color: var(--text_color);
  font-family: var(--primary_font);
  font-weight: var(--primary_font_weight);
  font-size: var(--primary_font_size);
}
h1,
h2,
h3,
h4 {
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: var(--heading_font_weight);
  color: var(--heading_color);
  font-family: var(--heading_font);
}
h1 {
  font-size: var(--h1_font_size);
}
h2 {
  font-size: var(--h2_font_size);
}
h3 {
  font-size: var(--h3_font_size);
}
h4 {
  font-size: var(--h4_font_size);
}
@media (max-width: 991px) {
  body h1 {
    font-size: calc(var(--h1_font_size) - 2px);
  }
}
@media (max-width: 480px) {
  body h1 {
    font-size: calc(var(--h1_font_size) - 4px);
  }
}
@media (max-width: 991px) {
  body h2 {
    font-size: calc(var(--h2_font_size) - 2px);
  }
}
@media (max-width: 480px) {
  body h2 {
    font-size: calc(var(--h2_font_size) - 3px);
  }
}
@media (max-width: 991px) {
  body h3 {
    font-size: calc(var(--h3_font_size) - 2px);
  }
}
@media (max-width: 480px) {
  body h3 {
    font-size: calc(var(--h3_font_size) - 3px);
  }
}
@media (max-width: 991px) {
  body h4 {
    font-size: calc(var(--h4_font_size) - 2px);
  }
}
@media (max-width: 480px) {
  body h4 {
    font-size: calc(var(--h4_font_size) - 3px);
  }
}
.container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1300px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1320px;
  }
}
#yolo-wrapper {
  background-color: #fff;
}
@media only screen and (min-width: 992px) {
  body.float {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
div,
img {
  margin: 0;
  padding: 0;
}
::-moz-selection {
  color: #fff;
  background-color: var(--primary_color);
}
::selection {
  color: #fff;
  background-color: var(--primary_color);
}
::-moz-selection {
  color: #fff;
  background-color: var(--primary_color);
}
ul {
  list-style: disc;
}
ul ul {
  list-style-type: circle;
}
ul {
  padding-left: 1.5rem;
}
a,
a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: var(--primary_color);
}
a:focus {
  color: var(--primary_color);
}
input,
textarea,
button,
select {
  outline: none;
}
button[type="submit"] {
  position: relative;
  border: none;
  background-color: var(--heading_color);
  padding: 5px 15px;
  color: #fff;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
button[type="submit"]:hover {
  background-color: var(--primary_color);
}
input[type="text"],
input[type="email"],
textarea,
select {
  padding: 0 15px;
  height: 54px;
  background-color: #f6f6f6;
  color: var(--heading_color);
  border: none;
  font-weight: var(--primary_font_weight);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
input[type="text"] ::-webkit-input-placeholder,
input[type="email"] ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder,
select ::-webkit-input-placeholder {
  color: #696969;
}
input[type="text"] :-moz-placeholder,
input[type="email"] :-moz-placeholder,
textarea :-moz-placeholder,
select :-moz-placeholder {
  color: #696969;
}
input[type="text"] ::-moz-placeholder,
input[type="email"] ::-moz-placeholder,
textarea ::-moz-placeholder,
select ::-moz-placeholder {
  color: #696969;
}
input[type="text"] :-ms-input-placeholder,
input[type="email"] :-ms-input-placeholder,
textarea :-ms-input-placeholder,
select :-ms-input-placeholder {
  color: #696969;
}
textarea {
  height: auto;
  padding-top: 20px;
}
select {
  max-width: 100%;
}
.center {
  text-align: center;
}
.yolo-mobile-menu-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
body.menu-mobile-in .yolo-mobile-menu-overlay {
  opacity: 1;
  z-index: 11;
  pointer-events: auto;
  cursor: url(../images/close.png) 15 15, default;
}
@media screen and (max-width: 1300px) {
  header.yolo-main-header .header-logo > a > img {
    max-width: 230px;
  }
}
@media screen and (min-width: 992px) {
  .yolo-mobile-header-wrapper {
    display: none !important;
  }
  header.yolo-main-header .yolo-header-wrapper {
    position: relative;
    width: 100%;
    display: table;
    z-index: 5;
  }
  header.yolo-main-header .yolo-header-wrapper .navbar-nav li a {
    color: inherit;
    font-family: var(--menu_font);
    font-weight: var(--menu_font_weight);
    font-size: var(--menu_font_size);
  }
  header.yolo-main-header .yolo-header-wrapper .navbar-nav li a:hover {
    color: var(--primary_color);
  }
  header.yolo-main-header .yolo-header-wrapper .navbar-nav li.current-menu-item > a {
    color: var(--primary_color);
  }
  header.yolo-main-header .yolo-header-wrapper .navbar-nav li.menu-item-has-children:hover > a {
    color: var(--primary_color);
  }
  header.yolo-main-header .header-left {
    display: table-cell;
    vertical-align: middle;
  }
  header.yolo-main-header .header-right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
  }
  header.yolo-main-header .header-logo > a > img {
    padding-top: var(--logo_padding_top);
    padding-bottom: var(--logo_padding_bottom);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  header.yolo-main-header .yolo-header-nav-wrapper {
    position: relative;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-nav-wrapper {
    z-index: 10;
    left: 0;
    right: 0;
    border: none !important;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-nav-wrapper .header-logo {
    height: 70px;
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-nav-wrapper .header-logo > a > img {
    max-height: 70px !important;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: none;
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-nav-wrapper .header-customize {
    line-height: 70px;
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-nav-wrapper.sticky-scheme-inherit.sticky-on .menu-wrapper .yolo-main-menu > li > a:hover {
    color: var(--primary_color) !important;
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-nav-wrapper .yolo-header-wrapper {
    border-bottom: none;
  }
}
@media screen and (min-width: 992px) and (max-width: 1300px) {
  header.yolo-main-header .yolo-header-nav-wrapper .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
  }
  .navbar-nav > li {
    float: left;
  }
}
header.header-3 {
  position: relative;
  background-color: var(--header_3_nav_bg_color);
  color: var(--header_3_nav_text_color);
}
header.header-3 .yolo-header-nav-wrapper {
  position: relative;
  height: var(--header_3_height);
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-left {
  float: left;
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-left .header-logo {
  position: relative;
  z-index: 1;
  display: table;
  height: var(--header_3_height);
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-left .header-logo a {
  display: table-cell;
  vertical-align: middle;
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-left .header-logo a img {
  max-height: var(--header_3_height);
}
@media (max-width: 1199px) {
  header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-left .header-logo a img {
    max-width: 160px;
  }
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-right {
  float: right;
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-right .menu-wrapper {
  float: left;
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
  line-height: var(--header_3_height);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--header_3_nav_distance);
  padding-right: var(--header_3_nav_distance);
}
@media (max-width: 1300px) {
  header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 15px;
  }
}
@media (max-width: 1100px) {
  header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 7px;
  }
}
header.header-3 .yolo-header-nav-wrapper .yolo-header-wrapper .header-right .header-customize {
  display: inline-block;
  line-height: var(--header_3_height);
}
header.header-3 .yolo-header-nav-wrapper.sticky-in {
  -webkit-transition: all 0s ease 0s;
  -o-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
}
header.header-3 .yolo-header-nav-wrapper.sticky-on {
  height: 70px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}
header.header-3 .yolo-header-nav-wrapper.sticky-on .container .header-left .header-logo {
  line-height: 70px;
  height: 70px;
}
header.header-3 .yolo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
  line-height: 70px;
}
header.header-3 .yolo-header-nav-wrapper.sticky-on .container .header-right .header-customize {
  line-height: 70px;
}
header.header-3 .yolo-header-nav-wrapper.sticky-out {
  height: 70px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
header.header-3 .yolo-header-nav-wrapper.sticky-out .container .header-left .header-logo {
  height: 70px;
}
header.header-3 .yolo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
  line-height: 70px;
}
header.header-3 .yolo-header-nav-wrapper.sticky-out .container .header-right .header-customize {
  line-height: 70px;
}
header.header-3 .yolo-sticky-wrapper.is-sticky .header-sticky {
  background-color: var(--header_3_nav_bg_color);
}
@media screen and (min-width: 992px) {
  header.yolo-mobile-header {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  body {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    left: 0;
  }
  header.yolo-main-header {
    display: none !important;
  }
  body.menu-mobile-in {
    overflow: hidden;
  }
  .container.yolo-mobile-header-wrapper {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-logo-mobile {
    vertical-align: middle;
    text-align: center;
  }
  .header-logo-mobile img {
    max-height: var(--main_menu_mobile_height);
    padding-top: var(--logo_mobile_padding);
    padding-bottom: var(--logo_mobile_padding);
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .toggle-icon-wrapper .toggle-icon {
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 30px;
    cursor: pointer;
  }
  .toggle-icon-wrapper .toggle-icon > span {
    background: none repeat scroll 0 0 #000;
    bottom: 0;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
  }
  .toggle-icon-wrapper .toggle-icon:before,
  .toggle-icon-wrapper .toggle-icon:after {
    background: none repeat scroll 0 0 #000;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 80%;
    bottom: 5px;
  }
  .toggle-icon-wrapper .toggle-icon:before {
    top: 5px;
    bottom: auto;
  }
  .toggle-icon-wrapper .toggle-icon:hover > span,
  .toggle-icon-wrapper .toggle-icon:hover:before,
  .toggle-icon-wrapper .toggle-icon:hover:after {
    background-color: var(--primary_color);
  }
  header.yolo-mobile-header {
    background: #fff;
  }
  header.yolo-mobile-header .header-left,
  header.yolo-mobile-header .header-customize {
    display: none;
  }
  header.yolo-mobile-header .yolo-header-container-wrapper {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    z-index: 997;
    top: 0;
    border-bottom: solid 1px #eeeeee;
  }
  header.yolo-mobile-header .yolo-mobile-header-wrapper {
    background-color: #fff;
  }
  header.yolo-mobile-header .yolo-mobile-header-inner {
    position: relative;
  }
  header.yolo-mobile-header .yolo-mobile-header-inner .header-customize {
    display: block;
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    color: #000;
  }
  header.yolo-mobile-header .yolo-mobile-header-inner .header-customize:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  header.yolo-mobile-header .yolo-mobile-header-inner .toggle-icon-wrapper {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    left: 0;
  }
  .yolo-mobile-header-nav {
    background: #fff;
    display: none;
    margin-bottom: 15px;
  }
  .yolo-mobile-header-nav .yolo-nav-mobile-menu li.current-menu-item > a,
  .yolo-mobile-header-nav .yolo-nav-mobile-menu li > a:hover,
  .yolo-mobile-header-nav .yolo-nav-mobile-menu li:hover > a {
    color: var(--primary_color);
  }
  .yolo-mobile-header-nav ul.yolo-nav-mobile-menu li.menu-item {
    font-size: calc(var(--menu_font_size) - 1px);
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: 0.1em;
    color: var(--menu_mobile_color);
    font-family: var(--menu_font);
    font-weight: var(--menu_font_weight);
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .yolo-mobile-header-nav ul.yolo-nav-mobile-menu li.menu-item > a {
    padding: 15px;
    display: inline-block;
    line-height: 1;
  }
  .yolo-mobile-header-nav ul.yolo-nav-mobile-menu li.menu-item > a:hover {
    color: var(--primary_color);
  }
  .yolo-mobile-header-nav ul.yolo-nav-mobile-menu li.menu-item > a span {
    display: none;
  }
  .yolo-mobile-header-nav ul.yolo-nav-mobile-menu li.menu-item:not(.sub-menu-open):hover {
    background-color: #f7f7f7;
  }
  .yolo-mobile-header-nav.menu-drop-fly {
    display: block;
    position: fixed;
    margin: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 280px;
    left: -280px;
    border-right: solid 2px var(--primary_color);
    z-index: 9999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .yolo-mobile-header-nav.menu-drop-fly.in {
    left: 0;
  }
  .yolo-mobile-header-nav.menu-drop-fly ul.yolo-nav-mobile-menu {
    padding: 0;
  }
  .yolo-sticky-wrapper.is-sticky > .yolo-header-container-wrapper {
    z-index: 997;
    left: 0;
    right: 0;
  }
  .yolo-sticky-wrapper:not(.is-sticky) {
    height: auto !important;
    position: relative !important;
  }
}
.navbar-nav,
.navbar-nav a,
.navbar-nav ul,
.navbar-nav li,
.navbar-nav div,
.navbar-nav form,
.navbar-nav input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
.navbar-nav a {
  text-decoration: none;
}
.navbar-nav {
  display: inline-block;
  cursor: default;
}
.navbar-nav li {
  list-style: none;
}
.navbar-nav li > a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  padding-left: 5px;
  position: absolute;
  right: 15px;
}
.navbar-nav li > a:only-child:before {
  content: '';
}
.navbar-nav > li > a:before {
  position: relative;
  right: 0;
  float: right;
}
.navbar-nav > li span {
  display: none !important;
}
.navbar-nav > li a {
  position: relative;
  display: block;
  z-index: 510;
  padding: 20px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.navbar-nav > li > a:after {
  content: "";
  color: var(--primary_color);
  border-style: solid;
  border-width: 0 0 4px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-nav > li:hover > a:after {
  width: 100%;
}
.yolo-main-menu.navbar-nav li > a > i {
  line-height: 20px;
}
.yolo-main-menu.navbar-nav li > a > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.yolo-main-menu.navbar-nav li > a > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.yolo-main-menu.navbar-nav > li > a > i.center {
  display: block;
}
.yolo-nav-mobile-menu li {
  list-style-type: none;
}
.menu-wrapper .navbar-nav > li:first-child > a {
  padding-left: 0;
}

/* === 2. Theme overrides (Annam brand) === */
:root {
  /* --- heading/title/subtitle font (nav keeps the theme's Josefin Sans) --- */
  --heading_font: "Cormorant Garamond";
  --secondary_font: "Cormorant Garamond";

  /* --- body text font (nav keeps the theme's Josefin Sans) --- */
  --primary_font: "Manrope";
  --third_font: "Manrope";

  /* --- brand colors (replacing the theme's teal/coral defaults) --- */
  --primary_color: #33513A;
  --primary_color_lighten_5: #3d5a44;
  --primary_color_lighten_10: #47624e;
  --primary_color_lighten_15: #526b58;
  --primary_color_lighten_20: #5c7461;
  --primary_color_lighten_25: #667c6b;
  --primary_color_darken_5: #304d37;
  --primary_color_darken_10: #2e4934;
  --primary_color_darken_15: #2b4531;
  --primary_color_darken_20: #29412e;
  --primary_color_darken_25: #263d2c;
  --primary_color_fade_5: rgba(51, 81, 58, 0.05);
  --primary_color_fade_10: rgba(51, 81, 58, 0.1);
  --primary_color_fade_20: rgba(51, 81, 58, 0.2);
  --primary_color_fade_30: rgba(51, 81, 58, 0.3);
  --primary_color_fade_40: rgba(51, 81, 58, 0.4);
  --primary_color_fade_50: rgba(51, 81, 58, 0.5);
  --primary_color_fade_60: rgba(51, 81, 58, 0.6);
  --primary_color_fade_70: rgba(51, 81, 58, 0.7);
  --primary_color_fade_80: rgba(51, 81, 58, 0.8);
  --primary_color_fade_90: rgba(51, 81, 58, 0.9);

  --secondary_color: #B8892B;
  --secondary_color_lighten_5: #bc8f36;
  --secondary_color_lighten_10: #bf9540;
  --secondary_color_lighten_15: #c39b4b;
  --secondary_color_lighten_20: #c6a155;
  --secondary_color_lighten_25: #caa660;
  --secondary_color_darken_5: #af8229;
  --secondary_color_darken_10: #a67b27;
  --secondary_color_darken_15: #9c7425;
  --secondary_color_darken_20: #936e22;
  --secondary_color_darken_25: #8a6720;
  --secondary_color_fade_5: rgba(184, 137, 43, 0.05);
  --secondary_color_fade_10: rgba(184, 137, 43, 0.1);
  --secondary_color_fade_20: rgba(184, 137, 43, 0.2);
  --secondary_color_fade_30: rgba(184, 137, 43, 0.3);
  --secondary_color_fade_40: rgba(184, 137, 43, 0.4);
  --secondary_color_fade_50: rgba(184, 137, 43, 0.5);
  --secondary_color_fade_60: rgba(184, 137, 43, 0.6);
  --secondary_color_fade_70: rgba(184, 137, 43, 0.7);
  --secondary_color_fade_80: rgba(184, 137, 43, 0.8);
  --secondary_color_fade_90: rgba(184, 137, 43, 0.9);

  --heading_color: #22261C;
  --heading_color_lighten_5: #2d3127;
  --heading_color_lighten_10: #383c33;
  --heading_color_lighten_15: #43473e;
  --heading_color_lighten_20: #4e5149;
  --heading_color_lighten_25: #595c55;
  --heading_color_darken_5: #20241b;
  --heading_color_darken_10: #1f2219;
  --heading_color_darken_15: #1d2018;
  --heading_color_darken_20: #1b1e16;
  --heading_color_darken_25: #1a1c15;
  --heading_color_fade_5: rgba(34, 38, 28, 0.05);
  --heading_color_fade_10: rgba(34, 38, 28, 0.1);
  --heading_color_fade_20: rgba(34, 38, 28, 0.2);
  --heading_color_fade_30: rgba(34, 38, 28, 0.3);
  --heading_color_fade_40: rgba(34, 38, 28, 0.4);
  --heading_color_fade_50: rgba(34, 38, 28, 0.5);
  --heading_color_fade_60: rgba(34, 38, 28, 0.6);
  --heading_color_fade_70: rgba(34, 38, 28, 0.7);
  --heading_color_fade_80: rgba(34, 38, 28, 0.8);
  --heading_color_fade_90: rgba(34, 38, 28, 0.9);

  --text_color: #5B5A4C;
  --text_color_lighten_5: #636255;
  --text_color_lighten_10: #6b6a5e;
  --text_color_lighten_15: #747367;
  --text_color_lighten_20: #7c7b70;
  --text_color_lighten_25: #848379;
  --text_color_darken_5: #565648;
  --text_color_darken_10: #525144;
  --text_color_darken_15: #4d4c41;
  --text_color_darken_20: #49483d;
  --text_color_darken_25: #444439;
  --text_color_fade_5: rgba(91, 90, 76, 0.05);
  --text_color_fade_10: rgba(91, 90, 76, 0.1);
  --text_color_fade_20: rgba(91, 90, 76, 0.2);
  --text_color_fade_30: rgba(91, 90, 76, 0.3);
  --text_color_fade_40: rgba(91, 90, 76, 0.4);
  --text_color_fade_50: rgba(91, 90, 76, 0.5);
  --text_color_fade_60: rgba(91, 90, 76, 0.6);
  --text_color_fade_70: rgba(91, 90, 76, 0.7);
  --text_color_fade_80: rgba(91, 90, 76, 0.8);
  --text_color_fade_90: rgba(91, 90, 76, 0.9);

  /* --- header-3 (desktop) --- */
  --header_3_nav_bg_color: #FAF7EF;
  --header_3_nav_text_color: #22261C;

  /* --- dropdown submenu (unused on our one-page nav, kept for parity) --- */
  --menu_sub_bg_color: #FAF7EF;
  --menu_sub_text_color: #22261C;

  /* --- mobile header/drawer (menu-drop-fly panel has a hardcoded white
     background in yolo.css, so its link color must stay dark) --- */
  --mobile_background_color: #1F2F22;
  --mobile_text_color: #FAF7EF;
  --menu_mobile_color: #22261C;

  /* --- top bar (unused, kept hidden) --- */
  --top_bar_bg_color: #1F2F22;
  --top_bar_text_color: #FAF7EF;
}

/* yolo.css's .container relies on Bootstrap's "margin: 0 auto" to center it,
   but bootstrap.min.css was intentionally left out of header.php (we don't use
   any other Bootstrap component). Without it, .container's fixed 1320px width
   at >=1300px viewports sits flush left instead of centered. */
.container {
  margin-left: auto;
  margin-right: auto;
}

/* Mobile sticky header: yolo.css already gives .yolo-header-container-wrapper
   a background, top:0 and a high z-index for this exact purpose, but never
   actually triggers position:fixed on it (no theme option wired it up) — our
   annam-theme.js does that via stickyHeaderYolo(). It only needs a full-width
   fix here, since fixed-position elements shrink to content width otherwise. */
@media (max-width: 991px) {
  .header-mobile-sticky {
    left: 0;
    right: 0;
  }
  .header-mobile-sticky.sticky-on {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }
}

/* Logo lockup (AnnamFarmsLogo.png already bakes in the wordmark + tagline) */
header.header-3 .header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-logo {
  height: 4.75rem;
  width: auto;
  flex-shrink: 0;
}
.header-logo-mobile .site-logo-mobile {
  /* yolo.css's ".header-logo-mobile img" sizes via max-height + 30px of
     vertical padding under box-sizing:border-box, meant for a short wordmark
     logo — with our taller lockup that padding ate nearly the whole box.
     Reset both so `height`/`padding` below are the actual rendered values. */
  box-sizing: content-box;
  padding: 0.65rem 0;
  height: 2.75rem;
  max-height: none;
  /* .header-logo-mobile centers via text-align, but style.css's global
     "img{display:block}" reset makes it ignore that — center it directly
     so it doesn't sit flush left, on top of the hamburger toggle. */
  margin-left: auto;
  margin-right: auto;
}

/* CTA button in the header-customize slot (theme has no generic .button here) */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary_color);
  color: #fff;
  text-decoration: none;
  font-family: var(--menu_font), sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.15rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.header-cta:hover {
  background: var(--primary_color_darken_10);
  color: #fff;
}

/* Our own footer background + layout (yolo.css leaves footer background to
   the page builder, which we're not using) */
.annam-footer {
  background: var(--primary_color_darken_20);
  color: var(--text_color_lighten_70, #d8d6cc);
  padding: 3.5rem 0 0;
}
.annam-footer .container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.annam-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.annam-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 900px) {
  .annam-footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .annam-footer-cols { grid-template-columns: 1fr; }
}
.annam-footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
}
.annam-footer-cols li {
  color: rgba(250, 247, 239, 0.7);
}
.annam-footer-cols li.pending {
  font-style: italic;
  opacity: 0.75;
}
.annam-footer-cols a {
  color: rgba(250, 247, 239, 0.7);
  text-decoration: none;
}
.annam-footer-cols a:hover {
  color: var(--secondary_color);
}
.annam-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(250, 247, 239, 0.55);
}
.annam-footer-social {
  display: flex;
  gap: 0.75rem;
}
.annam-footer-social a {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 239, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 239, 0.8);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.annam-footer-social svg {
  width: 1.05rem;
  height: 1.05rem;
}
.annam-footer-social a:hover {
  background: var(--secondary_color);
  border-color: var(--secondary_color);
  color: #fff;
}

/* === 3. Site styles === */
:root{
  --green:#33513A;
  --green-deep:#1F2F22;
  --green-soft:#4C6B4F;
  --cream:#FAF7EF;
  --cream-2:#F1EBDA;
  --mint:#E9EEE1;
  --brown:#6B4A32;
  --gold:#B8892B;
  --beige:#E4D9C3;
  --white:#FFFFFF;
  --ink:#22261C;
  --ink-soft:#5B5A4C;
  --line:rgba(34,38,28,0.13);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} *{transition:none !important; animation:none !important;} }
body{
  margin:0; background:var(--cream); color:var(--ink);
  font-family:'Manrope',ui-sans-serif,system-ui,sans-serif;
  font-size:17px; line-height:1.65; -webkit-font-smoothing:antialiased;
}
h1,h2,h3{ font-family:'Cormorant Garamond',ui-serif,Georgia,serif; font-weight:500; margin:0; text-wrap:balance; color:var(--ink); }
p{margin:0;}
a{color:inherit;}
img,svg{display:block; max-width:100%;}
ul{margin:0;}
.wrap{ max-width:1200px; margin:0 auto; padding:0 clamp(1.25rem,4vw,3rem); }
section{ padding:clamp(3.5rem,8vw,6rem) 0; position:relative; }
.divider{ border:none; border-top:1px solid var(--line); }

/* numbered section index */
.idx{ display:flex; align-items:center; gap:0.65rem; margin-bottom:1.25rem; }
.idx .rule{ width:1.5rem; height:1px; background:var(--brown); display:inline-block; }
.idx .num{ font-family:'Manrope',sans-serif; font-weight:700; font-size:0.82rem; letter-spacing:0.06em; color:var(--ink-soft); font-variant-numeric:tabular-nums; }
.idx .label{ font-size:0.72rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--brown); }
.idx.center{ justify-content:center; }
.section-center{ text-align:center; }
.section-center .lede{ margin-left:auto; margin-right:auto; }
.section-head h2{ font-size:clamp(1.9rem,3.6vw,2.7rem); max-width:22ch; }
.section-center h2{ max-width:26ch; margin-left:auto; margin-right:auto; }
.lede{ margin-top:1rem; color:var(--ink-soft); max-width:60ch; font-size:1.05rem; }
.highlight{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(1.2rem,2.4vw,1.5rem); color:var(--green); }

/* photography placeholder */
.photo-ph{
  position:relative; border-radius:8px; overflow:hidden;
  background:
    linear-gradient(160deg, rgba(51,81,58,0.85), rgba(31,47,34,0.94)),
    repeating-linear-gradient(115deg, rgba(250,247,239,0.05) 0 2px, transparent 2px 22px);
  display:flex; align-items:flex-end; padding:1rem;
}
.photo-ph span{
  font-size:0.66rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--cream); border:1px dashed rgba(250,247,239,0.55); border-radius:3px;
  padding:0.3rem 0.6rem;
}
.photo-ph .ph-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

.brandmark{ display:flex; align-items:center; text-decoration:none; }

/* hero — full-bleed slide image (plain area left, curved photo right) with text over the plain zone */
.hero{ position:relative; overflow:hidden; background:#fff; height:clamp(440px,46vw,720px); }
/* rectangular photo on the right, curved left edge drawn with CSS (ellipse clip) */
.hero-photo{ position:absolute; top:0; bottom:0; right:0; width:62%; background-repeat:no-repeat; background-size:cover; background-position:center; clip-path:ellipse(86% 128% at 100% 50%); }
.hero .wrap{ position:relative; z-index:1; height:100%; display:flex; flex-direction:column; justify-content:center; }
.hero-decor{ position:absolute; inset:0; z-index:0; pointer-events:none; opacity:0.5; }
.hero-decor-item{ position:absolute; max-width:none; }
.hero-decor .deco-circle-top{ left:-9%; top:-22%; width:15%; }
.hero-decor .deco-line-top{ left:2%; top:-4%; width:20%; }
.hero-decor .deco-bar-3{ left:31%; top:16%; width:7.5%; }
.hero-decor .deco-bar-2{ left:15%; top:30%; width:8%; }
.hero-decor .deco-bar-1{ left:-13%; top:46%; width:8%; }
.hero-decor .deco-circle-bottom{ left:4%; top:82%; width:15%; }
.hero-decor .deco-line-bottom{ left:-33%; top:76%; width:22%; }
.hero-inner{ position:relative; z-index:1; max-width:440px; }
.hero h1{ font-size:clamp(1.9rem,3.6vw,2.9rem); letter-spacing:0.01em; color:var(--green); }
.hero-sub{ margin-top:1.3rem; max-width:42ch; color:var(--ink-soft); font-size:1.05rem; }
.hero-ctas{ margin-top:2rem; display:flex; gap:1rem; flex-wrap:wrap; }
.btn{ display:inline-flex; align-items:center; gap:0.5rem; text-decoration:none; font-weight:700; font-size:0.84rem; letter-spacing:0.04em; text-transform:uppercase; padding:0.9rem 1.5rem; border-radius:4px; border:1.3px solid transparent; }
.btn-primary{ background:var(--green); color:var(--cream); }
.btn-secondary{ background:transparent; color:var(--green); border-color:var(--green); }
@media (max-width:900px){
  .hero{ height:auto; background:var(--cream); padding:clamp(3rem,10vw,4rem) 0; }
  .hero .wrap{ height:auto; display:block; }
  .hero-photo{ left:0; width:100%; clip-path:none; opacity:0.16; }
  .hero-decor{ display:none; }
  .hero-inner{ max-width:none; }
}

/* about */
.about-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:clamp(2rem,5vw,3.5rem); align-items:center; }
@media (max-width:880px){ .about-grid{ grid-template-columns:1fr; } .about-grid .photo-ph{ order:-1; aspect-ratio:16/9; } }
.about-grid .photo-ph{ aspect-ratio:4/3.2; }
.about-body p + p{ margin-top:1rem; color:var(--ink-soft); }
.callout{ margin-top:1.5rem; display:flex; align-items:flex-start; gap:0.9rem; background:var(--mint); border-radius:8px; padding:1.1rem 1.3rem; }
.callout .icon{ width:1.6rem; height:1.6rem; color:var(--green); flex-shrink:0; margin-top:0.15rem; }
.callout p{ font-weight:600; color:var(--green); font-size:0.98rem; }

/* icon columns (ecosystem / why annam) */
.icon-cols{ display:grid; grid-template-columns:repeat(5,1fr); gap:clamp(1.5rem,3vw,2rem); margin-top:2.75rem; }
.icon-cols.cols-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .icon-cols, .icon-cols.cols-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .icon-cols, .icon-cols.cols-4{ grid-template-columns:1fr; } }
.icon-col{ text-align:center; padding-top:1.75rem; border-top:1px solid var(--line); }
.icon-col .icon{ width:2.1rem; height:2.1rem; color:var(--green); margin:0 auto 1rem; }
.icon-svg{ display:block; background-color:currentColor; color:var(--green); -webkit-mask:var(--i) center / contain no-repeat; mask:var(--i) center / contain no-repeat; }
.icon-col .icon-svg{ width:2.6rem; height:2.6rem; }
.icon-col h3{ font-size:1.08rem; margin-bottom:0.5rem; }
.icon-col p{ color:var(--ink-soft); font-size:0.9rem; }

/* philosophy (dark, split) */
.philosophy{ background:var(--green-deep); color:var(--cream); padding:0; }
.phil-split{ display:grid; grid-template-columns:0.9fr 1.1fr; align-items:stretch; }
@media (max-width:880px){ .phil-split{ grid-template-columns:1fr; } }
.phil-photo{ min-height:22rem; border-radius:0; }
.phil-content{ padding:clamp(2.5rem,5vw,4rem) clamp(1.25rem,4vw,3rem); }
.phil-content .idx .num{ color:rgba(250,247,239,0.7); }
.phil-content .idx .rule{ background:var(--gold); }
.phil-content h2{ color:var(--cream); font-size:clamp(1.7rem,3vw,2.2rem); }
.phil-content .lede{ color:rgba(250,247,239,0.78); }
.phil-list{ list-style:none; margin:1.75rem 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:0.9rem 1.5rem; }
.phil-list li{ display:flex; align-items:flex-start; gap:0.6rem; font-size:0.92rem; color:rgba(250,247,239,0.88); }
.phil-list .dot{ width:0.45rem; height:0.45rem; border-radius:50%; background:var(--gold); margin-top:0.5em; flex-shrink:0; }
.phil-highlight{ margin-top:2rem; display:inline-flex; align-items:center; gap:0.7rem; border:1px solid rgba(250,247,239,0.3); border-radius:6px; padding:0.85rem 1.25rem; }
.phil-highlight .icon{ width:1.3rem; height:1.3rem; color:var(--gold); flex-shrink:0; }
.phil-highlight span{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.05rem; }

/* practices — photo cards */
.practice-row{ display:grid; grid-template-columns:repeat(5,1fr); gap:1.25rem; margin-top:2.75rem; }
@media (max-width:980px){ .practice-row{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:640px){ .practice-row{ grid-template-columns:repeat(2,1fr); } }
.practice-photo{ position:relative; }
.practice-card .photo-ph{ aspect-ratio:1/1; padding:0; }
.practice-badge{ position:absolute; left:0.75rem; bottom:-0.9rem; width:2rem; height:2rem; border-radius:50%; background:var(--gold); color:var(--green-deep); font-size:0.78rem; font-weight:700; display:flex; align-items:center; justify-content:center; border:3px solid var(--cream); }
.practice-card h3{ margin-top:1.6rem; font-size:1.05rem; margin-bottom:0.4rem; }
.practice-card p{ color:var(--ink-soft); font-size:0.88rem; }

/* food ecosystem */
.food-grid{ display:grid; grid-template-columns:0.95fr 1.1fr 0.95fr; gap:clamp(1.75rem,3vw,2.5rem); align-items:center; margin-top:2.5rem; }
@media (max-width:980px){ .food-grid{ grid-template-columns:1fr; } }
.food-list{ list-style:none; margin:0; padding:0; display:grid; gap:1.4rem; }
.food-list li{ display:flex; align-items:flex-start; gap:0.9rem; }
.food-list .icon{ width:1.6rem; height:1.6rem; color:var(--green); flex-shrink:0; margin-top:0.15rem; }
.food-list h3{ font-size:1.02rem; margin-bottom:0.2rem; }
.food-list p{ color:var(--ink-soft); font-size:0.88rem; }
.food-photo{ align-self:stretch; min-height:24rem; background:#fff; }
.food-photo .ph-img{ object-fit:contain; }
.food-copy p{ color:var(--ink-soft); }
.food-copy .btn{ margin-top:1.4rem; text-align:center; line-height:1.3; }

/* relationship / brand family */
.relationship{ background:var(--cream-2); }
.brand-row{ display:grid; grid-template-columns:1fr auto auto auto 1fr; align-items:center; gap:clamp(0.75rem,2.5vw,1.75rem); margin-top:2.75rem; }
@media (max-width:820px){ .brand-row{ grid-template-columns:1fr; } }
.brand-box{ border:1.3px solid var(--green); border-radius:12px; padding:1.75rem; text-align:center; background:var(--white); }
.brand-box.milk{ border-color:var(--gold); }
.brand-box .icon{ width:2.3rem; height:2.3rem; margin:0 auto 0.9rem; color:var(--green); }
.brand-box.milk .icon{ color:var(--gold); }
.brand-box h3{ font-size:1.2rem; letter-spacing:0.03em; color:var(--green); }
.brand-box.milk h3{ color:var(--gold); }
.brand-box span{ display:block; margin-top:0.3rem; font-size:0.82rem; color:var(--ink-soft); }
.brand-arrow{ color:var(--ink-soft); font-size:1.5rem; line-height:1; }
@media (max-width:820px){ .brand-arrow{ transform:rotate(90deg); margin:0.25rem auto; } }
.flow-mini{ display:flex; flex-direction:column; align-items:center; gap:1rem; }
.flow-nodes{ display:flex; align-items:center; gap:0.55rem; }
.flow-mini .node{ width:3.4rem; height:3.4rem; border-radius:50%; background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; }
.flow-mini .node .icon-svg{ width:1.6rem; height:1.6rem; color:var(--green); }
.flow-link{ position:relative; width:1.9rem; height:0; border-top:1.6px dashed rgba(34,38,28,0.3); }
.flow-link::after{ content:""; position:absolute; right:-1px; top:50%; transform:translateY(-50%); border-left:5px solid rgba(34,38,28,0.4); border-top:3.5px solid transparent; border-bottom:3.5px solid transparent; }
.flow-labels{ display:flex; align-items:center; gap:0.55rem; font-weight:700; font-size:0.92rem; color:var(--green); }
.flow-labels .arrow{ color:var(--ink-soft); font-weight:400; }
.relationship-copy{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.75rem,3vw,2.5rem); margin-top:2.75rem; }
@media (max-width:820px){ .relationship-copy{ grid-template-columns:1fr; } }
.relationship-copy p{ color:var(--ink-soft); }
.relationship-cta{ margin-top:2.25rem; text-align:center; }

/* journey */
.journey-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:clamp(2rem,5vw,3.5rem); align-items:center; }
@media (max-width:880px){ .journey-grid{ grid-template-columns:1fr; } }
.journey-grid .photo-ph{ aspect-ratio:16/10; }
.journey-grid .ph-img{ object-position:center; }
.journey-copy .lede{ margin-top:1.1rem; }
.journey-stat{ margin-top:1.4rem; font-weight:700; font-size:1.05rem; color:var(--green); display:flex; gap:0.5rem; align-items:center; flex-wrap:wrap; }
.journey-stat .arrow{ color:var(--brown); }

/* looking ahead (dark) */
.vision{ background:var(--green-deep) url('../images/LookingAhead.jpg') center right / cover no-repeat; color:var(--cream); position:relative; overflow:hidden; }
.vision::before{ content:''; position:absolute; inset:0; background:linear-gradient(to right, rgba(31,47,34,0.9) 0%, rgba(31,47,34,0.9) 28%, rgba(31,47,34,0.72) 55%, rgba(31,47,34,0.4) 100%), radial-gradient(70% 60% at 85% 30%, rgba(184,137,43,0.14), transparent); }
.vision-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,3.5rem); align-items:center; }
@media (max-width:880px){ .vision-grid{ grid-template-columns:1fr; } }
.vision .idx .num{ color:rgba(250,247,239,0.7); }
.vision .idx .rule{ background:var(--gold); }
.vision .idx .label{ color:var(--gold); }
.vision h2{ color:var(--cream); font-size:clamp(1.7rem,3vw,2.3rem); }
.vision .lede{ color:rgba(250,247,239,0.78); }
.vision-lines{ font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,3.4vw,2.4rem); line-height:1.35; }
.vision-lines em{ font-style:italic; color:var(--beige); }

/* contact + form */
.contact-details{ margin-top:2.75rem; }
.contact-list{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(1.75rem,4vw,3.5rem); font-size:0.98rem; }
.contact-list li{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:0.6rem; }
.contact-list .icon{ width:1.6rem; height:1.6rem; color:var(--green); flex-shrink:0; }
.contact-list a{ color:inherit; text-decoration:none; }
.contact-list a:hover{ color:var(--green); }
.contact-list .pending{ color:var(--ink-soft); font-style:italic; }
@media (max-width:640px){ .contact-list{ grid-template-columns:1fr; gap:1.75rem; } }
.social-row{ margin-top:2.5rem; display:flex; justify-content:center; gap:0.85rem; }
.social-row a{ width:2.4rem; height:2.4rem; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; text-decoration:none; }
.social-row svg{ width:1.05rem; height:1.05rem; color:var(--ink-soft); }
.social-row a:hover{ border-color:var(--green); }
.social-row a:hover svg{ color:var(--green); }

.contact-form{ display:grid; gap:1rem; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:520px){ .form-row{ grid-template-columns:1fr; } }
.contact-form label{ display:block; font-size:0.78rem; font-weight:700; letter-spacing:0.04em; color:var(--ink-soft); margin-bottom:0.4rem; }
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%; border:1px solid var(--line); border-radius:5px; padding:0.7rem 0.85rem;
  font-family:'Manrope',sans-serif; font-size:0.94rem; background:var(--white); color:var(--ink);
}
.contact-form textarea{ min-height:6rem; resize:vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{ outline:2px solid var(--green); outline-offset:1px; }
.form-actions{ display:flex; gap:0.9rem; flex-wrap:wrap; margin-top:0.4rem; }
.btn-whatsapp{ background:transparent; color:var(--green); border:1.3px solid var(--green); }

footer{ background:var(--green-deep); color:rgba(250,247,239,0.65); padding:1.5rem 0; text-align:center; font-size:0.82rem; }

/* generic inner page content (Privacy / Terms) */
.page-header{ padding:clamp(3rem,7vw,4.5rem) 0 clamp(2rem,4vw,2.5rem); border-bottom:1px solid var(--line); }
.page-header h1{ font-size:clamp(2.2rem,4.5vw,3.2rem); }
.page-body{ padding:clamp(2.5rem,5vw,3.5rem) 0; }
.page-body p{ color:var(--ink-soft); max-width:70ch; margin-bottom:1.1rem; }
.page-body h2{ font-size:1.5rem; margin:2rem 0 0.75rem; }
.page-body ul{ color:var(--ink-soft); max-width:70ch; margin:0 0 1.1rem 1.25rem; padding:0; }
.page-body li{ margin-bottom:0.5rem; }
.page-header .page-meta{ color:var(--ink-soft); margin-top:0.75rem; font-size:0.95rem; }
