/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display",  serif;
  --nav-font: "Poppins",  sans-serif;
  --vintage-font: "Cinzel", serif;
}
@font-face {
    font-family: 'Nexa Rust Slab';
    src: url('../WEB/NexaRustSans-Trial-BlackShadow1.woff2') format('woff2'),
         url('../WEB/NexaRustSans-Trial-BlackShadow1.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #e8d5b7; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFA500; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #000000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

  --primary-orange: #FFA500;
  --dark-brown: #2D1E0F;
  --medium-brown: #4A3728;
  --cream-bg: #E8D5B7;
  --tan-bg: #E8D5B7;
  --black: #000000;
  --white: #FFFFFF;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #E8D5B7;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #E8D5B7;
  --surface-color: #E8D5B7;
}

.dark-background {
  --background-color: #060606;
  --default-color: #e8d5b7;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #000000;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
  font-family: var(--default-font);
}

p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #8B6F47;
  line-height: 1.8;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.5s;
  z-index: 997;
  /* border-bottom: 2px solid var(--dark-brown); */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black) !important;
  letter-spacing: 1px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 50px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}
*/
/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #d4b896;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;    
    padding-right: 10px;

  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #2D1E0F;
    padding: 18px 12px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-color);
    font-weight: 700;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #2D1E0F;;
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
}

.footer .footer-newsletter {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
    font-size: 30px;
    font-family: 'Nexa Rust Slab', sans-serif;
    color: #fff;
}


.footer .footer-newsletter h2 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 70px;
  line-height: 0.9;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-shadow: 
      3px 3px 0px rgba(255, 165, 0, 0.3),
      -1px -1px 0px rgba(255, 255, 255, 0.5);
}

.footer .footer-newsletter p {
    color: #D4B896;
    font-size: 20px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #D4B896;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/


.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding-top: 140px;
}
.page-title .container-fluid {
  padding: 0px 15px ;
}

.page-title .heading h1 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 70px;
  line-height: 0.9;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 
      3px 3px 0px rgba(255, 165, 0, 0.3),
      -1px -1px 0px rgba(255, 255, 255, 0.5);
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}
@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 90px;
  line-height: 0.9;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 
      3px 3px 0px rgba(255, 165, 0, 0.3),
      -1px -1px 0px rgba(255, 255, 255, 0.5);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(180deg, var(--tan-bg) 0%, var(--cream-bg) 100%);
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}


.hero p {
  
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero h4 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 50px;
  line-height: 0.9;
  color: var(--black);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 
      3px 3px 0px rgba(255, 165, 0, 0.3),
      -1px -1px 0px rgba(255, 255, 255, 0.5);
}

.hero h5 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 30px;
  line-height: 0.9;
  color: var(--black);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 
      3px 3px 0px rgba(255, 165, 0, 0.3),
      -1px -1px 0px rgba(255, 255, 255, 0.5);
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Hero Carousel
--------------------------------------------------------------*/

.hero-carousel {
  width: 100%;
  position: relative;
}

.swiper-config {
  display: none;
}

.hero-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-swiper-button-next,
.hero-swiper-button-prev {
  background: rgba(255, 165, 0, 0.85);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.hero-swiper-button-next {
  right: 20px;
}

.hero-swiper-button-prev {
  left: 20px;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
  background: rgba(255, 165, 0, 1);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
  width: 55px;
  height: 55px;
  font-size: 26px;
}

/* Responsive adjustments for carousel arrows */
@media (max-width: 768px) {
  .hero-carousel img {
    height: 350px;
  }

  .hero-swiper-button-next,
  .hero-swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-swiper-button-next {
    right: 10px;
  }

  .hero-swiper-button-prev {
    left: 10px;
  }

  .hero-swiper-button-next:hover,
  .hero-swiper-button-prev:hover {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-carousel img {
    height: 250px;
  }

  .hero-swiper-button-next,
  .hero-swiper-button-prev {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .hero-swiper-button-next:hover,
  .hero-swiper-button-prev:hover {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  margin: 20px 100px;
  padding: 0px;
}
.about .content {
  
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}



.about .content h2 {
  font-family: 'Nexa Rust Slab', sans-serif;
  font-size: 90px;
  line-height: 0.9;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 
      3px 3px 0px rgba(255, 165, 0, 0.3),
      -1px -1px 0px rgba(255, 255, 255, 0.5);
}


.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  font-size: 1.2rem;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values {
  background-color: #2D1E0F;
  margin: 0px 100px;
  margin-top: -50px;
  margin-bottom: 20px;
  padding: 0px;
  position: relative;
  z-index: 10;
}

.values .value-card {
  color: #d4b896;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  padding: 30px 20px;
}

.values .value-card .icon-wrapper {
  margin-bottom: 20px;
}

.values .value-card i {
  font-size: 64px;
  color: #FFA500;
  transition: 0.3s;
}

.values .value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFA500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values .value-card p {
  color: #d4b896;
  font-size: 14px;
  line-height: 1.8;
}

.values .value-card:hover i {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.features p {
  color: #000000;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio {
  padding: 30px;
  margin: 100px auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients{
  background-color: #F5E6D3;
}

.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
  padding-top: 150px;
}
.img-fluid2{
  max-width: 70%;
  height: auto;
}
.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.container-custom
{
    --bs-gutter-x: 12rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
.hero-title {
    font-family: 'Nexa Rust Slab', sans-serif;
    font-size: 12rem;
    line-height: 0.9;
    color: var(--black);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 3rem;
    text-shadow: 
        3px 3px 0px rgba(255, 165, 0, 0.3),
        -1px -1px 0px rgba(255, 255, 255, 0.5);
}
        
.gramophone-image {
    position: relative;
    max-width: 600px;
}
   
.gramophone-image {
    position: relative;
    max-width: 600px;
}

.gramophone-image2 {
    max-height: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gramophone-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.3));
}

.gramophone-image2 img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.3));
}

/* Channel Image Wrapper - Circular Frame */
.channel-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
}

.channel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Blog Details Page Styling */
.blog-details-wrapper {
  padding: 60px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.blog-meta-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #666;
}

.author-details h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.author-details .date {
  font-size: 0.85rem;
  color: #999;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.95rem;
}

.meta-item i {
  color: #d4a574;
  font-weight: bold;
}

.blog-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin: 50px 0;
}

.blog-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.blog-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content blockquote {
  border-left: 5px solid #d4a574;
  padding-left: 25px;
  margin: 40px 0;
  font-style: italic;
  color: #666;
  font-size: 1.15rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 40px 0;
  border-radius: 8px;
}

.blog-tags {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.tag-label {
  font-weight: 600;
  color: #1a1a1a;
  display: inline-block;
}

.tag-item {
  display: inline-block;
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  color: #666;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: #d4a574;
  color: white;
}

.comments-section {
  max-width: 900px;
  margin: 80px auto 0;
  padding-top: 60px;
  border-top: 2px solid #e5e5e5;
}

.comments-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.comment-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

.comment-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.comment-info h4 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.comment-date {
  font-size: 0.85rem;
  color: #999;
}

.comment-text {
  line-height: 1.6;
  color: #666;
}

.comment-text p {
  margin: 0;
}

.comment-reply {
  margin-top: 10px;
}

.comment-reply a {
  color: #d4a574;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.comment-form {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 8px;
}

.comment-form h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #d4a574;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #b8934f;
}

.related-posts {
  max-width: 900px;
  margin: 80px auto;
  padding-top: 60px;
  border-top: 2px solid #e5e5e5;
}

.related-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.related-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post-content {
  padding: 20px;
}

.related-post-content h4 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.related-post-card:hover .related-post-content h4 {
  color: #d4a574;
}

.related-post-date {
  font-size: 0.85rem;
  color: #999;
}

.related-post-card a {
  text-decoration: none;
  color: inherit;
}

/* Vintage Font Styling for Blog Details */
.blog-details-wrapper h2,
.blog-details-wrapper h3,
.blog-content h2,
.blog-content h3,
article h2,
article h3 {
  font-family: var(--vintage-font);
  font-weight: 700;
  letter-spacing: 1px;
}

.blog-details-wrapper h2,
.blog-content h2,
article h2 {
  font-size: 2.5rem;
  margin: 2rem 0 1rem 0;
  color: var(--heading-color);
}

.blog-details-wrapper h3,
.blog-content h3,
article h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 0.8rem 0;
  color: var(--heading-color);
}

/* Page title heading with vintage style */
.page-title .heading h1 {
  
  font-family: 'Nexa Rust Slab', sans-serif;
  letter-spacing: 2px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }

  .blog-meta-header {
    flex-direction: column;
    gap: 20px;
  }

  .blog-content {
    font-size: 1rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-details-wrapper h2,
  .blog-content h2,
  article h2 {
    font-size: 1.8rem;
  }

  .blog-details-wrapper h3,
  .blog-content h3,
  article h3 {
    font-size: 1.4rem;
  }
  
}


    /* ─────────────────────────────────────────
       FOUNDATION PAGE — HERITAGE DESIGN SYSTEM
    ───────────────────────────────────────── */
    :root {
      --gold:          #C9A84C;
      --gold-light:    #E8C97A;
      --gold-dim:      #7A6129;
      --ink:           #1A1208;
      --parchment:     #F7F0E2;
      --parchment-dark:#EDE0C4;
      --rust:          #8B3A2A;
      --cream:         #FAF5EA;
      --text:          #2C2010;
    }

    /* Noise texture */
    .foundation-wrap::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.45;
    }

    /* ── Page wrapper ── */
    .foundation-wrap {
      background-color: var(--cream);
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════
       HERO — Foundation intro banner
    ═══════════════════════════════════════ */
    .fdn-hero {
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 40px 80px;
      position: relative;
      background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201,168,76,0.13) 0%, transparent 70%),
        var(--cream);
      overflow: hidden;
    }

    .fdn-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.07) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.07) 80px);
      pointer-events: none;
    }

    .fdn-ornament {
      font-size: 1.3rem;
      color: var(--gold);
      letter-spacing: 0.7em;
      margin-bottom: 22px;
      opacity: 0;
      animation: fdnFadeUp 1s 0.2s ease forwards;
    }

    .fdn-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 0.38em;
      color: var(--gold-dim);
      text-transform: uppercase;
      margin-bottom: 18px;
      opacity: 0;
      animation: fdnFadeUp 1s 0.4s ease forwards;
    }

    .fdn-hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 5.5vw, 4.4rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 6px;
      opacity: 0;
      animation: fdnFadeUp 1s 0.6s ease forwards;
    }

    .fdn-hero-title span {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.3rem, 3vw, 2.6rem);
      color: var(--gold);
      letter-spacing: 0.05em;
      margin-top: 6px;
    }

    .fdn-hero-divider {
      width: 120px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 30px auto;
      position: relative;
      opacity: 0;
      animation: fdnFadeUp 1s 0.8s ease forwards;
    }

    .fdn-hero-divider::before {
      content: '✦';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      color: var(--gold);
      font-size: 0.7rem;
      background: var(--cream);
      padding: 0 8px;
    }

    .fdn-hero-tagline {
      font-size: clamp(1.1rem, 1.8vw, 1.35rem);
      font-style: italic;
      color: var(--rust);
      max-width: 580px;
      line-height: 1.75;
      opacity: 0;
      animation: fdnFadeUp 1s 1s ease forwards;
    }

    .fdn-scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--gold-dim);
      font-family: 'Cinzel', serif;
      font-size: 0.56rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      opacity: 0;
      animation: fdnFadeUp 1s 1.4s ease forwards;
    }

    .fdn-scroll-cue::after {
      content: '';
      width: 1px;
      height: 38px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: fdnScrollPulse 2s infinite;
    }

    /* ═══════════════════════════════════════
       HERITAGE SECTION
    ═══════════════════════════════════════ */
    .fdn-heritage {
      background: var(--parchment);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .fdn-heritage::before {
      content: '"';
      position: absolute;
      top: -40px; left: 3%;
      font-family: 'Cinzel', serif;
      font-size: 28rem;
      color: rgba(201,168,76,0.06);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .fdn-heritage-inner {
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 2px 1.6fr;
      gap: 60px;
      align-items: start;
    }

    .fdn-heritage-left h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.8rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 22px;
    }

    .fdn-heritage-left h2 em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1em;
      color: var(--gold);
    }

    .fdn-year-badge {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 3.4rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 8px;
      margin-bottom: 18px;
    }

    .fdn-vdivider {
      width: 2px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      align-self: stretch;
      min-height: 300px;
    }

    .fdn-heritage-text {
      font-size: 1.25rem;
      line-height: 1.9;
      color: var(--text);
    }

    .fdn-heritage-text p + p { margin-top: 1.4em; }

    .fdn-heritage-text .fdn-drop::first-letter {
      font-family: 'Cinzel', serif;
      font-size: 4.2rem;
      float: left;
      line-height: 0.75;
      margin: 8px 12px 0 0;
      color: var(--gold);
      font-weight: 600;
    }

    /* ── Portraits row ── */
    .fdn-portraits {
      max-width: 1200px;
      margin: 70px auto 0;
      padding: 0 40px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 50px;
      align-items: center;
    }

    .fdn-portraits img {
      width: 220px;
      height: 280px;
      object-fit: cover;
      border-radius: 4px;
      filter: sepia(20%) contrast(1.05);
      box-shadow: 8px 8px 0 var(--gold-dim);
    }

    .fdn-portrait-caption {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      color: var(--gold-dim);
      text-transform: uppercase;
      margin-top: 10px;
    }

    /* ── Three pillars ── */
    .fdn-pillars-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .fdn-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--gold-dim);
      border: 2px solid var(--gold-dim);
      margin-top: 70px;
    }

    .fdn-pillar {
      background: var(--cream);
      padding: 52px 36px;
      transition: background 0.35s;
      position: relative;
      overflow: hidden;
    }

    .fdn-pillar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }

    .fdn-pillar:hover::after  { transform: scaleX(1); }
    .fdn-pillar:hover         { background: var(--parchment); }

    .fdn-pillar-num {
      font-family: 'Cinzel', serif;
      font-size: 3.8rem;
      font-weight: 600;
      color: rgba(201,168,76,0.18);
      line-height: 1;
      margin-bottom: 14px;
    }

    .fdn-pillar-icon {
      font-size: 1.5rem;
      display: block;
      margin-bottom: 18px;
    }

    .fdn-pillar h3 {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 14px;
    }

    .fdn-pillar p {
      font-size: 1.03rem;
      line-height: 1.8;
      color: var(--text);
      font-style: italic;
    }

    /* ═══════════════════════════════════════
       INRECO HISTORY — original content, restyled
    ═══════════════════════════════════════ */
    .fdn-history {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    .fdn-section-label {
      font-family: 'Cinzel', serif;
      font-size: 0.62rem;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .fdn-section-label::before,
    .fdn-section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dim));
    }
    .fdn-section-label::after {
      background: linear-gradient(to left, transparent, var(--gold-dim));
    }

    .fdn-history-grid {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 60px;
      align-items: start;
      margin-top: 50px;
    }

    .fdn-history-img img {
      width: 100%;
      border-radius: 4px;
      filter: sepia(15%);
      box-shadow: 6px 6px 0 var(--gold-dim);
    }

    .fdn-history-img .fdn-img-label {
      font-family: 'Cinzel', serif;
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      color: var(--gold-dim);
      text-transform: uppercase;
      margin-top: 10px;
      text-align: center;
    }

    .fdn-history-body h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 28px;
    }

    .fdn-history-body p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 1.4em;
    }

    /* Digital + PDL row */
    .fdn-digital-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-top: 60px;
      padding-top: 60px;
      border-top: 1px solid var(--parchment-dark);
    }

    .fdn-digital-logo {
      text-align: center;
    }

    .fdn-digital-logo img {
      max-height: 140px;
      width: auto;
      filter: sepia(15%) contrast(1.1);
    }

    .fdn-digital-text p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 1.2em;
    }

    /* ═══════════════════════════════════════
       VISION & MISSION (dark strip)
    ═══════════════════════════════════════ */
    .fdn-vm {
      background: var(--ink);
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    .fdn-vm::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 40% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 55% 40% at 80% 50%, rgba(139,58,42,0.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .fdn-vm-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .fdn-vm-block {
      position: relative;
      padding-top: 28px;
    }

    .fdn-vm-block::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 48px;
      height: 2px;
      background: var(--gold);
    }

    .fdn-vm-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.45em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .fdn-vm-block h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 2.8vw, 2.5rem);
      font-weight: 300;
      font-style: italic;
      color: var(--parchment);
      line-height: 1.3;
      margin-bottom: 26px;
    }

    .fdn-vm-block p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: rgba(247,240,226,0.72);
    }

    /* ═══════════════════════════════════════
       QUOTE BANNER
    ═══════════════════════════════════════ */
    .fdn-quote {
      background: var(--gold);
      padding: 76px 40px;
      text-align: center;
      position: relative;
    }

    .fdn-quote-stars {
      font-size: 0.65rem;
      letter-spacing: 0.9em;
      color: var(--ink);
      opacity: 0.3;
      display: block;
      margin-bottom: 24px;
    }

    .fdn-quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.35rem, 2.8vw, 2.1rem);
      font-style: italic;
      font-weight: 300;
      color: var(--ink);
      max-width: 780px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .fdn-quote cite {
      display: block;
      font-family: 'Cinzel', serif;
      font-style: normal;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      color: var(--ink);
      opacity: 0.55;
      margin-top: 20px;
      text-transform: uppercase;
    }

    .fdn-quote-stars-bottom {
      font-size: 0.65rem;
      letter-spacing: 0.9em;
      color: var(--ink);
      opacity: 0.3;
      display: block;
      margin-top: 24px;
    }

    /* ═══════════════════════════════════════
       ETHOS STRIP
    ═══════════════════════════════════════ */
    .fdn-ethos {
      background: var(--parchment);
      border-top: 1px solid var(--gold-dim);
      border-bottom: 1px solid var(--gold-dim);
      padding: 50px 40px;
    }

    .fdn-ethos-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 60px;
      text-align: center;
    }

    .fdn-ethos-item {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-dim);
    }

    .fdn-ethos-dot {
      color: var(--gold);
      opacity: 0.5;
    }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fdnFadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fdnScrollPulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.35; }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 960px) {
      .fdn-heritage-inner,
      .fdn-history-grid,
      .fdn-vm-inner { grid-template-columns: 1fr; gap: 40px; }
      .fdn-vdivider { display: none; }
      .fdn-pillars  { grid-template-columns: 1fr; }
      .fdn-digital-row { grid-template-columns: 1fr; }
      .fdn-portraits { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .fdn-hero, .fdn-heritage, .fdn-history,
      .fdn-vm, .fdn-quote, .fdn-ethos { padding-left: 24px; padding-right: 24px; }
      .fdn-heritage-inner, .fdn-history, .fdn-vm-inner,
      .fdn-pillars-wrap, .fdn-portraits { padding: 0 24px; }
    }
  
    /* ──────────────────────────────────────────
       FOUNDATION DESIGN SYSTEM — shared tokens
    ─────────────────────────────────────────── */
    :root {
      --gold:           #C9A84C;
      --gold-light:     #E8C97A;
      --gold-dim:       #7A6129;
      --ink:            #1A1208;
      --parchment:      #F7F0E2;
      --parchment-dark: #EDE0C4;
      --rust:           #8B3A2A;
      --cream:          #FAF5EA;
      --text:           #2C2010;
      --teal:           #2A6B6B;   /* accent for Health */
    }

    /* noise overlay */
    .fdn-wrap::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.45;
    }

    .fdn-wrap {
      background: var(--cream);
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
    }

    /* ══════════════════════════════════════════
       HERO BANNER
    ══════════════════════════════════════════ */
    .ini-hero {
      min-height: 62vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      position: relative;
      background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201,168,76,0.14) 0%, transparent 70%),
        var(--ink);
      overflow: hidden;
    }

    /* subtle mandala-like ring in bg */
    .ini-hero::after {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.08);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      box-shadow:
        0 0 0 40px  rgba(201,168,76,0.04),
        0 0 0 80px  rgba(201,168,76,0.03),
        0 0 0 130px rgba(201,168,76,0.02);
      pointer-events: none;
    }

    .ini-hero-badge {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.45em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0;
      animation: iniUp 0.9s 0.2s ease forwards;
      position: relative; z-index: 1;
    }

    .ini-hero-ornament {
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: 0.6em;
      margin-bottom: 20px;
      opacity: 0;
      animation: iniUp 0.9s 0.35s ease forwards;
      position: relative; z-index: 1;
    }

    .ini-hero h1 {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 400;
      color: var(--parchment);
      line-height: 1.18;
      margin-bottom: 8px;
      opacity: 0;
      animation: iniUp 0.9s 0.5s ease forwards;
      position: relative; z-index: 1;
    }

    .ini-hero h1 em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.2rem, 2.5vw, 2rem);
      color: var(--gold);
      margin-top: 6px;
    }

    .ini-hero-rule {
      width: 100px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 30px auto;
      position: relative;
      opacity: 0;
      animation: iniUp 0.9s 0.7s ease forwards;
      z-index: 1;
    }
    .ini-hero-rule::before {
      content: '✦';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      color: var(--gold);
      font-size: 0.65rem;
      background: var(--ink);
      padding: 0 6px;
    }

    .ini-hero-intro {
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      font-style: italic;
      color: rgba(247,240,226,0.65);
      max-width: 620px;
      line-height: 1.8;
      opacity: 0;
      animation: iniUp 0.9s 0.9s ease forwards;
      position: relative; z-index: 1;
    }

    /* ══════════════════════════════════════════
       SECTION LABEL (shared)
    ══════════════════════════════════════════ */
    .ini-section-label {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      letter-spacing: 0.42em;
      color: var(--gold);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .ini-section-label::before,
    .ini-section-label::after {
      content: '';
      flex: 1;
      height: 1px;
    }
    .ini-section-label::before { background: linear-gradient(to right, transparent, var(--gold-dim)); }
    .ini-section-label::after  { background: linear-gradient(to left,  transparent, var(--gold-dim)); }

    /* ══════════════════════════════════════════
       INITIATIVE 01 — CULTURAL PRESERVATION
    ══════════════════════════════════════════ */
    .ini-cultural {
      padding: 110px 0;
      background: var(--parchment);
      position: relative;
      overflow: hidden;
    }

    /* large ghosted number */
    .ini-cultural::before {
      content: '01';
      position: absolute;
      right: -20px; top: 20px;
      font-family: 'Cinzel', serif;
      font-size: 22rem;
      font-weight: 600;
      color: rgba(201,168,76,0.055);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .ini-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .ini-cultural-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .ini-initiative-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      color: var(--gold-dim);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .ini-initiative-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 28px;
      position: relative;
      padding-bottom: 24px;
    }

    .ini-initiative-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 48px;
      height: 2px;
      background: var(--gold);
    }

    .ini-initiative-desc {
      font-size: 1.1rem;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 36px;
    }

    /* sub-project cards */
    .ini-sub-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .ini-sub-card {
      background: var(--cream);
      border-left: 3px solid var(--gold);
      padding: 20px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .ini-sub-card:hover {
      transform: translateX(6px);
      box-shadow: -4px 0 0 var(--gold);
    }

    .ini-sub-icon {
      font-size: 1.5rem;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .ini-sub-card h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 6px;
    }

    .ini-sub-card p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--text);
      font-style: italic;
    }

    /* visual side */
    .ini-visual-side {
      position: relative;
    }

    .ini-main-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 4px;
      filter: sepia(18%) contrast(1.04);
      box-shadow: 10px 10px 0 var(--gold-dim);
    }

    .ini-img-caption {
      font-family: 'Cinzel', serif;
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      color: var(--gold-dim);
      text-transform: uppercase;
      margin-top: 12px;
      text-align: right;
    }

    /* Floating accent quote */
    .ini-accent-quote {
      position: absolute;
      bottom: 60px;
      left: -36px;
      background: var(--gold);
      padding: 20px 24px;
      max-width: 220px;
      box-shadow: 4px 4px 0 var(--ink);
    }

    .ini-accent-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-style: italic;
      color: var(--ink);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════
       INITIATIVE 02 — EDUCATION / SKILL DEV
    ══════════════════════════════════════════ */
    .ini-education {
      padding: 110px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .ini-education::before {
      content: '02';
      position: absolute;
      left: -20px; top: 20px;
      font-family: 'Cinzel', serif;
      font-size: 22rem;
      font-weight: 600;
      color: rgba(201,168,76,0.055);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .ini-education-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* step list */
    .ini-step-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 8px;
    }

    .ini-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid var(--parchment-dark);
      align-items: start;
      transition: background 0.25s;
    }

    .ini-step:first-child { border-top: 1px solid var(--parchment-dark); }

    .ini-step:hover { background: var(--parchment); padding-left: 8px; padding-right: 8px; }

    .ini-step-num {
      font-family: 'Cinzel', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .ini-step h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .ini-step p {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--text);
      font-style: italic;
    }

    /* edu visual */
    .ini-edu-visual {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .ini-edu-img-main {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      border-radius: 4px;
      filter: sepia(18%) contrast(1.05);
      box-shadow: 8px 8px 0 var(--gold-dim);
    }

    .ini-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ini-stat {
      background: var(--ink);
      padding: 24px 20px;
      text-align: center;
    }

    .ini-stat .ini-stat-num {
      font-family: 'Cinzel', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      display: block;
    }

    .ini-stat .ini-stat-label {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(247,240,226,0.5);
      margin-top: 8px;
      display: block;
    }

    /* ══════════════════════════════════════════
       INITIATIVE 03 — HEALTH & WELLNESS
    ══════════════════════════════════════════ */
    .ini-health {
      padding: 110px 0;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .ini-health::before {
      content: '03';
      position: absolute;
      right: -20px; top: 20px;
      font-family: 'Cinzel', serif;
      font-size: 22rem;
      font-weight: 600;
      color: rgba(201,168,76,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .ini-health::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 40% at 10% 50%, rgba(42,107,107,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 45% 50% at 90% 20%, rgba(201,168,76,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .ini-health-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .ini-health .ini-initiative-eyebrow { color: rgba(201,168,76,0.6); }

    .ini-health .ini-initiative-title { color: var(--parchment); }
    .ini-health .ini-initiative-title::after { background: var(--gold); }

    .ini-health .ini-initiative-desc { color: rgba(247,240,226,0.7); }

    /* health card list */
    .ini-health-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .ini-health-card {
      border: 1px solid rgba(201,168,76,0.2);
      padding: 24px 28px;
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 20px;
      align-items: start;
      transition: border-color 0.3s, background 0.3s;
    }

    .ini-health-card:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.05);
    }

    .ini-health-card-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      background: rgba(201,168,76,0.08);
      border-radius: 2px;
    }

    .ini-health-card h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .ini-health-card p {
      font-size: 0.98rem;
      line-height: 1.75;
      color: rgba(247,240,226,0.65);
      font-style: italic;
    }

    /* health visual */
    .ini-health-visual { position: relative; }

    .ini-health-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 4px;
      filter: sepia(20%) brightness(0.85) contrast(1.1);
      box-shadow: 10px 10px 0 rgba(201,168,76,0.25);
    }

    /* ══════════════════════════════════════════
       SHARED PROGRAMS (original 3 cards) 
    ══════════════════════════════════════════ */
    .ini-programs {
      padding: 100px 0;
      background: var(--parchment);
      position: relative;
    }

    .ini-programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--gold-dim);
      border: 2px solid var(--gold-dim);
      margin-top: 0;
    }

    .ini-prog-card {
      background: var(--cream);
      overflow: hidden;
      transition: background 0.3s;
      position: relative;
    }

    .ini-prog-card:hover { background: var(--parchment); }

    .ini-prog-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s;
      transform-origin: left;
    }

    .ini-prog-card:hover::after { transform: scaleX(1); }

    .ini-prog-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      filter: sepia(15%) contrast(1.05);
    }

    .ini-prog-body { padding: 32px 28px 36px; }

    .ini-prog-num {
      font-family: 'Cinzel', serif;
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .ini-prog-body h3 {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 18px;
      line-height: 1.3;
    }

    .ini-prog-body ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ini-prog-body ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text);
      font-style: italic;
    }

    .ini-prog-body ul li::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.55rem;
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* ══════════════════════════════════════════
       CLOSING QUOTE
    ══════════════════════════════════════════ */
    .ini-closing {
      background: var(--gold);
      padding: 72px 40px;
      text-align: center;
    }

    .ini-closing blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-style: italic;
      font-weight: 300;
      color: var(--ink);
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .ini-closing cite {
      display: block;
      font-family: 'Cinzel', serif;
      font-style: normal;
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      color: var(--ink);
      opacity: 0.5;
      margin-top: 20px;
      text-transform: uppercase;
    }

    /* ══════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════ */
    @keyframes iniUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 960px) {
      .ini-cultural-grid,
      .ini-education-grid,
      .ini-health-grid { grid-template-columns: 1fr; gap: 40px; }

      .ini-accent-quote { display: none; }
      .ini-programs-grid { grid-template-columns: 1fr; }

      .ini-cultural::before,
      .ini-education::before,
      .ini-health::before { font-size: 14rem; }
    }

    @media (max-width: 600px) {
      .ini-inner { padding: 0 24px; }
      .ini-hero  { padding: 100px 24px 70px; }
      .ini-stat-row { grid-template-columns: 1fr 1fr; }
    }

    
    /* ─────────────────────────────────────────
       FOUNDATION DESIGN TOKENS
    ───────────────────────────────────────── */
    :root {
      --gold:           #C9A84C;
      --gold-light:     #E8C97A;
      --gold-dim:       #7A6129;
      --ink:            #1A1208;
      --parchment:      #F7F0E2;
      --parchment-dark: #EDE0C4;
      --rust:           #8B3A2A;
      --cream:          #FAF5EA;
      --text:           #2C2010;
      --deep-green:     #1E3A2F;
    }

    /* noise grain */
    .fdn-wrap::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.45;
    }

    .fdn-wrap {
      background: var(--cream);
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
    }

    /* ── Shared label ── */
    .gi-label {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      letter-spacing: 0.42em;
      color: var(--gold);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 56px;
    }
    .gi-label::before { content:''; flex:1; height:1px; background:linear-gradient(to right, transparent, var(--gold-dim)); }
    .gi-label::after  { content:''; flex:1; height:1px; background:linear-gradient(to left,  transparent, var(--gold-dim)); }

    .gi-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    .gi-hero {
      max-height: 45vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 130px 40px 90px;
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }

    /* wax-seal ring */
    .gi-hero::after {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.07);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      box-shadow:
        0 0 0 50px  rgba(201,168,76,0.04),
        0 0 0 100px rgba(201,168,76,0.025),
        0 0 0 160px rgba(201,168,76,0.015);
      pointer-events: none;
    }

    .gi-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.11) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(139,58,42,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .gi-hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.44em;
      color: var(--gold);
      text-transform: uppercase;
      margin-top: 20px;
      opacity: 0;
      animation: giUp 0.9s 0.2s ease forwards;
      position: relative; z-index: 1;
    }

    .gi-hero-orn {
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: 0.6em;
      margin-bottom: 22px;
      opacity: 0;
      animation: giUp 0.9s 0.35s ease forwards;
      position: relative; z-index: 1;
    }

    .gi-hero h1 {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 5vw, 4.2rem);
      font-weight: 400;
      color: var(--parchment);
      line-height: 1.18;
      margin-bottom: 6px;
      opacity: 0;
      animation: giUp 0.9s 0.5s ease forwards;
      position: relative; z-index: 1;
    }

    .gi-hero h1 em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.15rem, 2.4vw, 1.9rem);
      color: var(--gold-light);
      margin-top: 8px;
    }

    .gi-hero-rule {
      width: 100px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 30px auto;
      position: relative;
      opacity: 0;
      animation: giUp 0.9s 0.7s ease forwards;
      z-index: 1;
    }
    .gi-hero-rule::before {
      content: '✦';
      position: absolute; top:50%; left:50%;
      transform: translate(-50%,-50%);
      color: var(--gold); font-size:0.65rem;
      background: var(--ink); padding: 0 6px;
    }

    .gi-hero-sub {
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      font-style: italic;
      color: rgba(247,240,226,0.6);
      max-width: 600px;
      line-height: 1.8;
      opacity: 0;
      animation: giUp 0.9s 0.9s ease forwards;
      position: relative; z-index: 1;
    }

    /* ══════════════════════════════════════════
       SECTION A — DIGITAL ARCHIVE (dark)
    ══════════════════════════════════════════ */
    .gi-archive {
      background: var(--ink);
      padding: 110px 0 90px;
      position: relative;
      overflow: hidden;
    }

    .gi-archive::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 0% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 100% 20%, rgba(139,58,42,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    /* large ghost text */
    .gi-archive .gi-ghost {
      position: absolute;
      right: -30px; top: 10px;
      font-family: 'Cinzel', serif;
      font-size: 18rem;
      font-weight: 600;
      color: rgba(201,168,76,0.04);
      line-height: 1;
      pointer-events: none; user-select: none;
    }

    .gi-archive .gi-label { position: relative; z-index: 1; }

    /* podcast cards in a horizontal tape */
    .gi-podcast-tape {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.2);
      position: relative; z-index: 1;
    }

    .gi-pod-card {
      background: rgba(255,255,255,0.02);
      padding: 44px 36px 48px;
      position: relative;
      overflow: hidden;
      transition: background 0.35s;
    }

    .gi-pod-card:hover {
      background: rgba(201,168,76,0.06);
    }

    /* animated underline on hover */
    .gi-pod-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }
    .gi-pod-card:hover::after { transform: scaleX(1); }

    .gi-pod-num {
      font-family: 'Cinzel', serif;
      font-size: 4.5rem;
      font-weight: 600;
      color: rgba(201,168,76,0.1);
      line-height: 1;
      margin-bottom: 10px;
    }

    .gi-pod-icon {
      font-size: 1.8rem;
      display: block;
      margin-bottom: 20px;
    }

    .gi-pod-tag {
      font-family: 'Cinzel', serif;
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .gi-pod-card h3 {
      font-family: 'Cinzel', serif;
      font-size: clamp(0.85rem, 1.5vw, 1.05rem);
      font-weight: 600;
      color: var(--parchment);
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .gi-pod-card p {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(247,240,226,0.6);
      font-style: italic;
    }

    /* format badge */
    .gi-pod-badge {
      display: inline-block;
      margin-top: 22px;
      font-family: 'Cinzel', serif;
      font-size: 0.54rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 5px 12px;
      border: 1px solid rgba(201,168,76,0.3);
      color: rgba(201,168,76,0.6);
    }

    /* ══════════════════════════════════════════
       SECTION B — LITERARY & PUBLISHING
    ══════════════════════════════════════════ */
    .gi-literary {
      background: var(--parchment);
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    .gi-literary::before {
      content: '"';
      position: absolute;
      left: -20px; top: -60px;
      font-family: 'Cinzel', serif;
      font-size: 30rem;
      color: rgba(201,168,76,0.055);
      line-height: 1;
      pointer-events: none; user-select: none;
    }

    .gi-lit-intro {
      max-width: 680px;
      margin: 0 auto 70px;
      text-align: center;
    }

    .gi-lit-intro h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 18px;
      line-height: 1.25;
    }

    .gi-lit-intro h2 em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--gold-dim);
      font-size: 0.78em;
      margin-top: 4px;
    }

    .gi-lit-intro p {
      font-size: 1.1rem;
      line-height: 1.85;
      color: var(--text);
      font-style: italic;
    }

    /* Book spine layout */
    .gi-books {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative; z-index: 1;
    }

    .gi-book {
      position: relative;
      background: var(--cream);
      border: 1px solid var(--parchment-dark);
      padding: 0;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 4px 6px 0 var(--gold-dim);
    }

    .gi-book:hover {
      transform: translateY(-6px);
      box-shadow: 8px 14px 0 var(--gold-dim);
    }

    /* spine stripe */
    .gi-book-spine {
      width: 100%;
      height: 8px;
    }

    .gi-book:nth-child(1) .gi-book-spine { background: var(--gold); }
    .gi-book:nth-child(2) .gi-book-spine { background: var(--rust); }
    .gi-book:nth-child(3) .gi-book-spine { background: var(--deep-green); }

    .gi-book-body { padding: 32px 28px 36px; }

    .gi-book-num {
      font-family: 'Cinzel', serif;
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      margin-bottom: 14px;
    }

    .gi-book:nth-child(1) .gi-book-num { color: var(--gold-dim); }
    .gi-book:nth-child(2) .gi-book-num { color: var(--rust); }
    .gi-book:nth-child(3) .gi-book-num { color: var(--deep-green); }

    .gi-book h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 1.8vw, 1.45rem);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .gi-book-divider {
      width: 36px; height: 1px;
      background: var(--gold-dim);
      margin-bottom: 16px;
    }

    .gi-book p {
      font-size: 0.98rem;
      line-height: 1.8;
      color: var(--text);
    }

    /* open-book icon bottom right */
    .gi-book-icon {
      font-size: 2.2rem;
      position: absolute;
      bottom: 16px; right: 20px;
      opacity: 0.1;
    }

    /* ══════════════════════════════════════════
       SECTION C — MEDICAL CLINIC (deep green)
    ══════════════════════════════════════════ */
    .gi-clinic {
      background: var(--deep-green);
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    }

    .gi-clinic::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 50% at 10% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .gi-clinic .gi-ghost {
      position: absolute;
      left: -20px; top: 0;
      font-family: 'Cinzel', serif;
      font-size: 18rem;
      font-weight: 600;
      color: rgba(255,255,255,0.025);
      line-height: 1;
      pointer-events: none; user-select: none;
    }

    .gi-clinic-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative; z-index: 1;
    }

    .gi-clinic .gi-label::before { background: linear-gradient(to right, transparent, rgba(201,168,76,0.4)); }
    .gi-clinic .gi-label::after  { background: linear-gradient(to left,  transparent, rgba(201,168,76,0.4)); }

    .gi-clinic-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      color: rgba(201,168,76,0.7);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .gi-clinic h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.8rem);
      font-weight: 400;
      color: var(--parchment);
      line-height: 1.25;
      margin-bottom: 28px;
      position: relative;
      padding-bottom: 24px;
    }

    .gi-clinic h2::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 48px; height: 2px;
      background: var(--gold);
    }

    .gi-clinic h2 em {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      color: rgba(247,240,226,0.55);
      font-size: 0.72em;
      margin-top: 6px;
    }

    .gi-clinic-desc {
      font-size: 1.1rem;
      line-height: 1.9;
      color: rgba(247,240,226,0.72);
      margin-bottom: 36px;
    }

    /* clinic feature list */
    .gi-clinic-features {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .gi-clinic-feat {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 18px;
      align-items: start;
      padding: 18px 0;
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .gi-clinic-feat:first-child { border-top: 1px solid rgba(201,168,76,0.1); }

    .gi-clinic-feat-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      background: rgba(201,168,76,0.08);
    }

    .gi-clinic-feat h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 6px;
    }

    .gi-clinic-feat p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: rgba(247,240,226,0.6);
      font-style: italic;
    }

    /* clinic visual panel */
    .gi-clinic-visual {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .gi-clinic-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: sepia(20%) brightness(0.8) contrast(1.1);
      border-radius: 2px;
      box-shadow: 10px 10px 0 rgba(201,168,76,0.2);
    }

    /* stat strip */
    .gi-clinic-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(201,168,76,0.15);
    }

    .gi-cstat {
      background: rgba(0,0,0,0.25);
      padding: 22px 16px;
      text-align: center;
    }

    .gi-cstat-num {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .gi-cstat-lbl {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 0.54rem;
      letter-spacing: 0.2em;
      color: rgba(247,240,226,0.4);
      text-transform: uppercase;
      margin-top: 8px;
    }

    /* ══════════════════════════════════════════
       SECTION D — GET INVOLVED (original cards)
    ══════════════════════════════════════════ */
    .gi-join {
      background: var(--cream);
      padding: 110px 0;
      position: relative;
    }

    .gi-join-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--gold-dim);
      border: 2px solid var(--gold-dim);
    }

    .gi-join-card {
      background: var(--cream);
      overflow: hidden;
      position: relative;
      transition: background 0.3s;
    }

    .gi-join-card:hover { background: var(--parchment); }

    .gi-join-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s;
      transform-origin: left;
    }

    .gi-join-card:hover::after { transform: scaleX(1); }

    .gi-join-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      filter: sepia(15%) contrast(1.05);
    }

    .gi-join-body { padding: 32px 28px 38px; }

    .gi-join-icon {
      font-size: 1.6rem;
      display: block;
      margin-bottom: 14px;
    }

    .gi-join-body h3 {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .gi-join-body p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text);
      font-style: italic;
    }

    /* ══════════════════════════════════════════
       SECTION E — COMMUNITY GUIDELINES
    ══════════════════════════════════════════ */
    .gi-guidelines {
      background: var(--parchment);
      border-top: 1px solid var(--parchment-dark);
      border-bottom: 1px solid var(--parchment-dark);
      padding: 90px 0;
    }

    .gi-guide-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 0;
    }

    .gi-guide-item {
      padding: 36px 30px 38px;
      background: var(--cream);
      border-top: 3px solid transparent;
      transition: border-color 0.3s, transform 0.25s;
    }

    .gi-guide-item:hover {
      border-top-color: var(--gold);
      transform: translateY(-4px);
    }

    .gi-guide-item-icon {
      font-size: 1.8rem;
      display: block;
      margin-bottom: 18px;
    }

    .gi-guide-item h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 12px;
    }

    .gi-guide-item p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text);
      font-style: italic;
    }

    /* ══════════════════════════════════════════
       CLOSING GOLD BANNER
    ══════════════════════════════════════════ */
    .gi-closing {
      background: var(--gold);
      padding: 72px 40px;
      text-align: center;
    }

    .gi-closing-stars {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 0.9em;
      color: var(--ink);
      opacity: 0.3;
      margin-bottom: 24px;
    }

    .gi-closing blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-style: italic;
      font-weight: 300;
      color: var(--ink);
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .gi-closing cite {
      display: block;
      font-family: 'Cinzel', serif;
      font-style: normal;
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      color: var(--ink);
      opacity: 0.5;
      margin-top: 20px;
      text-transform: uppercase;
    }

    /* ══════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════ */
    @keyframes giUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 960px) {
      .gi-podcast-tape,
      .gi-books,
      .gi-join-grid,
      .gi-guide-grid { grid-template-columns: 1fr; }

      .gi-clinic-grid { grid-template-columns: 1fr; gap: 40px; }
      .gi-clinic-stats { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 600px) {
      .gi-inner { padding: 0 24px; }
      .gi-hero  { padding: 110px 24px 80px; }
      .gi-clinic-stats { grid-template-columns: 1fr 1fr; }
    }

    :root {
      --gold:           #C9A84C;
      --gold-light:     #E8C97A;
      --gold-dim:       #7A6129;
      --ink:            #1A1208;
      --parchment:      #F7F0E2;
      --parchment-dark: #EDE0C4;
      --rust:           #8B3A2A;
      --cream:          #FAF5EA;
      --text:           #2C2010;
    }

    body {
      
      font-family: 'Cormorant Garamond', serif;
      color: var(--default-color);
      background-color: var(--background-color);
    }

    /* noise grain */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.4;
    }

    /* ── HERO IMAGE ── */
    .blog-featured-image {
      width: 100%;
      max-height: 520px;
      object-fit: cover;
      display: block;
      filter: sepia(12%) contrast(1.05);
    }

    /* gold rule under hero image */
    .blog-hero-rule {
      height: 4px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* ── PAGE LAYOUT ── */
    .blog-details-wrapper {
      background: var(--cream);
      padding: 0 0 100px;
    }

    .blog-layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 60px;
      align-items: start;
      padding-top: 60px;
    }

    /* ── ARTICLE ── */
    .blog-content {
      min-width: 0;
    }

    /* breadcrumb-style label */
    .blog-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.42em;
      color: var(--gold);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .blog-eyebrow::before {
      content: '';
      width: 40px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dim));
    }
    .blog-eyebrow::after {
      content: '';
      flex: 1; height: 1px;
      background: linear-gradient(to left, transparent, var(--gold-dim));
    }

    /* meta row */
    .meta-top {
      margin-bottom: 20px;
    }

    .meta-top ul {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      list-style: none;
      padding: 0; margin: 0;
    }

    .meta-top li {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
    }

    .meta-top li i {
      color: var(--gold);
      font-size: 0.75rem;
    }

    /* title */
    .blog-content h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.6rem);
      font-weight: 400;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 28px;
      position: relative;
      padding-bottom: 24px;
    }

    .blog-content h2::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 48px; height: 2px;
      background: var(--gold);
    }

    /* body prose */
    .blog-content > div,
    .blog-prose {
      font-size: 1.12rem;
      line-height: 1.95;
      color: var(--text);
    }

    .blog-content > div p,
    .blog-prose p {
      margin-bottom: 1.5em;
      font-size: 1.12rem;
      line-height: 1.95;
    }

    /* drop cap on first paragraph */
    .blog-content > div > p:first-of-type::first-letter {
      font-family: 'Cinzel', serif;
      font-size: 4rem;
      float: left;
      line-height: 0.75;
      margin: 8px 12px 0 0;
      color: var(--gold);
      font-weight: 600;
    }

    /* optional sub-heading */
    .blog-content h3 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.1rem, 1.8vw, 1.5rem);
      font-weight: 400;
      color: var(--ink);
      margin: 40px 0 18px;
      padding-left: 16px;
      border-left: 3px solid var(--gold);
    }

    /* inline images */
    .blog-content img.img-fluid {
      width: 100%;
      border-radius: 2px;
      filter: sepia(10%) contrast(1.04);
      box-shadow: 6px 6px 0 var(--gold-dim);
      margin: 32px 0;
    }

    /* blockquotes inside rich text */
    .blog-content blockquote {
      background: var(--parchment);
      border-left: 3px solid var(--gold);
      padding: 24px 28px;
      margin: 32px 0;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--rust);
    }

    /* ── DIVIDER ── */
    .blog-divider {
      width: 80px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 48px 0;
      position: relative;
    }
    .blog-divider::before {
      content: '✦';
      position: absolute; top:50%; left:50%;
      transform: translate(-50%,-50%);
      color: var(--gold); font-size: 0.6rem;
      background: var(--cream); padding: 0 6px;
    }

    /* ── SIDEBAR ── */
    .blog-sidebar {
      position: sticky;
      top: 100px;
    }

    .sidebar-block {
      background: var(--parchment);
      border: 1px solid var(--parchment-dark);
      padding: 28px 24px;
      margin-bottom: 24px;
      position: relative;
    }

    .sidebar-block::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
    }

    .sidebar-block h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--parchment-dark);
    }

    /* category pill */
    .sidebar-category {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 6px 14px;
      border: 1px solid var(--gold-dim);
      color: var(--gold-dim);
      margin: 4px 4px 4px 0;
      transition: background 0.25s, color 0.25s;
      text-decoration: none;
    }
    .sidebar-category.active,
    .sidebar-category:hover {
      background: var(--gold);
      color: var(--ink);
      border-color: var(--gold);
    }

    /* published date block */
    .sidebar-date {
      font-family: 'Cinzel', serif;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      color: var(--gold-dim);
      text-transform: uppercase;
    }

    .sidebar-date .day {
      font-size: 3rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      display: block;
      margin-bottom: 4px;
    }

    /* share / back link */
    .sidebar-back {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid var(--parchment-dark);
      transition: color 0.25s, gap 0.25s;
    }
    .sidebar-back:hover {
      color: var(--gold);
      gap: 14px;
    }
    .sidebar-back i { font-size: 0.8rem; }

    /* ── GOLD QUOTE CLOSER ── */
    .blog-closer {
      background: var(--gold);
      padding: 60px 40px;
      text-align: center;
      margin-top: 80px;
    }

    .blog-closer-stars {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.9em;
      color: var(--ink);
      opacity: 0.3;
      margin-bottom: 20px;
    }

    .blog-closer p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2vw, 1.6rem);
      font-style: italic;
      font-weight: 300;
      color: var(--ink);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .blog-closer cite {
      display: block;
      font-family: 'Cinzel', serif;
      font-style: normal;
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      color: var(--ink);
      opacity: 0.5;
      margin-top: 16px;
      text-transform: uppercase;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .blog-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
        padding-top: 40px;
      }
      .blog-sidebar { position: static; }
    }

    @media (max-width: 600px) {
      .blog-featured-image { max-height: 260px; }
      .blog-closer { padding: 48px 24px; }
    }
    :root {
      --gold:           #C9A84C;
      --gold-light:     #E8C97A;
      --gold-dim:       #7A6129;
      --ink:            #1A1208;
      --parchment:      #F7F0E2;
      --parchment-dark: #EDE0C4;
      --rust:           #8B3A2A;
      --cream:          #FAF5EA;
      --text:           #2C2010;
    }

    body {
      font-family: 'Cormorant Garamond', serif;
      color: var(--default-color);
      background-color: var(--background-color);
    }

    /* noise grain */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.4;
    }

    /* ── HERO IMAGE ── */
    .blog-featured-image {
      width: 100%;
      max-height: 520px;
      object-fit: cover;
      display: block;
      filter: sepia(12%) contrast(1.05);
    }

    /* gold rule under hero image */
    .blog-hero-rule {
      height: 4px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* ── PAGE LAYOUT ── */
    .blog-details-wrapper {
      background: var(--cream);
      padding: 0 0 100px;
      margin-top: 120px;
    }

    .blog-layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 60px;
      align-items: start;
      padding-top: 60px;
    }

    /* ── ARTICLE ── */
    .blog-content {
      min-width: 0;
    }

    /* breadcrumb-style label */
    .blog-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.42em;
      color: var(--gold);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .blog-eyebrow::before {
      content: '';
      width: 40px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dim));
    }
    .blog-eyebrow::after {
      content: '';
      flex: 1; height: 1px;
      background: linear-gradient(to left, transparent, var(--gold-dim));
    }

    /* meta row */
    .meta-top {
      margin-bottom: 20px;
    }

    .meta-top ul {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      list-style: none;
      padding: 0; margin: 0;
    }

    .meta-top li {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
    }

    .meta-top li i {
      color: var(--gold);
      font-size: 0.75rem;
    }

    /* title */
    .blog-content h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 3vw, 2.6rem);
      font-weight: 400;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 28px;
      position: relative;
      padding-bottom: 24px;
    }

    .blog-content h2::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 48px; height: 2px;
      background: var(--gold);
    }

    /* body prose */
    .blog-content > div,
    .blog-prose {
      font-size: 1.12rem;
      line-height: 1.95;
      color: var(--text);
    }

    .blog-content > div p,
    .blog-prose p {
      margin-bottom: 1.5em;
      font-size: 1.12rem;
      line-height: 1.95;
    }

    /* drop cap on first paragraph */
    .blog-content > div > p:first-of-type::first-letter {
      font-family: 'Cinzel', serif;
      font-size: 4rem;
      float: left;
      line-height: 0.75;
      margin: 8px 12px 0 0;
      color: var(--gold);
      font-weight: 600;
    }

    /* optional sub-heading */
    .blog-content h3 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.1rem, 1.8vw, 1.5rem);
      font-weight: 400;
      color: var(--ink);
      margin: 40px 0 18px;
      padding-left: 16px;
      border-left: 3px solid var(--gold);
    }

    /* inline images */
    .blog-content img.img-fluid {
      width: 100%;
      border-radius: 2px;
      filter: sepia(10%) contrast(1.04);
      box-shadow: 6px 6px 0 var(--gold-dim);
      margin: 32px 0;
    }

    /* blockquotes inside rich text */
    .blog-content blockquote {
      background: var(--parchment);
      border-left: 3px solid var(--gold);
      padding: 24px 28px;
      margin: 32px 0;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--rust);
    }

    /* ── DIVIDER ── */
    .blog-divider {
      width: 80px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 48px 0;
      position: relative;
    }
    .blog-divider::before {
      content: '✦';
      position: absolute; top:50%; left:50%;
      transform: translate(-50%,-50%);
      color: var(--gold); font-size: 0.6rem;
      background: var(--cream); padding: 0 6px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .blog-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
        padding-top: 40px;
      }
      .blog-sidebar { position: static; }
    }

    @media (max-width: 600px) {
      .blog-featured-image { max-height: 260px; }
      .blog-closer { padding: 48px 24px; }
    }
  