/* -------------------------------------------------------
   GLOBAL RESET
------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}


/* --------------------------------------
   NAVBAR (Dark Mahogany Theme)
--------------------------------------- */
/* -------------------------------------------------------------------------- */
/* NAVBAR BASE                                                                */
/* -------------------------------------------------------------------------- */
nav {
width: 100%;
  height: var(--nav-height);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 var(--space-lg);

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;

  transition: height 0.25s ease, padding 0.25s ease;
}

/* Scroll-shrink */
nav.shrink {
  height: var(--nav-height-shrink);
  padding: 0 var(--space-md);
}

/*.nav-top {
  height: var(--nav-height);
  transition: height 0.25s ease;
}
nav.shrink .nav-top {
  height: var(--nav-height-shrink);
}

nav ul {
  align-self: center;       
}*/

/* -------------------------------------------------------------------------- */
/* TOP ROW — LOGO + HAMBURGER                                                */
/* -------------------------------------------------------------------------- */


nav ul {
  white-space: nowrap;
}

nav {
  gap: var(--space-md);
}

.nav-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: var(--space-md); /* reduces right push */
}

/* Logo */
nav .logo {
  font-family: var(--heading-font);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-accent); /* Gold */
  transition: font-size 0.25s ease;
}

nav.shrink .logo {
  font-size: 1.45rem;
}

/* -------------------------------------------------------------------------- */
/* DESKTOP NAVIGATION                                                         */
/* -------------------------------------------------------------------------- */
nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

/* Hover underline */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Active page */
nav ul li a.active {
  color: var(--color-accent);
  font-weight: 600;
}

nav ul li a.active::after {
  width: 100%;
  left: 0;
  transform: none;
}

/* -------------------------------------------------------------------------- */
/* HAMBURGER (desktop hidden)                                                 */
/* -------------------------------------------------------------------------- */
.hamburger {
 display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;                   /* new */
  width: 28px;
  height: 24px;              /* increased for better spacing */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
 height: 3px;
  width: 100%;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X animation (fixed) */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/* MOBILE                                                                     */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  nav {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: var(--space-sm) var(--space-md);
     /* Ensure mobile menu is not right aligned */
    gap: var(--space-sm);
  }

  .nav-top {
    padding: 0; /* remove extra padding that pushed items right */
  }

  /* Stack nav items under nav-top */
  nav ul {
    display: none;           /* hidden by default */
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    align-items: flex-start; /* force left alignment */
  }

  nav ul.open {
    display: flex;
    background: var(--nav-bg);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);  /* optional */
  }

  /* Remove underline on mobile */
  nav ul li a::after {
    display: none !important;
  }

  /* Mobile active highlight */
  nav ul li a.active {
    border-left: 3px solid var(--color-accent);
    padding-left: 0.75rem;
    color: var(--color-accent);
  }

  /* Added to solve glitch Issue */
  nav,
  nav.shrink {
    height: auto !important;     
    padding: var(--space-sm) var(--space-md) !important;
    transition: padding 0.25s ease;
  }

  .nav-top {
    transition: padding 0.25s ease;
  }
}




/* -------------------------------------------------------
   HERO SECTION
------------------------------------------------------- */

/* ---------------------------
   HERO (Full-width centered)
   Requires: theme.css tokens (--nav-height, --color-accent, --color-bg, etc.)
---------------------------- */

:root {
  /* Local override (optional) — tweak for visual balance) */
  --hero-min-height: calc(100vh - var(--nav-height)); /* fills viewport minus navbar */
  --hero-content-max: 1000px;
  --hero-overlay: rgba(20, 12, 8, 0.48); /* dark warm tint for readability */
  --hero-accent-glow: rgba(201, 164, 108, 0.12);
}

/* HERO base */
.hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-min-height);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background image container (illustration placeholder) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/hero-bg-1.jpg); /* <- Replace with your illustrated artwork */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: saturate(0.95) contrast(0.98);
  transform: scale(1.03); /* subtle scale to avoid edge lines */
  will-change: transform;
}

/* Subtle slow parallax-ish movement (pure CSS) */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: hero-pan 30s linear infinite;
  }
  @keyframes hero-pan {
    0%   { transform: scale(1.03) translateY(0px); }
    50%  { transform: scale(1.03) translateY(-8px); }
    100% { transform: scale(1.03) translateY(0px); }
  }
}

/* Overlay for contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, var(--hero-overlay) 35%, rgba(0,0,0,0.22) 100%);
  mix-blend-mode: multiply;
}

/* Foreground container */
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--hero-content-max);
  padding: 2rem 1.25rem;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  text-align: center;
}

/* Content card look (subtle parchment panel behind text) */
.hero-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  padding: 2.25rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  max-width: 780px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.03);
  position: relative;
   z-index: 1;
}

/* Headline */
.hero-content h1 {
  margin: 0 0 0.6rem 0;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4.4vw, 2.6rem);
  line-height: 1.06;
  color: var(--color-bg);            /* parchment text on dark bg */
  text-shadow: 0 3px 10px rgba(0,0,0,0.45);
  letter-spacing: -0.02em;
}

/* Subline */
.hero-subline {
  margin: 0 0 1.6rem 0;
  color: rgba(246,240,229,0.95);     /* slightly warm parchment */
  font-size: clamp(0.98rem, 2.0vw, 1.125rem);
  line-height: 1.55;
}

/* Call to action group */
/* CTA group – glow properly behind buttons */
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
 /* z-index: 5; */           /* CTA buttons stay above the glow */
}

/*
.hero-ctas > * {
  position: relative;
  z-index: 10;           /* buttons above pseudo-element */
/*} */


/* Button spacing tweak to match your existing button classes */
.btn.btn-primary { min-width: 12rem; }
.btn.btn-secondary { min-width: 10rem; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-inner { padding: 2rem 1rem; }
  .hero-content { padding: 1.5rem 1rem; border-radius: 10px; }
  .hero-content h1 { font-size: clamp(1.6rem, 6.4vw, 2.1rem); }
  .hero-subline { font-size: 0.98rem; }
  .hero-ctas { gap: 0.6rem; }
  /*.hero-ctas::before {
    width: 180px;
    height: 18px;
    bottom: calc(-0.5 * var(--space-sm));
  }*/
}

/* Accessibility: ensure sufficient contrast for people zooming */
@media (prefers-contrast: more) {
  .hero-overlay { background: rgba(0,0,0,0.6); }
  .hero-content { box-shadow: 0 14px 40px rgba(0,0,0,0.48); }
}

/* Utility: swap background image quickly (no change to layout) */
.hero[data-image] .hero-bg {
  background-image: var(--hero-image);
}

/* Helpful comments:
 - Replace 'path/to/illustration.jpg' in .hero-bg with your high-res illustrated artwork.
 - For best results use a 2:1 to 3:1 landscape image (wide, not tall).
 - Keep file size optimized (jpeg/webp) for performance.
*/


/* ------------------------------------------
   OPTION A — LIGHT AESTHETIC ENHANCEMENT
   (Softened overlay, warm tint, airy glow)
------------------------------------------- */

/* Lighten overall visual mood */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 245, 230, 0.05) 0%,       /* subtle warm tint at top */
    rgba(20, 12, 8, 0.38) 38%,          /* lighter mid transition */
    rgba(0, 0, 0, 0.20) 100%
  );
}

/* Softer content card */
.hero-content {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(2.6px);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Headline — add gentle warm glow */
.hero-content h1 {
  text-shadow:
    0 2px 6px rgba(0,0,0,0.35),
    0 0 18px rgba(255, 215, 165, 0.18);  /* warm ambient glow */
}

/* Subline — brighten slightly */
.hero-subline {
  color: rgba(255, 245, 230, 0.98);
}

/* CTA glow — softer & more airy */
/*.hero-ctas::before {
  background: radial-gradient(
    circle at center,
    rgba(201, 164, 108, 0.10),
    transparent 65%
  );
  filter: blur(14px);
  opacity: 0.9;
}*/


/* ------------------------------------------
   HERO MICRO COPY (Option C)
------------------------------------------- */

.hero-microcopy {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(246, 240, 229, 0.82); /* warm parchment tint */
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  letter-spacing: 0.01em;
}




/* Position pagination dots nicely */
/*
.hero-swiper .swiper-pagination {
  bottom: 22px !important;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: 0.22s ease;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent); 
  transform: scale(1.25);
}*/

/* Minimal arrow style */
.hero-prev,
.hero-next {
  color: var(--color-accent); /* or var(--color-bg) for white */
  font-size: 32px;  /* arrow size */
  width: auto;
  height: auto;
  background: none; /* remove circle background */
  border: none;     /* in case any default border appears */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  padding: 4px; /* small touch target */
  z-index: 10;
}

/* Hover effect (subtle) */
.hero-prev:hover,
.hero-next:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* Position arrows */
.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-prev,
  .hero-next {
    font-size: 26px;
  }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
}


/* Slider Arrow Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #D4AF37 !important; /* Accent Golden */
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #f8e7a0 !important; /* Slightly brighter gold on hover */
}

.hero-swiper .swiper-slide {
  display: grid !important;
  place-items: center !important;
}

/* Mobile adjust */
@media (max-width: 768px) {
  .hero-prev,
  .hero-next {
    width: 36px;
    height: 36px;
  }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
}



/************************************************/

.btn-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ========================================================================== */
/* BUTTONS (Primary, Outline, Ghost, Subtle)                                  */
/* ========================================================================== */
/* -------------------------------------------------------
   BUTTONS — Updated to match current theme.css tokens
   (Keeps your original styles & interactions)
------------------------------------------------------- */

.btn {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}

/* -----------------------------
   PRIMARY BUTTON — Moss (tokenized)
   Normal: parchment text
   Hover: white text
------------------------------ */
.btn-primary {
  background: var(--btn-primary-bg);                    /* previously --color-moss */
  color: var(--color-bg);                               /* parchment text */
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--btn-primary-bg-hover);              /* previously --color-moss-dark */
  color: #ffffff;                                       /* white text on hover */
  outline: none;
  box-shadow: 0 6px 16px rgba(46,64,38,0.14);
}

/* Pressed */
.btn-primary:active {
  background-color: var(--btn-primary-bg-active);       /* previously --color-moss-darker */
  color: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.25);
  transform: translateY(1px);
}

/* -----------------------------
   SECONDARY BUTTON — Gold border
   Hover -> Mahogany border + text
------------------------------ */
.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);                           /* gold */
  border: 2px solid var(--color-accent);                /* gold border */
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: transparent;
  color: var(--color-primary);                          /* mahogany */
  border-color: var(--color-primary);
  outline: none;
  box-shadow: none;
}

/* Pressed */
.btn-secondary:active {
  background-color: transparent;
  color: var(--color-primary-dark);                     /* dark mahogany (teak) */
  border-color: var(--color-primary-dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
  transform: translateY(1px);
}



/* ---------------------------
   ABOUT SECTION — Cozy Story
---------------------------- */

/* ---------------------------
   ABOUT SECTION — Cozy Story
---------------------------- */

/* ---------------------------
   ABOUT SECTION — Cozy Story
---------------------------- */
/* ------------------------------------------
   ABOUT SECTION — Centered Cozy Story + Grid
------------------------------------------- */
.about-section {
width: 100%;
padding: 5rem 1.25rem;
background: var(--color-bg);
color: var(--color-text-dark);
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}


.about-title {
font-family: var(--heading-font);
color: var(--color-primary-dark);
text-align: center;
font-size: clamp(1.9rem, 4vw, 2.4rem);
font-weight: 700;
margin-bottom: 0.6rem;
}


.about-subtext {
max-width: 760px;
text-align: center;
font-size: clamp(1rem, 1.8vw, 1.2rem);
color: rgba(46,40,35,0.9);
line-height: 1.7;
}


.divider {
width: 180px;
margin: 2.2rem auto;
opacity: 0.9;
}


.two-col {
max-width: 1100px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 3rem;
align-items: center;
}

.two-col img {
width: 100%;
border-radius: 14px;
box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}


.two-col p {
font-size: clamp(1rem, 1.6vw, 1.14rem);
color: rgba(46,40,35,0.92);
line-height: 1.7;
margin-bottom: 1.5rem;
}

/*.two-col div p { margin-bottom: 1rem; }*/


.highlight-grid {
max-width: 1100px;
width: 100%;
margin-top: 4.2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.6rem;
}


.highlight-card {
background: var(--color-bg-light);
padding: 1.8rem 1.4rem;
border-radius: 16px;
border: 1px solid rgba(0,0,0,0.05);
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
transition: 0.25s ease;
}


.highlight-card {
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-primary-dark);
  opacity: 0.15;
}


.highlight-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}


.highlight-card h3 {
margin: 0 0 0.5rem 0;
font-size: 1.16rem;
color: var(--color-primary-dark);
}


.highlight-card p {
font-size: 0.98rem;
line-height: 1.6;
color: rgba(46,40,35,0.82);
}


.bottom-illustration {
width: 240px;
margin-top: 4rem;
opacity: 0.9;
}


@media(max-width: 850px) {
.two-col {
grid-template-columns: 1fr;
text-align: center;
}


.two-col img {
max-width: 360px;
margin: 0 auto;
}
}


/* sizing helpers */
.icon-materials-soft,
.icon-materials-illus {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 12px; /* places icon above title */
}

/* color override — if you want icons to follow theme color */
/* .icon-materials-soft *[fill="#d8b473"], */ /* the gradient stop won't be affected */
/*.icon-materials-soft [fill="#fff3e6"] { *//* non-theme fills left as light */
  /* keep these as-is for soft fill - do not override */
/*} */

/* For the illustrated icon, let strokes pick up primary color if desired */
.icon-materials-illus [stroke="#6c4a33"] {
  stroke: var(--color-primary-dark);
}
.icon-materials-illus [fill="#ffdcb6"] {
  fill: color-mix(in srgb, var(--color-accent) 40%, #ffdcb6 60%);
}

/* Example smaller size (for compact cards) */
.card .icon-materials-soft { width: 36px; height: 36px; margin-bottom: 10px; }


/* Highlight Icons */
.highlight-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  opacity: 0.92;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12));
  display: block;
}


/* ****************************** 
How it works section
-------------------------------------*/


/* Section spacing */
.how-section {
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
}

/* =============================================== */
/* HOW SECTION – Subtle Parchment Texture Overlay  */
/* =============================================== */

/* Option 1 — Subtle illustration backdrop (uses uploaded file) */
.how-section {
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
}

/* background layer */
.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/how-bg-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;                     /* adjust 0.04 - 0.20 */
  filter: saturate(0.85) blur(2px);  /* soften + desaturate */
  mix-blend-mode: multiply;          /* blends with parchment */
  pointer-events: none;
  z-index: 0;
}

/* ensure content sits above artwork */
.how-title,
.how-tagline,
.how-steps,
.how-clarifier,
.how-ctas {
  position: relative;
  z-index: 2;
}



/* Title */
.how-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.how-tagline { 
  font-size: clamp(1rem, 1.6vw, 1.14rem); 
  color: rgba(46,40,35,0.92);; 
  text-align: center; 
  margin: 0 0 3rem; 
  letter-spacing: 0.01em; 
}

.how-clarifier {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.7;
  color: rgba(46,40,35,0.92);
  text-align: center;
  margin: 3rem auto 1rem;
  opacity: 0.9;
  max-width: 900px;
}



/* Horizontal timeline line (desktop) */
/* Horizontal timeline line (desktop) */
.how-steps {
  position: relative; /* reference for absolute positioning */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}

.how-line {
  position: absolute;
  top: 50%;    
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 90%);
  height: 2px;
  background: rgba(0,0,0,0.08);
  z-index: 0;
}


/* Cards (style B = clean minimal) */
.how-card {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}
.how-card {
  min-height: 240px;
  transform: translateZ(0);
  will-change: transform, opacity;
}


.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}

/* Icon */
.how-icon {
  margin-bottom: 1rem;
}

/* Text styles */
.how-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.how-step-text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(46,40,35,0.9);
}


  /* CTA group */
  .how-ctas { 
    display: flex; 
    gap: 0.9rem; 
    justify-content: center; 
    margin-top: 3rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

/* MOBILE STACK */
  @media (max-width: 820px) {

  .how-line {
    display: none; /* hide horizontal line */
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    position: relative;
  }

  /*.how-step {
    position: relative;
  }*/


  .how-card {
    position: relative;
    z-index: 2; /* card always stays above the line */
  }

  
  .how-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -110%);
    width: 2px;
    height: 28px;   /* visually consistent connector */
    background: rgba(0,0,0,0.1);
    z-index: 1;
  }


  .how-card:first-child::before {
    display: none;
  }


}

/********************************
**** PRICING SECTION ***********
**********************************/
/* ------------------------- */
/* Pricing Section Layout    */
/* ------------------------- */
/* ------------------------- */
/* Pricing Section - Wooden Theme */
/* ------------------------- */
/* ------------------------- */
/* Pricing Section - Wooden Theme Using Existing Tokens */
/* ------------------------- */
/* ============= GLOBAL WRAPPER ============= */
.section-wrapper {
  max-width: 1180px; /* slightly reduced for better center focus */
  margin: 0 auto;
  padding: 0 1rem; /* gives breathing room on left/right */
}

/* ============= BASE SECTION ============= */
.pricing-section {
  padding: 5rem 2.5rem;
  background: var(--color-bg);
  text-align: center;
}

/* Centering headings better */
.pricing-section h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.14rem); 
  color: rgba(46,40,35,0.92);; 
  text-align: center; 
  margin: 0 0 2rem; 
  letter-spacing: 0.01em; 
}


/* ============= TABS ============= */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.tab-btn {
  padding: 10px 22px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: 0.25s ease;
}

.tab-btn.active {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* keep tab-content consistent */
.tab-content { display: none; }
.tab-content.active { display: block; }







/* ============= 4-CARD DESKTOP GRID ============= */
.pricing-grid {
  display: grid;
  gap: 1rem;
  justify-items: center; /* ensures even centering */
  justify-content: center;
  margin-top: 1rem;
}

.pricing-grid.onetime {
  grid-template-columns: repeat(4, max-content);
}

.pricing-grid.monthly {
  grid-template-columns: repeat(3,  minmax(260px, auto));
}

@media(max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 320px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .pricing-grid.onetime,
  .pricing-grid.monthly {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .pricing-grid.onetime,
  .pricing-grid.monthly {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRICE CARD — GUILD THEME (Compact)
============================================ */

/* Card Container */
.price-card {
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  /*padding: 1.4rem 1.2rem;*/    /* reduced (more compact) */
  padding: 1rem 0.9rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;                 /* tighter vertical balance */
  max-width: 260px;          /* slightly narrower */
  min-height: auto;
  position: relative;
  overflow: visible;
}




.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Header — fixed alignment */
.pc-header {
  text-align: center;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;        /* ensures title/price/tagline centered */
  justify-content: center;
  gap: 6px;
  padding-top: 4px;           /* small nudge so it visually centers inside card */
}

.pc-title {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.2rem;
}

.pc-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-accent);
  padding: 0.3rem;
  line-height: 1;
}

.pc-tagline {
  font-size: 0.85rem;
  color: rgba(46,40,35,0.80);
  font-style: italic;
  line-height: 1.25;
  max-width: 92%;
}

/* ========== ACCESS DETAILS FIXED ALIGNMENT ========== */
.pc-access {
  background: rgba(201,164,108,0.07);
  padding: 0.8rem 1rem 0.7rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Every row now aligns icon → content perfectly */
.pc-stat {
  display: flex;
  /*align-items: center;*/
  align-items: flex-start;        /* align content to top so label sits above smaller text */
  gap: 0.75rem;
}

/* Fixed-width icon box for uniform alignment */
.stat-icon {
  width: 24px;
  font-size: 1.1rem;
  opacity: 0.9;
  text-align: center; /* ensures perfect icon alignment */
}

.stat-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* LEFT aligned now */
}

.stat-label {
  font-size: 0.65rem;
  color: rgba(46,40,35,0.60);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.stat-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

/* Offer Sentence */
.pc-offer {
  background: rgba(201,164,108,0.10);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-primary-dark);
}

.pc-offer .strong {
  font-weight: 700;
  color: var(--color-accent);
}

/* Effective Hourly Rate */
.pc-effective {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(46,40,35,0.80);
}

.pc-effective .strong {
  font-weight: 700;
  color: rgba(32, 28, 24, 0.85);
}

/* Group Pack Badge */
.group-badge {
  z-index: 15; /* Make sure it appears above the card shadow */
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* --------- PERK BLOCK (NEW) --------- */
.pc-perk {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(212,162,76,0.06), rgba(244,233,207,0.00));
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.06);
  margin-top: 6px;
  display: flex;
  flex-direction: column;
}

/* perk icon */
.perk-icon {
  flex: 0 0 24px;
  width: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-accent);
}

/* perk body */
.perk-body { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.perk-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(46,40,35,0.60);
  /*color: var(--color-primary-dark);*/
}

.perk-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

/* optional extra line inside perk-text (guest pass etc) */
.perk-extra {
  font-size: 0.86rem;
  color: rgba(46,40,35,0.75);
  margin-top: 6px;
}

/* Header: Icon + Title */
.pack-perk-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Perk body */
.pack-perk-body {
  margin: 0;
  padding: 0;
}

.pack-perk-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pack-perk-body li {
  margin-bottom: 8px;
  line-height: 1.4;
  text-align: left;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

/*****************
Add-on tab
*************/
/* ------------------------------------------------------
   ADD-ON PACKS — GRID LAYOUT
------------------------------------------------------- */
/* GRID LAYOUT */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 180px);
  grid-auto-rows: auto;
  gap: 1.2rem;
  justify-content: center; /* center all rows */
  margin-top: 1.5rem;
}

/* REGULAR ADD-ON CARD */
.addon-card {
  width: 180px;
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.6rem;
  transition: transform .25s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
}

.addon-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-accent);
  padding: 0.3rem;
  line-height: 1;
}

.addon-benefit {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin: 0.4rem 0;
  line-height: 1.15rem;
}

.addon-validity {
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.addon-validity .label {
  font-weight: 500;
  opacity: 0.65;
}

.addon-validity .value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}


/* BULK ADD-ON CARD */
.bulk-card {
  grid-column: span 2;
  width: 100%;
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform .25s ease;
  max-width: 380px;
  position: relative;
  overflow: visible;
}

.bulk-card:hover {
  transform: translateY(-4px);
}

/* Special tag */
/*.bulk-tag {
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  width: fit-content;
}*/

.bulk-tag {
  z-index: 15; /* Make sure it appears above the card shadow */
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* Bulk header */
.bulk-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-accent);
}

.bulk-price .unit {
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 0.2rem;
  color: var(--color-primary-dark);
  opacity: 0.9;
}

.bulk-body {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4rem;
  margin-top: 0.3rem;
}

/* Validity */
.bulk-validity {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.10);
  padding-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.bulk-validity .label {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.65;
}

.bulk-validity .value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}


/* MOBILE — Maintain horizontal layout but shrink cards */
@media (max-width: 480px) {
  .addon-grid {
    grid-template-columns: repeat(2, 160px);
    gap: 1rem;
  }

  .addon-card {
    width: 160px;
    padding: 0.8rem;
  }

  .bulk-card {
    grid-column: span 2;
    max-width: 320px;
    margin: 0 auto;
    padding: 1rem;
  }

  .addon-price {
    font-size: 1.7rem;
  }
}



/******
T&C
**********/

.pricing-tnc {
  margin-top: 2.5rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.tnc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.6rem;
}

.tnc-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.87rem;
  line-height: 1.35rem;
  color: rgba(0,0,0,0.75);
}

.tnc-list li {
  margin-bottom: 0.4rem;
}

.tnc-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.tnc-link:hover {
  text-decoration: underline;
}


/********
Pricing Extra
**********/

/* Container spacing */
.pricing-extra {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: start;
  margin: 2rem auto 1rem;
  max-width: 70%;
}


/* MOBILE — Maintain horizontal layout but shrink cards */
@media (max-width: 480px) {
  .pricing-extra {
    max-width: 95%;
  }
}

/* CTA */
.pricing-cta {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  align-self: center;
}


/* Disclaimer */
.pricing-disclaimer ul {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.85;
}


/* Accordion */
.pricing-accordion {
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  overflow: hidden;
  /*background: var(--color-surface);*/
}

.acc-btn {
  width: 100%;
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-surface);
  border: none;
  cursor: pointer;
  outline: none;
  color: var(--color-primary);
  position: relative;
}

.acc-btn::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.3rem;
  transition: 0.3s;
}

.acc-btn.active::after {
  content: "-";
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 1rem;
}

.acc-panel ul {
  padding: 0.8rem 0 1.2rem 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
}




/* -------------------------------------------------------
   SECTION WRAPPER
------------------------------------------------------- */

.section {
  padding: var(--space-xl) var(--space-lg);
}

.section h2 {
  font-family: var(--heading-font);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}




/* -------------------------------------------------------
   GRID (for Facilities, New Arrivals, etc.)
------------------------------------------------------- */

.grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: var(--space-md);
}

.card {
  background: var(--color-surface);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}


/* -------------------------------------------
CONTACT SECTION
----------------------------------------- */


/* =========================================
   CONTACT SECTION — LAYOUT
========================================= */
/* ============================================================
   CONTACT SECTION — Emberwood Guild Theme
   ============================================================ */

.contact-section {
  padding: 5rem 1.25rem;
 /* padding: var(--space-xxl) var(--layout-padding);*/
  background: var(--color-bg);
  color: var(--color-text);
  position: relative;
}

/* background layer */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/how-bg-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;                     /* adjust 0.04 - 0.20 */
  filter: saturate(0.85) blur(2px);  /* soften + desaturate */
  mix-blend-mode: multiply;          /* blends with parchment */
  pointer-events: none;
  z-index: 0;
}

/* Container */
.contact-section .container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact-header h2 {
  font-family: var(--heading-font);
  font-size: var(--text-xxl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.contact-header p {
  font-family: var(--body-font);
  color: var(--color-text-light);
  font-size: var(--text-lg);
}

/* DETAILS ROW */
/* ============================================================
   UPDATED CONTACT DETAILS — 2-COLUMN GRID + GROUPED SECTIONS
   ============================================================ */
/* CONTACT INFO GRID (No Box, Minimal, Balanced) */
/* ===========================
   CONTACT DETAILS (No box)
   Layout: Address+Hours -> divider -> Contacts+Email
   Uses Emberwood theme tokens
   =========================== */

.contact-details-area {
  width: 100%;
  /* subtle light tint using theme primary-light rgb */
  background: rgba(var(--color-primary-light-rgb), 0.09); /* very gentle tint */
  border-radius: 1rem;
  padding: 3rem 2.25rem;     /* vertical breathing */
  margin-top: 2.25rem;
  color: var(--color-text);
}

.contact-details-inner {
  max-width: var(--layout-max-width);
  margin-inline: auto;
  padding: 0 var(--layout-padding);
}

/* TOP: address + hours side-by-side on wide screens */
.cd-top {
  display: grid;
  grid-template-columns: 1fr 420px; /* left flexible, right fixed-ish for hours */
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-lg);
}

/* columns base */
.cd-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
}

/* Titles */
.cd-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 800;
  margin: 0 0 6px 0;
  line-height: 1.1;
}

/* Body text */
.cd-text,
.contact-details-area address {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
}

/* Subtle divider (thin, centered, mahogany/gold tint) */
.cd-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(var(--color-primary-dark-rgb), 0.06) 0%,
    rgba(var(--color-accent-rgb), 0.12) 40%,
    rgba(var(--color-accent-rgb), 0.12) 60%,
    rgba(var(--color-primary-dark-rgb), 0.06) 100%
  );
  margin: var(--space-md) 0;
  border-radius: 1px;
}

/* BOTTOM: contact items grid */
.cd-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: start;
}

/* Individual contact item */
.cd-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
}

.cd-item-title {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.75;
  margin: 0;
  line-height: 1.1;
}

/* clickable links (tel/mail/wa) */
.cd-link {
  font-family: var(--body-font);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

/* hover accent */
.cd-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .cd-top {
    grid-template-columns: 1fr 300px;
  }

  .cd-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-details-area {
    padding: var(--space-md) 0;
  }

  .cd-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cd-bottom {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .cd-title {
    font-size: var(--text-md);
  }

  .cd-item-title,
  .cd-link {
    font-size: var(--text-md);
  }
}




/* FORM + MAP WRAPPER */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
  margin-top: 1.25rem;
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
}

.contact-form h3 {
  font-family: var(--heading-font);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.form-group.full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  font-family: var(--body-font);
  font-size: var(--text-md);
  background: var(--color-bg);
  color: var(--color-text);
}

/* BUTTON (uses your theme tokens) */
.contact-form .btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  font-weight: var(--btn-font-weight);
  width: 100%;
  margin-top: var(--space-sm);
}

.contact-form .btn-primary:hover {
  background: var(--btn-primary-bg-hover);
  color: var(--btn-primary-text-hover);
}

.contact-form .btn-primary:active {
  background: var(--btn-primary-bg-active);
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}


/* ===========================
   ICON STYLES
   =========================== */

.cd-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.cd-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-light);       /* Mahogany */
  transition: fill 0.25s ease;
}

/*.cd-title:hover .cd-icon svg,
.cd-item-title:hover .cd-icon svg {
  fill: var(--color-accent);             
}*/

/* Add small alignment adjustment */
.cd-title,
.cd-item-title {
  display: flex;
  align-items: center;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
}


/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */

footer {
  background: var(--color-primary-dark);
  color: #fff;
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-xl);
}
