/* ==============================================
   FONTS
   ============================================== */

@font-face {
  font-family: "Kalnia";
  src: url("../fonts/Kalnia-VariableFont_wdth\,wght.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pliant";
  src: url("../fonts/Pliant-VariableFont_wdth\,wght.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  letter-spacing: 1px;
}


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

:root {
  /* Colors */
  --swatch--dark:            #3C6336;
  --swatch--light:           #fcfbf7;
  --swatch--light-secondary: #c5d0c3;
  --swatch--light-tertiary:  #DFE5DE;
  --swatch--transparent:     #fff0;

  /* Fonts */
  --font--primary:   "Kalnia", "Times New Roman", serif;
  --font--secondary: "Pliant", sans-serif;

  /* Border & radius */
  --border-width--main:   1.5px;
  --radius--main:         20px;
  --radius--small:        12px;
  --radius--xsmall:       8px;
  --radius--button-inner: 0.25rem;

  /* Spacing */
  --space--xsmall: 0.75rem;
  --space--small:  1em;
  --space--medium: 3rem;
  --space--large:  4rem;
  --grid-gap:      1.5rem;

  /* Responsive sizes */
  --size--3rem:  3rem;
  --size--5rem:  5rem;
  --size--7rem:  7rem;
  --size--10rem: 10rem;

  /* Padding */
  --padding-h--main:   3rem;
  --padding-h--medium: 1.5rem;
  --padding-v--small:  var(--size--5rem);
  --padding-v--main:   var(--size--7rem);
}


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

:root,
[data-theme="light"],
[data-theme="dark"] [data-theme="invert"] {
  --theme--background: var(--swatch--light);
  --theme--text:       var(--swatch--dark);
  --theme--border:     var(--swatch--light-secondary);

  /* button primary */
  --button--background:       var(--swatch--dark);
  --button--text:             var(--swatch--light);
  --button--border:           var(--swatch--dark);
  --button--background-hover: #2a4626;
  --button--text-hover:       var(--swatch--light);
  --button--border-hover:     #2a4626;

  /* button secondary */
  --button-secondary--background:       var(--swatch--light);
  --button-secondary--text:             var(--swatch--dark);
  --button-secondary--border:           var(--swatch--light-secondary);
  --button-secondary--background-hover: #2a4626;
  --button-secondary--text-hover:       var(--swatch--light);
  --button-secondary--border-hover:     #2a4626;
}

[data-theme="dark"],
[data-theme="invert"],
[data-theme="light"] [data-theme="invert"] {
  --theme--background: var(--swatch--dark);
  --theme--text:       var(--swatch--light);
  --theme--border:     rgba(255, 255, 255, 0.2);

  /* button primary */
  --button--background:       var(--swatch--light);
  --button--text:             var(--swatch--dark);
  --button--border:           var(--swatch--light);
  --button--background-hover: var(--swatch--light);
  --button--text-hover:       var(--swatch--dark);
  --button--border-hover:     var(--swatch--light);

  /* button secondary */
  --button-secondary--background:       transparent;
  --button-secondary--text:             var(--swatch--light);
  --button-secondary--border:           rgba(255, 255, 255, 0.3);
  --button-secondary--background-hover: rgba(255, 255, 255, 0.1);
  --button-secondary--text-hover:       var(--swatch--light);
  --button-secondary--border-hover:     rgba(255, 255, 255, 0.3);
}

:where([data-theme]:not([data-theme="inherit"])) {
  background-color: var(--theme--background);
  color: var(--theme--text);
}

[data-theme] {
  background-color: var(--theme--background);
  color: var(--theme--text);
}


/* ==============================================
   RESET / BASE
   ============================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font--primary);
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--theme--text);
  background-color: var(--theme--background);
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
  font-family: var(--font--secondary);
}

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

img {
  display: block;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  border: 0;
}

img::selection {
  background: transparent;
}

button {
  background-color: unset;
  padding: unset;
  border: 0;
  text-align: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

section, header, footer, nav {
  position: relative;
}

::selection {
  background-color: var(--swatch--dark);
  color: var(--swatch--light);
}

::-moz-selection {
  background-color: var(--swatch--dark);
  color: var(--swatch--light);
}


/* ==============================================
   UTILITY — Flexbox (row)
   ============================================== */

.u-hflex-left-top       { display: flex; flex-flow: row;  place-content: flex-start;             align-items: flex-start; }
.u-hflex-left-center    { display: flex; flex-flow: row;  place-content: center flex-start;      align-items: center; }
.u-hflex-center-center  { display: flex; flex-flow: row;  place-content: center;                 align-items: center; }
.u-hflex-right-center   { display: flex; flex-flow: row;  place-content: center flex-end;        align-items: center; }
.u-hflex-between-center { display: flex; flex-flow: row;  place-content: center space-between;   align-items: center; }
.u-hflex-wrap           { flex-flow: wrap; }


/* ==============================================
   UTILITY — Flexbox (column)
   ============================================== */

.u-vflex-left-top      { display: flex; flex-flow: column; place-content: flex-start;          align-items: flex-start; }
.u-vflex-left-center   { display: flex; flex-flow: column; place-content: flex-start center;   align-items: flex-start; }
.u-vflex-center-top    { display: flex; flex-flow: column; place-content: center flex-start;   align-items: center; }
.u-vflex-center-center { display: flex; flex-flow: column; place-content: center;              align-items: center; }
.u-vflex-stretch-top   { display: flex; flex-flow: column; justify-content: flex-start;        align-items: stretch; }


/* ==============================================
   UTILITY — Gap
   ============================================== */

.u-gap-xsmall { gap: var(--space--xsmall); }
.u-gap-small  { gap: var(--space--small); }
.u-gap-main   { gap: var(--grid-gap); }
.u-gap-medium { gap: var(--space--medium); }
.u-gap-large  { gap: var(--space--large); }


/* ==============================================
   UTILITY — Typography
   ============================================== */

.u-text-h2 {
  font-family: var(--font--primary);
  font-size: clamp(2rem, 10vw, var(--size--5rem));
  line-height: 1.1em;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.u-text-h3 {
  font-family: var(--font--primary);
  font-size: clamp(1.5rem, 7.5vw, var(--size--3rem));
  line-height: 1.3em;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.u-text-large {
  font-family: var(--font--primary);
  font-size: 1.5rem;
  line-height: 1.3em;
  font-weight: 400;
}

.u-text-main {
  font-family: var(--font--secondary);
  font-size: clamp(1rem, 1.25vw, 1.325rem);
  line-height: 1.5em;
  font-weight: 400;
}


/* ==============================================
   UTILITY — Misc
   ============================================== */

.u-cover-absolute {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.u-container {
  padding: var(--padding-v--main) var(--padding-h--medium) var(--padding-v--small);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  position: relative;
  z-index: 3;
}

/* Used on button <a> wrappers */
.u-inline-block {
  max-width: 100%;
  display: inline-block;
}

.u-center {
  text-align: center;
}


/* ==============================================
   PAGE STRUCTURE
   ============================================== */

.page_wrap {
  max-width: 100vw;
  overflow: clip;
}

.page_main.is-half {
  width: 50vw;
}

.page-container {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  flex: 1;
  position: relative;
}

.outer-border {
  border: var(--border-width--main) solid var(--theme--border);
  border-radius: var(--radius--main);
  padding: 0.75rem 0.75rem 0.75rem 0.75rem;
  height: 100%;
  min-height: 100%;
  overflow: clip;
  position: relative;
}


.outer-border.is-grow {
  flex: 1;
  gap: 0.25rem;
}

.inner-border {
  border: 1px solid var(--swatch--light-tertiary);
  border-radius: var(--radius--small);
  overflow: clip;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-container {
  padding: 1.5rem 0.55rem 1rem;
}


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

.nav_wrap {
  z-index: 500;
  pointer-events: none;
  width: 50vw;
  padding-top: 2.25rem;
  padding-left: 2.4375rem;
  padding-right: 2.4375rem;
  position: fixed;
  inset: 0 0 auto;
}

.nav_container {
  border: 1px solid var(--theme--border);
  border-radius: var(--radius--xsmall);
  background-color: var(--theme--background);
  pointer-events: auto;
}

.nav_layout {
  overflow: clip;
  padding-top: 1rem;
}

.nav_main {
  padding: 0 1.5rem 1rem;
}

/* Cafe name */
.nav_main h1 {
  font-family: "Kalnia", serif;
  font-size: 1.5625rem;
  font-weight: 300;
}

.nav_outer {
  min-width: 5rem;
}

.nav_outer.is-right {
  display: flex;
  justify-content: flex-end;
}

.nav_outer.is-left {
  display: flex;
  align-items: center;
}

.nav_menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px;
  padding: 10px;
  color: var(--theme--text);
}

.nav_menu-icon {
  display: block;
  transition: opacity 0.15s ease;
}

.nav_menu-icon.is-close {
  display: none;
}

.nav_menu-trigger.is-active .nav_menu-icon.is-open {
  display: none;
}

.nav_menu-trigger.is-active .nav_menu-icon.is-close {
  display: block;
}

.nav_dropdown_wrap {
  display: none;
  overflow: clip;
}

.nav_dropdown {
  font-family: var(--font--primary);
  text-transform: uppercase;
  padding: 2rem 1.5rem;
  overflow: auto;
}

.nav_dropown_link {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1em;
  margin: -0.125rem;
  padding: 0.125rem;
  display: block;
}

.nav_order, .footer_links {
  border-radius: var(--radius--xsmall);
  font-family: var(--font--secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin: -10px;
  padding: 10px;
}


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

.hero_wrap {
  min-height: 100svh;
  margin: 0.75rem 0;
}

.hero-main_wrap.inner-border {
  flex: 1;
}

.hero-main_layout {
  flex-flow: column;
  height: 100%;
}

/* ==============================================
   SLIDER
   ============================================== */

.slider-main_wrap {
  width: 50vw;
  height: 100svh;
  padding: 0.625rem 0.375rem 0.625rem 0.625rem;
  position: fixed;
  inset: 0 0 0 auto;
}

.slider-main_contain.page-container {
  flex: 1;
  padding-left: 0;
}

.slider {
  text-align: center;
  clear: both;
  background: #ddd;
  height: 300px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.slide {
  display: inline-block;
  position: relative;
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
}

.slider-nav {
  z-index: 2;
  text-align: center;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
  -webkit-tap-highlight-color: transparent;
}

.slider-dot {
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: var(--swatch--light);
  width: 1.5rem;
  height: 4px;
  border-radius: 0;
  margin: 0 3px 0.5em;
  transition: background-color 0.1s, color 0.1s;
}

.slider-dot.is-active {
  background-color: var(--swatch--dark);
}

.slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.slider-dot:focus.is-active {
  box-shadow: none;
}

.slider-arrow-left,
.slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.slider-arrow-left  { z-index: 3; right: auto; }
.slider-arrow-right { z-index: 4; left: auto; }

.slider-arrow-left:focus,
.slider-arrow-right:focus {
  outline: 0;
}

/* Slide visual elements */
.g_visual_wrap {
  overflow: hidden;
}

.g_visual_background {
  opacity: 0.1;
  background-color: currentColor;
}

.g_visual_img {
  object-fit: cover;
}

.g_visual_overlay {
  background-color: var(--swatch--transparent);
  background-image: linear-gradient(#000, #000 0%, transparent 50%);
}


/* ==============================================
   HERO BOTTOM INFO BAR
   ============================================== */

.hero-bottom_wrap {
  flex: 0 auto;
}

.hero-bottom_layout {
  gap: 0.255rem;
}

.hero-bottom_module {
  aspect-ratio: 1;
  width: 50%;
  object-fit: fill;
}

.hero-bottom_info {
  font-family: var(--font--secondary);
  text-align: center;
  text-transform: uppercase;
  min-width: 100%;
  min-height: 100%;
  padding: 0.5rem;
  gap: 3vw;
}

.hero-bottom_info_hours {
  gap: 0.2rem;
}

.hero-bottom_open-text.u-text-large {
  font-family: var(--font--secondary);
  font-size: clamp(0.925rem, 3.75vw, 1.5rem);
  font-weight: 600;
}

.hero-bottom_hours-text.u-text-main {
  font-family: var(--font--secondary);
  font-size: clamp(0.625rem, 3.2vw, 1rem);
  font-weight: 500;
}

.hero-bottom_info-divider {
  background-color: var(--theme--text);
  width: 110px;
  max-width: 80%;
  height: 1px;
}

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

[data-button-style] .btn_main_wrap {
  display: inline-block;
  border: var(--border-width--main) solid var(--button--border);
  border-radius: var(--radius--button-inner);
  background-color: var(--button--background);
  color: var(--button--text);
  font-family: var(--font--secondary);
  font-weight: 500;
  line-height: 1;
  padding: 0.625rem 1.375rem;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

[data-button-style] .btn_main_wrap:hover {
  border-color: var(--button--border-hover);
  background-color: var(--button--background-hover);
  color: var(--button--text-hover);
}

[data-button-style="secondary"] .btn_main_wrap {
  background-color: transparent;
  color: var(--button--border);
}

[data-button-style="secondary"] .btn_main_wrap:hover {
  background-color: #2a4626;
  border-color: #2a4626;
  color: var(--swatch--light);
}

.btn_main_list {
  margin-left: auto;
  margin-right: auto;
}

.btn_main_text {
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


/* ==============================================
   MENU SECTION
   ============================================== */

.menu_wrap {
  padding-bottom: 0.625rem;
}

.menu-main_layout {
  text-align: center;
}

.menu-tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.menu-tabs_nav {
  border-bottom: 1.5px solid var(--swatch--light-secondary);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.menu-tab_btn {
  font-family: var(--font--secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  color: var(--swatch--light-secondary);
  transition: color 0.2s, border-color 0.2s;
}

.menu-tab_btn:hover {
  color: var(--theme--text);
}

.menu-tab_btn.is-active {
  color: var(--theme--text);
  border-bottom-color: var(--swatch--dark);
}

.menu-tab_panel {
  display: none;
  width: 100%;
}

.menu-tab_panel.is-active {
  display: block;
}

.menu-tab_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.menu-tab_list li {
  display: flex;
  flex-direction: column;
}

.menu-tab_item-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.menu-tab_item-name {
  font-family: var(--font--primary);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.menu-tab_item-desc {
  font-family: var(--font--secondary);
  font-size: 0.875rem;
  margin-top: 0.3rem;
}

.menu-tab_item-price {
  font-family: var(--font--secondary);
  font-size: 0.875rem;
  margin-top: 0.4rem;
  opacity: 0.6;
}

/* ==============================================
   ORDER MODAL
   ============================================== */

.order-modal_overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.order-modal_overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal_panel {
  background-color: var(--swatch--light);
  color: var(--swatch--dark);
  border-radius: var(--radius--main);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px);
  transition: transform 0.3s ease;
  border: var(--border-width--main) solid var(--swatch--light-secondary);
}

.order-modal_overlay.is-open .order-modal_panel {
  transform: translateY(0);
}

.order-modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: var(--border-width--main) solid var(--swatch--light-secondary);
  flex-shrink: 0;
}

.order-modal_title {
  font-family: var(--font--primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}

.order-modal_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.order-modal_close:hover {
  opacity: 1;
}

.order-modal_body {
  display: grid;
  grid-template-columns: 1fr 280px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

/* Item list column */
.order-modal_items {
  overflow-y: auto;
  padding: 1.5rem 2rem;
  border-right: var(--border-width--main) solid var(--swatch--light-secondary);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order-modal_category-label {
  font-family: var(--font--secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.order-modal_item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-modal_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: var(--border-width--main) solid var(--swatch--light-tertiary);
}

.order-modal_item:last-child {
  border-bottom: none;
}

.order-item_info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.order-item_name {
  font-family: var(--font--primary);
  font-size: 1rem;
  line-height: 1.2;
}

.order-item_price {
  font-family: var(--font--secondary);
  font-size: 0.8rem;
  opacity: 0.55;
}

.order-item_qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: var(--border-width--main) solid var(--swatch--light-secondary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font--secondary);
  font-size: 1rem;
  line-height: 1;
  color: var(--swatch--dark);
  transition: background-color 0.15s, border-color 0.15s;
}

.qty-btn:hover {
  background-color: var(--swatch--dark);
  border-color: var(--swatch--dark) !important;
  color: var(--swatch--light);
}

.qty-value {
  font-family: var(--font--secondary);
  font-size: 0.9rem;
  min-width: 1.25rem;
  text-align: center;
}

/* Sidebar column */
.order-modal_sidebar {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.5rem;
  overflow-y: auto;
}

.order-modal_sidebar-label {
  font-family: var(--font--secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.order-modal_summary {
  flex: 1;
}

.order-summary_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-summary_list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font--secondary);
  font-size: 0.85rem;
}

.order-summary_list li span:last-child {
  opacity: 0.6;
  white-space: nowrap;
}

.order-summary_empty {
  font-family: var(--font--secondary);
  font-size: 0.85rem;
  opacity: 0.4;
}

.order-modal_pickup {
  border-top: var(--border-width--main) solid var(--swatch--light-secondary);
  padding-top: 1.25rem;
}

.order-pickup_fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-pickup_field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.order-pickup_label {
  font-family: var(--font--secondary);
  font-size: 0.75rem;
  opacity: 0.55;
}

.order-pickup_input {
  font-family: var(--font--secondary);
  font-size: 0.875rem;
  color: var(--swatch--dark);
  background: transparent;
  border: var(--border-width--main) solid var(--swatch--light-secondary);
  border-radius: var(--radius--xsmall);
  padding: 0.5rem 0.75rem;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
}

.order-pickup_input:focus {
  border-color: var(--swatch--dark);
}

.order-modal_total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--border-width--main) solid var(--swatch--light-secondary);
  padding-top: 1rem;
}

.order-total_label {
  font-family: var(--font--secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.order-total_amount {
  font-family: var(--font--primary);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.order-modal_buy-btn {
  width: 100%;
  background-color: var(--swatch--dark);
  color: var(--swatch--light);
  font-family: var(--font--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius--xsmall);
  border: var(--border-width--main) solid var(--swatch--dark) !important;
  transition: background-color 0.2s;
  text-align: center;
}

.order-modal_buy-btn:hover {
  background-color: #2a4626;
}

/* Order confirmation */
.order-confirm_overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.order-confirm_overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-confirm_panel {
  background-color: var(--swatch--light);
  color: var(--swatch--dark);
  border-radius: var(--radius--main);
  border: var(--border-width--main) solid var(--swatch--light-secondary);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.order-confirm_overlay.is-open .order-confirm_panel {
  transform: translateY(0);
}

.order-confirm_title {
  font-family: var(--font--primary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.order-confirm_text {
  font-family: var(--font--secondary);
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.order-confirm_close {
  display: inline-block;
  background-color: var(--swatch--dark);
  color: var(--swatch--light);
  font-family: var(--font--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: var(--radius--xsmall);
  transition: background-color 0.2s;
}

.order-confirm_close:hover {
  background-color: #2a4626;
}

@media (max-width: 600px) {
  .order-modal_overlay {
    padding: 0 16px 32px;
    align-items: flex-end;
  }

  .order-modal_panel {
    border-radius: var(--radius--main);
    max-height: 92vh;
    overflow-y: auto;
  }

  .order-modal_body {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .order-modal_items {
    overflow-y: visible;
    border-right: none;
    border-bottom: var(--border-width--main) solid var(--swatch--light-secondary);
  }

  .order-modal_sidebar {
    overflow-y: visible;
  }
}

.contact_link {
  display: block;
  font-family: var(--font--secondary);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.1;
  margin-bottom: 24px;
}


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

.footer_container {
  margin-bottom: 12px;
  background: var(--swatch--light);
  color: var(--swatch--brand-text);
  border: none;
}

.footer_layout {
  gap: 7px;
}

.footer-text {
  font-family: var(--font--secondary);
  font-size: 0.875rem;
}

.footer_links {
  display: flex;
}


/* ==============================================
   LENIS SMOOTH SCROLL
   ============================================== */

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }


/* ==============================================
   RESPONSIVE — Tablet (≤ 991px)
   ============================================== */

@media screen and (max-width: 991px) {
  :root {
    --padding-h--main: 2rem;
    --size--3rem:  2.52rem;
    --size--5rem:  3.75rem;
    --size--7rem:  5.25rem;
    --size--10rem: 7.5rem;
  }
}


/* ==============================================
   RESPONSIVE — Mobile (≤ 767px)
   ============================================== */

@media screen and (max-width: 767px) {
  :root {
    --padding-h--main: 1rem;
    --size--3rem:  2.25rem;
    --size--5rem:  3rem;
    --size--7rem:  4rem;
    --size--10rem: 5.5rem;
  }

  .page_main.is-half {
    width: 100vw;
  }

  /* Slider becomes the hero background on mobile */
  .hero-main_wrap.inner-border {
    position: relative;
  }

  .slider-main_wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .slider-main_contain.page-container {
    height: 100%;
  }

  .hero-main_wrap.inner-border::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
  }

  .hero-main_container.u-container {
    position: relative;
    z-index: 2;
    color: var(--swatch--light);
  }

  .hero-main_container.u-container p,
  .hero-main_container.u-container h2,
  .hero-main_container.u-container h3 {
    color: var(--swatch--light);
  }

  .hero-main_container [data-button-style="secondary"] .btn_main_wrap {
    color: var(--swatch--light);
    border-color: var(--swatch--light);
  }

  .nav_wrap {
    width: 100vw;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-load] {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-play-state: paused;
}

[data-animate-load].is-ready {
  animation-play-state: running;
}


/* ==============================================
   MISC
   ============================================== */
.illustration {
  fill:#8A987C;
}



