/* Granary Digital — studio booking widget styles.
   Scoped to .bk-* and #gd-booking-root. :root vars from the design system.
   Global resets & @font-face stripped (site provides them). */
.bk-app { background: var(--gd-color-paper); min-height: 70vh; padding: 28px 0 56px; }
.bk-app .bk-wrap { color: var(--gd-color-ink); }
/* ==========================================================================
   Granary Digital — Webfonts
   Oxanium, the brand typeface. SIL Open Font License (see assets/Fonts/Oxanium/OFL.txt).
   Three weights do all the work: Light 300, Medium 500, Bold 700.
   Regular 400, SemiBold 600 and ExtraBold 800 are shipped for flexibility.
   ========================================================================== */








/* ==========================================================================
   Granary Digital — Colour
   Two brand colours only for the logo and mark. The extended palette below is
   for interface use — backgrounds, text, borders — never for the logo or mark.
   ========================================================================== */

:root {

  /* --- Brand colours (the only two approved for logo & mark) --------------- */
  --gd-color-deep-green:    #004751; /* Deep Green   — RGB 0/71/81   CMYK 94/58/53/38 */
  --gd-color-modern-green:  #00ed87; /* Modern Green — RGB 0/237/135 CMYK 62/0/71/0  */

  /* --- Extended UI palette (interface only — NOT for logo/mark) ------------ */
  --gd-color-paper:         #f7f8f7; /* page background          */
  --gd-color-ink:           #10333a; /* body text on light       */
  --gd-color-line:          #dde5e4; /* hairline borders         */
  --gd-color-deep-shade:    #00333b; /* footer / gradient base   */
  --gd-color-muted:         #5b7378; /* notes, captions          */
  --gd-color-on-deep:       #e8f0ef; /* body text on Deep Green  */
  --gd-color-on-deep-soft:  #bdd6d3; /* secondary on Deep Green  */
  --gd-color-on-deep-faint: #9fc4c0; /* tertiary on Deep Green   */
  --gd-color-white:         #ffffff;

  /* Surface tints derived for cards, hovers and wells */
  --gd-color-mist:          #eef3f1; /* hover well on paper      */
  --gd-color-deep-700:      #013b44; /* deep hover               */
  --gd-color-green-700:     #00c873; /* modern green pressed     */
  --gd-color-green-tint:    #d6fbe9; /* faint modern-green wash  */

  /* Status — kept in the brand family; warnings borrow a warm amber */
  --gd-color-success:       #00b369;
  --gd-color-warning:       #d98b18;
  --gd-color-danger:        #cc4b37;

  /* --- Semantic aliases ---------------------------------------------------- */
  --gd-bg:               var(--gd-color-paper);
  --gd-bg-invert:        var(--gd-color-deep-green);
  --gd-surface:          var(--gd-color-white);
  --gd-surface-sunken:   var(--gd-color-mist);
  --gd-text:             var(--gd-color-ink);
  --gd-text-muted:       var(--gd-color-muted);
  --gd-text-invert:      var(--gd-color-on-deep);
  --gd-accent:           var(--gd-color-modern-green);
  --gd-accent-ink:       var(--gd-color-deep-green); /* text/icon on accent */
  --gd-border:           var(--gd-color-line);
  --gd-link:             var(--gd-color-deep-green);
  --gd-link-invert:      var(--gd-color-modern-green);
  --gd-focus-ring:       var(--gd-color-modern-green);
}
/* ==========================================================================
   Granary Digital — Typography
   Oxanium. Three weights, three jobs. Fluid clamp() scale for headings so they
   shrink gracefully on mobile. Body sits at 1.65 line height; headings at 1.15.
   ========================================================================== */

:root {

  /* --- Family -------------------------------------------------------------- */
  --gd-font-family: "Oxanium", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- Weights ------------------------------------------------------------- */
  --gd-font-light:  300; /* body, supporting copy (default body weight) */
  --gd-font-medium: 500; /* UI, descriptive text, labels, nav          */
  --gd-font-bold:   700; /* headings, emphasis, display                */

  /* --- Line height --------------------------------------------------------- */
  --gd-line-tight: 1.15; /* @kind other */ /* headings  */
  --gd-line-snug:  1.35; /* @kind other */ /* leads, UI */
  --gd-line-body:  1.65; /* @kind other */ /* body copy */

  /* --- Fluid type scale (clamp: min, preferred, max) ----------------------- */
  --gd-text-h1:   clamp(2rem, 4.6vw, 3.2rem);
  --gd-text-h2:   clamp(1.5rem, 3.2vw, 2.1rem);
  --gd-text-h3:   1.22rem;
  --gd-text-lead: 1.08rem;  /* hero / intro paragraphs */
  --gd-text-base: 1rem;     /* default body            */
  --gd-text-sm:   0.95rem;  /* dense body, list items  */
  --gd-text-xs:   0.85rem;  /* captions, notes         */
  --gd-text-2xs:  0.8rem;   /* kickers, breadcrumbs    */

  /* --- Tracking (letter-spacing) ------------------------------------------- */
  --gd-track-kicker: 0.18em; /* uppercase kicker tags        */
  --gd-track-label:  0.06em; /* uppercase table heads, tags  */
  --gd-track-logo-g: 0.14em; /* GRANARY wordmark             */
  --gd-track-logo-d: 0.52em; /* DIGITAL wordmark             */
}
/* ==========================================================================
   Granary Digital — Spacing, radius, borders, shadow, motion, layout
   A 4px base scale. Section rhythm comes from band padding. Shadows are tinted
   with Deep Green so they sit in the brand rather than going neutral grey.
   ========================================================================== */

:root {

  /* --- Spacing scale (4px base) ------------------------------------------- */
  --gd-space-1: 4px;
  --gd-space-2: 8px;
  --gd-space-3: 12px;
  --gd-space-4: 16px;
  --gd-space-5: 24px;
  --gd-space-6: 32px;
  --gd-space-7: 44px;
  --gd-space-8: 64px;

  /* --- Section rhythm & containers ---------------------------------------- */
  --gd-band-pad:       64px;   /* section.band vertical padding */
  --gd-band-pad-tight: 44px;
  --gd-wrap-max:       1180px; /* content container */
  --gd-wrap-narrow:    820px;  /* prose container   */
  --gd-wrap-pad:       24px;   /* container side padding */

  /* --- Radius -------------------------------------------------------------- */
  --gd-radius-xs:   3px;  /* kicker tags          */
  --gd-radius-sm:   4px;  /* buttons, inputs      */
  --gd-radius-md:   6px;  /* small panels, dropdowns */
  --gd-radius-lg:   8px;  /* cards, images        */
  --gd-radius-xl:   10px; /* CTA strips           */
  --gd-radius-pill: 99px;

  /* --- Borders ------------------------------------------------------------- */
  --gd-border-width:    1px;
  --gd-border-emphasis: 2px; /* buttons, featured cards */
  --gd-border-accent:   4px; /* inline CTA left rule    */

  /* --- Shadow (tinted with Deep Green) ------------------------------------ */
  --gd-shadow-soft:   0 4px 18px rgba(0, 71, 81, 0.08);
  --gd-shadow-card:   0 14px 34px rgba(0, 71, 81, 0.14);
  --gd-shadow-price:  0 8px 30px rgba(0, 71, 81, 0.12);
  --gd-shadow-drop:   0 12px 34px rgba(0, 20, 24, 0.28);
  --gd-shadow-header: 0 2px 12px rgba(0, 0, 0, 0.25);

  /* --- Motion -------------------------------------------------------------- */
  --gd-ease:          cubic-bezier(0.2, 0.8, 0.2, 1); /* @kind other */
  --gd-transition:    0.18s;     /* @kind other */ /* buttons, links */
  --gd-transition-md: 0.2s;      /* @kind other */ /* card lift      */
  --gd-transition-lg: 0.45s;     /* @kind other */ /* gallery image  */
  --gd-reveal:        0.6s ease; /* @kind other */ /* on-scroll rise */

  /* --- Layout / breakpoints (reference for media queries) ----------------- */
  --gd-bp-mobile:  840px;  /* split → stack          */
  --gd-bp-nav:     1020px; /* desktop nav → burger   */
  --gd-bp-footer:  900px;  /* footer columns collapse */
  --gd-z-header:   50; /* @kind other */
  --gd-z-dropdown: 60; /* @kind other */
}
/* ==========================================================================
   Granary Digital — Design System
   Global entry point. Consumers link this one file. It is a list of @imports
   only: tokens (colour, type, spacing) plus the webfont declarations.
   ========================================================================== */

/* ==========================================================================
   Granary Digital — Webfonts
   Oxanium, the brand typeface. SIL Open Font License (see assets/Fonts/Oxanium/OFL.txt).
   Three weights do all the work: Light 300, Medium 500, Bold 700.
   Regular 400, SemiBold 600 and ExtraBold 800 are shipped for flexibility.
   ========================================================================== */








/* ==========================================================================
   Granary Digital — Colour
   Two brand colours only for the logo and mark. The extended palette below is
   for interface use — backgrounds, text, borders — never for the logo or mark.
   ========================================================================== */

:root {

  /* --- Brand colours (the only two approved for logo & mark) --------------- */
  --gd-color-deep-green:    #004751; /* Deep Green   — RGB 0/71/81   CMYK 94/58/53/38 */
  --gd-color-modern-green:  #00ed87; /* Modern Green — RGB 0/237/135 CMYK 62/0/71/0  */

  /* --- Extended UI palette (interface only — NOT for logo/mark) ------------ */
  --gd-color-paper:         #f7f8f7; /* page background          */
  --gd-color-ink:           #10333a; /* body text on light       */
  --gd-color-line:          #dde5e4; /* hairline borders         */
  --gd-color-deep-shade:    #00333b; /* footer / gradient base   */
  --gd-color-muted:         #5b7378; /* notes, captions          */
  --gd-color-on-deep:       #e8f0ef; /* body text on Deep Green  */
  --gd-color-on-deep-soft:  #bdd6d3; /* secondary on Deep Green  */
  --gd-color-on-deep-faint: #9fc4c0; /* tertiary on Deep Green   */
  --gd-color-white:         #ffffff;

  /* Surface tints derived for cards, hovers and wells */
  --gd-color-mist:          #eef3f1; /* hover well on paper      */
  --gd-color-deep-700:      #013b44; /* deep hover               */
  --gd-color-green-700:     #00c873; /* modern green pressed     */
  --gd-color-green-tint:    #d6fbe9; /* faint modern-green wash  */

  /* Status — kept in the brand family; warnings borrow a warm amber */
  --gd-color-success:       #00b369;
  --gd-color-warning:       #d98b18;
  --gd-color-danger:        #cc4b37;

  /* --- Semantic aliases ---------------------------------------------------- */
  --gd-bg:               var(--gd-color-paper);
  --gd-bg-invert:        var(--gd-color-deep-green);
  --gd-surface:          var(--gd-color-white);
  --gd-surface-sunken:   var(--gd-color-mist);
  --gd-text:             var(--gd-color-ink);
  --gd-text-muted:       var(--gd-color-muted);
  --gd-text-invert:      var(--gd-color-on-deep);
  --gd-accent:           var(--gd-color-modern-green);
  --gd-accent-ink:       var(--gd-color-deep-green); /* text/icon on accent */
  --gd-border:           var(--gd-color-line);
  --gd-link:             var(--gd-color-deep-green);
  --gd-link-invert:      var(--gd-color-modern-green);
  --gd-focus-ring:       var(--gd-color-modern-green);
}
/* ---- Header ---- */
  .bk-header {
    position: sticky; top: 0; z-index: 40;
    background: var(--gd-color-deep-green);
    box-shadow: var(--gd-shadow-header);
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 28px;
  }
.bk-wordmark {
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: var(--gd-font-family); font-weight: 700; font-size: 1.05rem;
    color: #fff; display: inline-flex; align-items: center;
  }
.bk-header-right { display: flex; align-items: center; gap: 22px; }
/* ---- Wrap / grids ---- */
  .bk-wrap { max-width: 1180px; margin: 0 auto; padding: 40px 24px 90px; }
.bk-wizard { display: grid; grid-template-columns: 168px minmax(0,1fr) 308px; gap: 32px; align-items: start; }
.bk-single { display: grid; grid-template-columns: minmax(0,1fr) 308px; gap: 40px; align-items: start; max-width: 1180px; margin: 0 auto; padding: 40px 24px 90px; }
.bk-solo { max-width: 1040px; }
.bk-main { min-width: 0; }
.bk-side { min-width: 0; }
.bk-quote { position: sticky; top: 96px; }
/* ---- Step rail ---- */
  .bk-rail { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.bk-rail-item {
    display: flex; align-items: center; gap: 12px; text-align: left;
    background: none; border: none; font-family: var(--gd-font-family);
    font-size: 0.92rem; font-weight: 500; padding: 10px 10px; border-radius: var(--gd-radius-sm);
    cursor: pointer; color: var(--gd-text-muted); transition: color var(--gd-transition), background var(--gd-transition);
  }
.bk-rail-item:disabled { cursor: default; }
.bk-rail-num {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700; border: 2px solid var(--gd-border); background: var(--gd-surface);
  }
.bk-rail-current { color: var(--gd-color-deep-green); }
.bk-rail-current .bk-rail-num { border-color: var(--gd-color-deep-green); background: var(--gd-color-deep-green); color: #fff; }
.bk-rail-done { color: var(--gd-color-deep-green); }
.bk-rail-done .bk-rail-num { border-color: var(--gd-accent); background: var(--gd-accent); color: var(--gd-color-deep-green); }
.bk-rail-done:hover { background: var(--gd-color-mist); }
/* ---- Typography helpers ---- */
  .bk-h1 { font-weight: 700; color: var(--gd-color-deep-green); font-size: var(--gd-text-h1); line-height: 1.12; margin: 12px 0 10px; }
.bk-h2 { font-weight: 700; color: var(--gd-color-deep-green); font-size: var(--gd-text-h2); line-height: 1.15; margin: 12px 0 8px; text-wrap: pretty; }
.bk-sub { font-weight: 300; font-size: 1.02rem; line-height: 1.6; color: var(--gd-text); margin: 0; max-width: 64ch; text-wrap: pretty; }
.bk-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gd-text-muted); font-weight: 600; margin-bottom: 12px; }
.bk-step-meta { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gd-text-muted); font-weight: 600; margin-bottom: 16px; }
/* ---- Grids inside steps ---- */
  .bk-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.bk-pkg-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; align-items: stretch; }
.bk-date { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 32px; align-items: start; }
.bk-date > div:first-child { max-width: 100%; }
.bk-contact { /* 2-col, set inline */ }
.bk-summary { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 26px; align-items: start; margin-top: 24px; }
.bk-textarea {
    width: 100%; font-family: var(--gd-font-family); font-size: 1rem; font-weight: 300;
    padding: 13px 16px; border-radius: var(--gd-radius-sm); border: 2px solid var(--gd-border);
    background: var(--gd-surface); color: var(--gd-text); resize: vertical; outline: none;
    transition: border-color var(--gd-transition);
  }
.bk-textarea:focus { border-color: var(--gd-accent); }
/* ---- Single page blocks ---- */
  .bk-block { padding: 36px 0; border-top: 1px solid var(--gd-border); }
.bk-block:first-of-type { border-top: none; padding-top: 8px; }
/* ---- Conversational ---- */
  .bk-conv { min-height: calc(100vh - 64px); display: flex; flex-direction: column; }
.bk-conv-top {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    max-width: 820px; width: 100%; margin: 0 auto; padding: 26px 24px 6px;
  }
.bk-dots { display: flex; gap: 8px; }
.bk-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gd-border); transition: all var(--gd-transition); }
.bk-dot.on { background: var(--gd-accent); width: 26px; border-radius: 5px; }
.bk-dot.past { background: var(--gd-color-deep-green); }
.bk-chip {
    font-size: 0.82rem; font-weight: 500; color: var(--gd-color-deep-green);
    background: var(--gd-color-green-tint); border: 1px solid var(--gd-accent);
    padding: 7px 14px; border-radius: var(--gd-radius-pill);
  }
.bk-chip b { font-weight: 700; }
.bk-conv-stage { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 24px; }
.bk-conv-card {
    background: var(--gd-surface); border: 1px solid var(--gd-border);
    border-radius: var(--gd-radius-lg); box-shadow: var(--gd-shadow-soft);
    width: 100%; max-width: 760px; padding: 40px 44px 36px; margin-top: 8px;
  }
@media (max-width: 1024px) {
    .bk-wizard { grid-template-columns: 1fr; gap: 26px; }
    .bk-single { grid-template-columns: 1fr; gap: 26px; }
    .bk-rail { position: static; flex-direction: row; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
    .bk-rail-item { padding: 8px 12px; background: var(--gd-surface); border: 1px solid var(--gd-border); }
    .bk-rail-item span:last-child { display: none; }
    .bk-quote { position: static; }
  }
@media (max-width: 680px) {
    .bk-grid-2 { grid-template-columns: 1fr; }
    .bk-pkg-grid { grid-template-columns: 1fr; }
    .bk-date { grid-template-columns: 1fr; gap: 24px; }
    .bk-contact { grid-template-columns: 1fr !important; }
    .bk-summary { grid-template-columns: 1fr; }
    .bk-conv-card { padding: 28px 22px; }
    .bk-header { padding: 14px 18px; }
    .bk-wordmark { font-size: 0.92rem; }
  }
@media print {
    .bk-header, .bk-rail, .bk-side, .bk-step-meta, [data-tweaks-root] { display: none !important; }
    .bk-wizard, .bk-single { grid-template-columns: 1fr; }
    
  }
