/* =====================================================
   CARD SYSTEM
===================================================== */

.c-choice{
    cursor:pointer;
    user-select:none;
    font-size: 0.95rem;
    font-weight: 400;
    min-height:56px;

    padding:var(--space-3) var(--space-4);

    border: 1px solid var(--border);

    border-radius:var(--radius-md);

    background:var(--surface);

    transition:
        background var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

.c-choice:hover{
    transform:translateY(-2px);
}

.c-choice.is-selected{

    transform:translateY(-3px);

    border-color:var(--surface-accent-dark);

    background:var(--surface-accent-light);

    box-shadow:
        0 12px 30px rgba(0,0,0,.12);

}

.c-choice:focus-visible{

    outline:3px solid var(--surface-accent);

    outline-offset:3px;

}

/* =====================================================
   PACKAGE CARD SELECTED STATE
===================================================== */

.c-choice.is-selected .price {
  color: var(--text);
}

.choice-card > *{
    margin:0;
}

.choice-card > * + *{
    margin-top:var(--space-2);
}
/* Hide choice checkboxes visually but keep them accessible */
.choice-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Hide radio controls visually but keep them functional */
.choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.card-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:var(--space-2);

    width:100%;

}

/* =====================================================
   THREE-COLUMN FEATURE CARDS
===================================================== */

.three-column-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.three-column-card {
    border: 1px solid var(--border);
    border-radius: 7px;
    background: transparent;
    padding: 28px 26px;
    box-sizing: border-box;
}

/* Subtle hover treatment */
.three-column-card:hover {
    border-color: #cfcfcf;
}

@media (max-width: 800px) {

    .three-column-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .three-column-card {
        padding: 24px 22px;
    }

}

/* =========================================================
   QUICK PACKAGE COMPARISON
   Horizontal scroll + sticky feature column
   ========================================================= */

#matrix .table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
}

#matrix table {
    min-width: 650px;
    width: max-content;
    border-collapse: separate;
    border-spacing: 0;
}

/* Sticky Feature Column */
#matrix th:first-child,
#matrix td:first-child {
    position: sticky;
    left: 0;
    width: 145px;
    min-width: 145px;
    max-width: 145px;
    background: #fff;
    z-index: 2;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.08);
}

/* Sticky Feature Header */
#matrix thead th:first-child {
    z-index: 3;
}

/* Package Columns */
#matrix th:not(:first-child),
#matrix td:not(:first-child) {
    min-width: 125px;
}

/* Mobile */
@media (max-width: 700px) {

    #matrix table {
        min-width: 600px;
    }

    #matrix th:first-child,
    #matrix td:first-child {
        width: 155px;
        min-width: 155px;
        max-width: 155px;
    }

    #matrix th:not(:first-child),
    #matrix td:not(:first-child) {
        min-width: 110px;
    }
}


/* =====================================================
   C-CARD RESULTS
===================================================== */
.c-card {
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.c-card--result {
  font-size: var(text-md);
  margin-top: var(--space-6);
  padding: var(--space-6);
    text-align: center;
  background: var(--surface-sage-light);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
}

.c-card--result h3 {
  margin: 0;
  text-align: center;
  font-size: var(--step-2);
}

.c-card--result > .beverage-result-content > p {
  margin-top: var(--space-3);
  margin-bottom: 0;
  text-align: center;
  font-size: var(--step-1);
}

.beverage-results {
  margin-top: var(--space-5);
}

/* ==========================================
   PACKAGE SELECTION CARD
========================================== */

.package-title{

    font-size:1.15rem;

    font-weight:700;

}

.package-price-note{

    font-size:.95rem;

    font-weight:400;

}

.package-price-note{
    margin:.35rem 0 1rem;
    font-size:.88rem;
    color:var(--text-muted);
    text-align:center;
    line-height:1.4;
}

.package-price-note strong{
    font-weight:600;
    color:var(--text);
}

.price{

    font-size:0.95rem;

    font-weight:500;
    
    display: block;

  margin-bottom: var(--space-3);

  color: var(--text);
    
     max-width: 36ch;
    
    text-align: center;
    margin: var(--space-2) 0;

}

.package-note {
  margin-top: auto;          /* or 1rem — choose one */
  text-align: left;
  font-size: 0.955rem;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.9;
}

.package-note li {
  margin-bottom: 0.5rem;
}

.package-description--featured{
    font-size:1.05rem;
    font-weight:500;
    color:var(--text);
    line-height:1.5;
}

.package-highlight{
    margin:.6rem 0 1rem;
    font-size:1.08rem;
    font-weight:500;
    line-height:1.45;
    color:var(--text);
}

   /* NEW CHOICE STYLES */ 

.choice-card{
    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    gap:var(--space-2);

    padding:var(--space-4);

    min-height:90px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius-lg);

    box-shadow:0 4px 16px rgba(0,0,0,.05);

    transition:
        background var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

.choice-card:hover{

    border-color:var(--surface-accent-dark);

    box-shadow:
        0 10px 28px rgba(0,0,0,.08);

}


.choice-card--compact{
    min-height:56px;
    padding:var(--space-3);
}



.choice-card input[type="checkbox"],
.choice-card input[type="radio"]{

    position:absolute;

    opacity:0;

    pointer-events:none;

}

.choice-title {

    font-size: var(--text-base);

    font-weight: 600;

    color: var(--text);

    margin-bottom: .45rem;

}

.choice-price {

    font-size: var(--text-sm);

    font-weight: 700;

    color: var(--text);

}

.pa--pill{
    min-height:56px;

    padding:0 var(--space-4);

    border-radius:999px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    white-space:normal;
    line-height:1.3;
}


/* TITLE MUST BE COMPLETELY SEPARATE FLOW */
.progress-title {
  display: block;
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

/* TRACK (BACKGROUND BAR) */
.progress-track {
  width: 100%;
  height: 8px;
  background: #e5e5e5;
  border-radius: 999px;
  overflow: hidden;

  /* IMPORTANT: prevents overlap */
  position: relative;
  z-index: 1;
}

/* FILL BAR */
.progress-bar {
  height: 100%;
  width: 0%;
  background: #499FAF;
  transition: width 0.3s ease;
}

.card-header {
    text-align: center;
}

.package-title {
    text-align: center;
}



/* =====================================================
   BUTTON VARIANTS
===================================================== */

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);

  border: 1px solid var(--border);

  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;

  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;

  cursor: pointer;

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;

  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #000;
}

.c-button,
.c-button:visited,
.c-button:hover,
.c-button:active {
  color: #000;
  text-decoration: none;
}

.c-button:hover {
  transform: translateY(-1px);
    background: color-mix(in srgb, var(--brand-accent) 82%, white);
    color: var(--text);
}
.c-button--secondary {
  background: var(--surface);
  border-color: var(--border);
}

.c-button--ghost {
  background: transparent;
  border-color: var(--border);
}

.c-button--block {
  width: 100%;
}

.c-button--pill {
  border-radius: 999px;
}


/* =====================================================
   FORM SYSTEM
===================================================== */

.c-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
    
}

.form-group {
    font-size: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group select,
.form-group input[type="date"] {
    font-size: 1rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-sizing: border-box;
    font: inherit;
}
.form-group select {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
}

.form-group select.is-selected {
    background: var(--surface-accent-light);
}


.form-group select:focus,
.form-group input[type="date"]:focus {
    border-color: var(--surface-accent-dark);
    outline: none;
}

.c-form-group {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-8);
    width: 100%;
}
.c-form-group--center {
  display: flex;
  justify-content: center;
  align-items: center; /* important for true centering context */
}

.form-group textarea {
    width: 100%;
    min-height: 140px;
    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    
    font: inherit;
    line-height: 1.4;

    resize: vertical;
}

.event-details-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    width: 100%;
}

.result-box {
  text-align: center;
  width: fit-content;   /* key change */
  max-width: 480px;

  margin: 0 auto;       /* backup centering safety */

  display: flex;
  flex-direction: column;
  align-items: center;  /* ensures inner text block is centered as a unit */

  padding: 2rem;
}


.c-form-label {
  font-weight: 600;
  line-height: 1.4;
}

.c-form-control {
  width: 100%;
  padding: var(--space-3);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  font: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
    
  min-height: 48px;
    
}

.c-form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 44, 255, 0.15);
}

select.c-form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="date"].c-form-control {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
/* =====================================================
   RESULT DISPLAY
===================================================== */

.c-result {
  text-align: center;
}

.c-result__amount {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.c-result__label {
  opacity: 0.75;
}


/* =====================================================
   PROGRESS
===================================================== */

.c-progress {
  width: 100%;
  height: 10px;

  background:var(--surface-accent-light);

  border-radius: 999px;

  overflow: hidden;
}

.c-progress__fill {
  height: 100%;
  width: 0%;

  background:
    linear-gradient(
      90deg,
      var(--surface-full),
      var(--accent)
    );

  transition: width 0.3s ease;
}


 /* IMAGE WRAPPER (this is CRITICAL)*/ 
.img-wrap {
  width: 100%;
  height: 100%;

  display: block;
  overflow: hidden;

  border-radius: var(--radius-sm);
}

/* =========================================
   IMAGE GRID layout
========================================= */
.image-grid {
  column-count: 3;
  column-gap: 16px;
}

.image-grid img {
  width: 100%;
  margin-bottom: 16px;
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}
  
/* =====================================================
   GALLERY COMPONENT
===================================================== */

.gallery {
  display: grid;
  gap: var(--space-4);
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(-webkit-radius-sm;
  -moz-radius-SM: ;
  -ms-radius-SM: ;
  -o-radius-SM: ;
  radius-SM: ;);
}

/* =====================================================
   STANDARD GRID
===================================================== */

.gallery--grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery--grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* =====================================================
   FEATURE GRID
===================================================== */

.gallery--feature {
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 250px;
}

.gallery__feature {
  grid-column: span 2;
  grid-row: span 2;
}

/* =====================================================
   EDITORIAL GRID
===================================================== */

.gallery--editorial {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
}

.gallery__wide {
  grid-column: span 6;
}

.gallery__large {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery__small {
  grid-column: span 2;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .gallery--grid-4,
  .gallery--grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery--feature,
  .gallery--editorial {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery__feature,
  .gallery__wide,
  .gallery__large,
  .gallery__small {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {

  .gallery--grid-4,
  .gallery--grid-3 {
    grid-template-columns: 1fr;
  }
}

/*==================================================
    GALLERY COMPONENT
==================================================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:var(--space-4);
    align-items:start;
}

@media (max-width:900px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:600px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

/* a margin around the layout */
#package-estimator-layout .grid > * {
  margin: var(--space-4);
}
.grid-section-title {
  grid-column: 1 / -1;
  margin-bottom: var(--space-1);
  margin-top: var(--space-5);
}

#package-estimator-layout .c-grid {
  column-gap: var(--space-6);
  row-gap: var(--space-5);
}

.estimator-heading {
  grid-column: 1 / -1;
}
.estimator-intro {
  display: grid;
  row-gap: var(--space-3);
}
.estimator-intro h2,
.estimator-intro p {
  margin-bottom: var(--space-3);
}

.estimator-intro p:last-child {
  margin-bottom: 0;
}
.estimator-section {
  margin-block: var(--space-7);
}

.estimator-panel {
  display: none;
}

.estimator-panel.is-selected {
  display: block;
}


/* =========================================
   SITE HEADER (v2 SYSTEM) KEEP
========================================= */

.site-header {
  width: 100%;
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

   /* TOP BAR */
.site-header__topbar {
  width: 100%;
  background: var(--surface-accent);
  padding: 10px 0;
}

.site-header__inner {
    width: min(1400px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 320px;

    align-items: center;
    gap: var(--space-6);
}


 /* HEADER COLUMNS */
.site-header__left,
.site-header__center,
.site-header__right {
  display: flex;
  flex-direction: column;
}

 /* LOGO */
.site-header__logo {
  max-width: 200px;
  height: auto;
  display: block;
}

 /* CENTER CONTENT (TRUST + PHONE) */
.site-header__trustline {
  color: var(--text-inverse);
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-header__phone {
  color: var(--text-inverse);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

 /* RIGHT TAGLINE */
.site-header__tagline {
  color: var(--text-inverse);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

  /* MICRO HERO */
/* =========================================
   SITE HEADER HERO
========================================= */

.site-header__hero {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem) 2.5rem;
    text-align: center;
    /*background: var(--color-sage-light, #eef1eb)*/;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.site-header__hero > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.site-header__hero h1,
.site-header__hero-title {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
}

.site-header__hero p,
.site-header__hero-subtitle {
    margin: 15px auto;
    max-width: 60ch;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.6;
    opacity: .9;
}

.site-header__hero .btn,
.site-header__hero .button {
    margin-top: 1.5rem;
}

.site-header__microhero {
  background: var(--surface-accent-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
}

.site-header__microtext {
  max-width: 100ch;
  margin: 0 auto;

  font-size: 0.95rem;   /* slightly larger than 14px */
  line-height: 1.5;

  color: var(--text-strong);  /* darker than default muted text */
  text-align: center;
}

@media (max-width: 480px) {

  .site-header__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

}

@media (max-width:768px) {

    .site-header__inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .site-header__left,
    .site-header__center,
    .site-header__right{
        align-items:center;
    }

    .site-header__right{
        display:none;
    }

    .site-header__trustline{
        font-size:.875rem;
        line-height:1.4;
    }

    .site-header__microhero{
        display:none;
    }

}

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

.hero__content {
  max-width: 760px;
}

.hero__eyebrow {


    text-transform:uppercase;

    letter-spacing:.08em;

    font-size:.875rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 600;

  color: var(--builder-text-light);
}

.hero__title {
  margin: 0 0 1rem;

  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.1;
  font-weight: 700;

  color: var(--text);
}

.hero__subtitle {
  margin: 0 0 1.05rem;

  max-width: 75rem;

  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.6;
  font-weight: 500;

}

.hero__highlight {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__micro {
  font-size: clamp(.9rem, 2vw, .95rem);
  color: var(--text);
  font-weight: 500;
}

/* =====================================================
   THEME HEADER
===================================================== */

.theme-title {
  margin: 0;

  font-size: var(--text-xl);
  font-weight: 600;

  color: white;
}

/* =====================================================
   NAV ROOT (STRUCTURE FIX)
===================================================== */
.site-nav {
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}


 /* REMOVE BULLETS (SUBNAV TOO)*/   

.site-subnav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  flex-wrap: nowrap;

  gap: var(--space-4);

  list-style: none;
  margin: 0;
  padding: var(--space-3) 0;
}

.site-subnav__list li {
  display: inline-flex;
  flex-shrink: 0;
}

.site-subnav__list a {
  white-space: nowrap;
}

.site-nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

 /* BASE LINK STYLE (UNIFIED PREMIUM STYLE)*/  
.site-nav__list a,
.site-subnav__list a,
.site-nav__dropdown a {
  position: relative;
  display: inline-flex;
  align-items: center;

  gap: 6px;

  padding: var(--space-2) var(--space-3);

  background: transparent;
  border-radius: 0;

  color: var(--text-muted);
  text-decoration: none;

  transition: color 180ms ease, transform 180ms ease;
}

.site-nav__dropdown .site-nav__link {
  font-size: var(--text-sm);
  opacity: 0.9;
}

 /* HOVER STATE (NO BACKGROUNDS EVER)*/  
.site-nav__list a:hover,
.site-subnav__list a:hover,
.site-nav__dropdown a:hover {
  color: var(--text-strong);
  transform: translateY(-1px);
}

/* IS SELECTED STATE (NO TAB LOOK) */
.site-nav__list a.is-selected,
.site-subnav__list a.is-selected {
  color: var(--text-strong);
  font-weight: 500;
}

 /* PREMIUM UNDERLINE SYSTEM (REPLACES ALL TAB BACKGROUNDS */ 
.site-nav__list a::after,
.site-subnav__list a::after,
.site-nav__dropdown a::after {
  content: "";
  position: absolute;

  left: 12px;
  right: 12px;
  bottom: 6px;

  height: 1px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 180ms ease;
  opacity: 0.7;
}

.site-nav__list a:hover::after,
.site-subnav__list a:hover::after,
.site-nav__dropdown a:hover::after,
.site-nav__list a.is-selected::after,
.site-subnav__list a.is-selected::after {
  transform: scaleX(1);
}

 /* DROPDOWN SYSTEM (CLEAN + STABLE)*/  
.site-nav__item {
    justify-content: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 220px;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-md);

  padding: var(--space-2) 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);

  transition: 180ms ease;

  z-index: 1000;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

  /* KEEP YOUR DOWN ARROWS (RESTORED + CLEAN) */ 

.site-nav__item.has-dropdown > .site-nav__link::before {
  content: "▾";
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 8px;
  display: inline-block;
  color: var(--text-muted);
  opacity: 0.9;
  transition: transform 300ms ease, color 300ms ease;
}

.site-nav__item.has-dropdown > .site-nav__link {
  gap: 10px;
}

.site-nav__item:hover > .site-nav__link::before,
.site-nav__item.is-open > .site-nav__link::before {
  transform: rotate(180deg);
  color: var(--text-strong);
}


  /* RESPONSIVE SAFETY (PREVENT BREAKING) DESKTOP ONLY */ 
@media (max-width: 900px) {

  .site-nav .site-nav__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2);

    width: 100%;
    margin: 0;
    padding: var(--space-3);

    list-style: none;
  }

  .site-nav .site-nav__item {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
  }

  .site-nav .site-nav__item > .site-nav__link {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-width: 0;

    text-align: center;
    white-space: normal;
  }
}



/* =====================================================
   CLEAN FOOTER CSS MODULE (V2)
===================================================== */

  /* ROOT FOOTER */ 
.site-footer {
  width: 100%;
  background: var(--bg-inverse);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-2);
  color: rgba(255,255,255,0.88);
}

  /* GRID WRAPPER */
.site-footer__inner {
  width: min(1400px, 92%);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

  /* COLUMN BASE */ 
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;  
}

  /* LOGO */ 
.site-footer__logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

  /* TEXT*/
.site-footer__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--footer-text);
  opacity: 0.85;
}

  /* TITLES */
.site-footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-inverse);
}

  /* LISTS*/
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__list a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);

  font-size: 0.95rem;

  display: inline-block; /* required for transform to behave reliably */

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__list a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

  /* CTA BUTTON */ 
.site-footer__cta {
  display: inline-block;
  margin-top: var(--space-2);

  padding: 12px 16px;
  border-radius: var(--radius-md);

  background: var(--surface-full);
  color: white;

  text-decoration: none;
  font-weight: 600;

  transition: transform 0.2s ease;
}

.site-footer__cta:hover {
  transform: translateY(-2px);
}

.site-footer .c-grid--3 {
    margin-bottom: var(--space-6);
}

.site-footer .c-grid {
  padding-inline: var(--space-3);
}

 /* FOOTER PHONE */ 
.footer-phone {
  display: inline-block;

  color: rgba(255,255,255,0.85);

  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-phone:hover {
  color: #ffffff;
  transform: translateY(-1px);
}


  /* BOTTOM BAR */ 
.site-footer__bottom {
  margin-top: var(--space-8);
  padding: var(--space-4) 0;

  border-top: 1px solid var(--border);
  text-align: center;

  font-size: 0.85rem;
  opacity: 0.7;
}

.site-footer__columns {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2rem; /* gives breathing room above the line */
  margin-bottom: 2rem;  /* space below the line */
}
/* =====================================================
   FOOTER LEGAL BAR
===================================================== */

.footer-bottom {
  border-top: 1px solid var(--border);

  padding:
    var(--space-4)
    0;

  margin-top: var(--space-6);
}

.footer-legal {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  color: rgba(255,255,255,0.92);
  align-items: center;
  justify-items: center;

  gap: var(--space-4);

  max-width: 600px;
  margin: 0 auto;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 500;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-legal a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-footer__brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =====================================================
   RESPONSIVE BEHAVIOR
===================================================== */

  /* Tablet */ 
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

  /* Mobile*/ 
@media (max-width: 600px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__cta {
    width: 100%;
    text-align: center;
  }
}

  /* Simplest possible dotted underline */


a.cta-link {
  color: var(--text);

  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;

  display: inline-block;
    
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-decoration-style 180ms ease;
}

a.cta-link:hover {
  color: var(--text-strong);
  transform: translateY(-1px);

  text-decoration-style: solid;
}

/* =====================================================
   Vertical spacing utilities
===================================================== */

.space-y-sm {
  margin-block: var(--space-sm);
}

.space-y-md {
  margin-block: var(--space-md);
}

.space-y-lg {
  margin-block: var(--space-lg);
}

.space-y-xl {
  margin-block: var(--space-xl);
}

 /* CREATE VERTICALE SPACE FOR TEXT */
.text-note {
  margin: var(--space-4) 0;
  line-height: 1.5;
  opacity: 0.8;
}


