/** Shopify CDN: Minification failed

Line 96:0 Unexpected "}"

**/


/* =========================================================
   Brand tokens
   ========================================================= */
:root{
  --c-navy:     #0b1a2a;
  --c-black:    #111111;
  --c-burgundy: #7a1f2b;
  --c-white:    #ffffff;
  --c-grey-700: #4b5563;
  --c-grey-600: #6b7280;
  --c-grey-400: #9ca3af;
  --c-grey-300: #d1d5db;
  --c-grey-200: #e5e7eb;
  --c-grey-100: #f3f4f6;
  --c-grey-50:  #f9fafb;

  --brand-bg: var(--c-white);
  --brand-fg: var(--c-black);
  --brand-accent: var(--c-burgundy);

  --radius-lg: 20px;
  --radius-sm: 12px;

  --gutter-desktop: 44px;
  --gutter-tablet: 28px;
  --gutter-mobile: 20px;

  --section-pad-desktop: 56px;
  --section-pad-mobile: 40px;

  --shadow-soft: 0 12px 32px rgba(0,0,0,.06);

  --font-heading-family: "Joly Headline", serif;
  --font-body-family: "ITC", sans-serif;
 
}
body {
  font-family: var(--font-body-family);
  color: var(--brand-fg);
  background-color: var(--brand-bg);
}

/* =========================================================
   Base reset & helpers
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--brand-bg); color: var(--brand-fg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; }
.grid { display: grid; gap: 24px; }

.h-xxl { font-size: clamp(32px, 7vw, 72px); line-height: 1.05; letter-spacing: -.01em; }
.h-xl  { font-size: clamp(24px, 4.5vw, 48px); line-height: 1.10; }
.h-lg  { font-size: clamp(20px, 2.6vw, 28px); line-height: 1.20; }
.p-lg  { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.60; }
.muted { color: var(--c-grey-600); }

/* Links inherit text color */
a, a:visited { color: inherit; text-decoration: none; }
a:hover { opacity: .85; }

/* Global gutters – override Dawn .page-width */
.shopify-section .page-width,
.shopify-section .container { padding-left: var(--gutter-desktop) !important; padding-right: var(--gutter-desktop) !important; }
@media (max-width: 990px){
  .shopify-section .page-width,
  .shopify-section .container { padding-left: var(--gutter-tablet) !important; padding-right: var(--gutter-tablet) !important; }
}
@media (max-width: 750px){
  .shopify-section .page-width,
  .shopify-section .container { padding-left: var(--gutter-mobile) !important; padding-right: var(--gutter-mobile) !important; }
}


/* =========================================================
   Typography mapping (optional body mapping)
   ---------------------------------------------------------
   If you later want to force a body font everywhere,
   uncomment the block below.
   ========================================================= */
/*
body, .rte, .rte p, p, li, span, small, input, textarea, select, button {
  font-family: var(--font-body-family) !important;
  font-weight: var(--font-body-weight) !important;
  font-style: var(--font-body-style) !important;
  font-synthesis: none; /* prevents faux bold/italic */
}
*/

/* Global heading sizes (keeps the Joly Headline above) */
h1 { font-size: 48px !important; line-height: 1.2 !important; }
h2 { font-size: 36px !important; line-height: 1.3 !important; }
h3 { font-size: 28px !important; line-height: 1.3 !important; }
h4 { font-size: 24px !important; line-height: 1.35 !important; }
h5 { font-size: 20px !important; line-height: 1.4 !important; }
h6 { font-size: 18px !important; line-height: 1.5 !important; }

/* Optional nav sizing */
.header__menu-item,
.site-nav__link {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
}
.header__menu-item--secondary {
  font-size: 15px !important;
  font-weight: 400 !important;
}


/* =========================================================
   Buttons (UNIFIED, RECTANGULAR)
   ---------------------------------------------------------
   – Single source of truth for all clickable buttons/links.
   – Rectangular (square corners). To make soft rectangles,
     change border-radius: 0; -> 6px.
   – Removed older .btn (pill) block to avoid conflicts.
   ========================================================= */
button,
.button,
.shopify-payment-button__button,
input[type="submit"],
a.button,
a.btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;               /* <-- RECTANGLE (set to 6px for slightly rounded) */
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;

  /* default brand button */
  background-color: #5c0b21;      /* Burgundy */
  color: #ffffff;
  border: none;                   /* No !important so variants can override */
}

button:hover,
.button:hover,
.shopify-payment-button__button:hover,
input[type="submit"]:hover,
a.button:hover,
a.btn:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(92, 11, 33, 0.25);
  opacity: 0.95;
}

/* Variants */
.btn--accent { background:#5c0b21; color:#fff; border:none; }
.btn--accent:hover { background:#800020; }

.btn--outline {
  background: transparent;
  color: var(--brand-fg);
  border: 1px solid var(--c-grey-300);
}
.btn--outline:hover { background:#800020; color:#fff; border-color:#800020; }

:root { --brand-burgundy:#800020; }
.btn--burgundy {
  background: transparent;
  color: var(--brand-burgundy);
  border: 1px solid var(--brand-burgundy);
}
.btn--burgundy:hover,
.btn--burgundy:focus-visible {
  background: var(--brand-burgundy);
  color:#fff;
  border-color: var(--brand-burgundy);
}

/* Optional accessible focus ring (uncomment to enable) */
/*
button:focus-visible,
.button:focus-visible,
a.button:focus-visible,
a.btn:focus-visible,
.btn:focus-visible {
  outline: 2px solid color-mix(in srgb, #5c0b21 45%, transparent);
  outline-offset: 2px;
}
*/


/* =========================================================
   Cards
   ========================================================= */
.card{
  border:1px solid var(--c-grey-200);
  border-radius: var(--radius-lg);
  background:#fff;
  box-shadow: var(--shadow-soft);
}


/* =========================================================
   Form controls
   ========================================================= */
input[type="text"], input[type="number"], input[type="email"], input[type="tel"], select, textarea{
  width:100%; padding:10px 12px; border-radius: var(--radius-sm);
  border:1px solid var(--c-grey-300); background:#fff; color:var(--brand-fg);
  font-size:16px; line-height:1.2; transition: border-color .2s, box-shadow .2s;
}
input[type="text"], input[type="number"], input[type="email"], input[type="tel"], select{ height:44px; }
textarea{ min-height:120px; resize:vertical; }
input:focus, select:focus, textarea:focus{
  outline:none; border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-accent) 28%, transparent);
}

/* Normalize native selects */
select{ -webkit-appearance: menulist; -moz-appearance: menulist; appearance: menulist; padding-right:28px; background-image:none !important; }

/* Remove default focus shadow everywhere (you can replace with accessible ring above) */
.field:focus-within { box-shadow: none !important; }
.field__input:focus,
.field__input:focus-visible,
.select__select:focus,
.select__select:focus-visible,
.text-area:focus,
.text-area:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Safari tap highlight */
a.button, .button, button { -webkit-tap-highlight-color: transparent; }


/* =========================================================
   Section spacing
   ========================================================= */
.collection-tiles, .about-story, .see-on-hand, #shopify-section-ring-price-calculator, #shopify-section-design-your-own{
  padding-top: var(--section-pad-desktop); padding-bottom: var(--section-pad-desktop);
}
@media (max-width: 768px){
  .collection-tiles, .about-story, .see-on-hand, #shopify-section-ring-price-calculator, #shopify-section-design-your-own{
    padding-top: var(--section-pad-mobile); padding-bottom: var(--section-pad-mobile);
  }
}


/* =========================================================
   Hero (full-bleed)
   ========================================================= */
.hero{
  position:relative; left:50%; right:50%; margin-left:-50vw; margin-right:-50vw;
  width:100vw; max-width:100vw; min-height:60vh; display:grid; place-items:center; padding:14vh 0;
}
.hero__media{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; animation:hero-zoom 18s ease-out both; }
.hero__overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15)); }
.hero__content{ position:relative; z-index:2; color:#fff; text-align:center; max-width:900px; padding:0 20px; }
@keyframes hero-zoom{ from{ transform:scale(1.06); } to{ transform:scale(1); } }
@media (max-width:768px){ .hero{ padding:16vh 0 12vh; min-height:55vh; } .hero__content{ max-width:92vw; } }


/* =========================================================
   Collection tiles (marketing tiles)
   ========================================================= */
.collection-card{ border-radius:16px !important; overflow:hidden !important; background:#fff; border:1px solid var(--c-grey-200); box-shadow:var(--shadow-soft); }
.collection-card__img, .collection-card__ph{ width:100%; aspect-ratio:1/1 !important; object-fit:cover; display:block; }
.collection-card__caption{ padding:14px 16px !important; text-align:center; font-weight:600; letter-spacing:.12em; text-transform:uppercase; font-size:12px; }

/* =========================================================
   Collection product grid (Rings etc.)
   ========================================================= */
.template-collection .product-grid,
.template-collection .grid--collection,
.collection .product-grid,
.collection .grid--collection,
.collection .grid{
  display:grid !important;
  gap:24px !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  align-items:stretch;
}
.template-collection .grid__item,
.collection .grid__item{ width:auto !important; max-width:none !important; flex:initial !important; }
.template-collection .card,
.collection .card{ display:flex; flex-direction:column; height:100%; width:100%; border-radius:16px; overflow:hidden; }

/* Natural image height (prevents grey bands) */
.template-collection .card__media,
.collection .card__media,
.template-collection .media,
.collection .media { aspect-ratio: auto !important; height: auto !important; background: transparent !important; }
.template-collection .card__media img,
.collection .card__media img { width: 100%; height: auto !important; object-fit: cover; }
.template-collection .media::before,
.collection .media::before { content: none !important; display: none !important; }


/* =========================================================
   Utilities
   ========================================================= */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* Newsletter input underline */
.footer .newsletter-form input[type="email"],
#FooterNewsletter input[type="email"]{
  border:none !important; border-bottom:1px solid var(--c-grey-300); border-radius:0;
  padding:10px 0; background:transparent;
}
.footer .newsletter-form input[type="email"]:focus{ border-bottom-color: var(--brand-accent); }

/* See on Hand */
.see-on-hand{ text-align:center; }
.see-on-hand .grid{
  grid-template-columns: minmax(0,720px) minmax(0,360px);
  justify-content:center; margin-inline:auto; gap:24px;
}
.see-on-hand .card{ margin-inline:auto; }
.see-on-hand [id^="hand-stage-"]{ margin-inline:auto; }
@media (max-width:1100px){ .see-on-hand .grid{ grid-template-columns:1fr; max-width:820px; } }
@media (max-width:768px){ .see-on-hand .grid{ max-width:92vw; } }

/* About page: mobile media stack spacing fixes */
#about-stack .about-hero, #about-stack .about-inset { background: #fff; border-radius: 18px; box-shadow: 0 12px 40px rgba(0,0,0,.08); overflow: hidden; }
#about-stack img { display:block; width:100%; height:auto; }
#about-stack { position: relative; overflow: visible; }
#about-stack .about-hero { position: relative; }
#about-stack .about-badge { position: absolute; left: 16px; bottom: 16px; background: #7a818b; color: #fff; border-radius: 999px; padding: 8px 14px; font-size: 13px; line-height: 1; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
@media (max-width: 768px) {
  #about-stack { margin: 0 16px; padding-bottom: 0 !important; }
  #about-stack .about-hero { position: relative; z-index: 1; }
  #about-stack .about-inset { position: absolute; left: 50%; transform: translateX(0%); bottom: -60px; width: 50%; max-width: 260px; z-index: 2; }
  #about-stack .about-badge { left: 16px; bottom: 16px; padding: 7px 12px; font-size: 12px; }
}

/* Remove extra space above the Ring Price Calculator */
#shopify-section-ring-price-calculator { margin-top: 0 !important; padding-top: 0 !important; }

/* Collection tiles: responsive & centered */
.collection-tiles .tiles-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  max-width: 1400px;
  margin-inline: auto;
}
.collection-tiles .tiles-grid .card{
  border-radius: 16px;
  overflow: hidden;
}

/* Rectangular inputs + selects + textareas (including error state) */
.field,
.field__input,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border-radius: 0 !important;
}

/* Dawn’s error ring should also be rectangular */
.field--error .field__input {
  border-radius: 0 !important;
  box-shadow: inset 0 0 0 1px var(--color-error);  /* keep a crisp square error outline */
}


/* Desktop navigation items */
.header__menu-item,
.header__menu-item span,
.header__menu-item a {
  font-family: "Joly Headline", serif !important;
  font-weight: 400 !important;
  font-style: italic !important;  /* matches your heading style */
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Mobile drawer navigation items */
.menu-drawer__menu-item,
.menu-drawer__menu-item span,
.menu-drawer__menu-item a {
  font-family: "Joly Headline", serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}


/* =========================================================
   HEADER — Drawer on desktop w/ centered logo
   ========================================================= */
@media screen and (min-width: 990px) {
  .header__inline-menu,
  .header__menu,
  nav.header__inline-menu { display: none !important; }

  .header__content {
    display: grid !important;
    grid-template-columns: auto auto 1fr auto !important;
    align-items: center !important;
    column-gap: 18px !important;
    position: relative;
  }

  header-drawer,
  #Details-menu-drawer-container,
  summary.header__icon--menu,
  .header__icon--menu,
  .header__menu-toggle {
    display: inline-flex !important;
    grid-column: 1 / 2 !important;
    justify-self: start !important;
  }

  .header__icons:first-of-type {
    grid-column: 2 / 3 !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .header__heading {
    grid-column: 3 / 4 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    justify-self: center !important;
    z-index: 2;
  }

  .header__icons:last-of-type {
    grid-column: 4 / 5 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .header__icon,
  .search-modal__toggle,
  .header__icon--search,
  summary.header__icon--menu,
  .header__menu-toggle {
    position: static !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (min-width: 990px){
  .menu-drawer { width: 360px; }
}

/* -------------------------------------------
   Header icons: remove the ugly square on hover/click
   (keeps a nice ring for keyboard users only)
-------------------------------------------- */

/* Hide the native marker on <summary> (Safari/Firefox) */
header-drawer summary::-webkit-details-marker { display: none; }
header-drawer summary::marker { content: ""; }

/* Base: no borders/background on the icon buttons */
header-drawer summary,
.header__icon,
.search-modal__toggle {
  background: transparent !important;
  border: 0 !important;
}

/* Mouse/trackpad users: no focus box */
@media (hover: hover) and (pointer: fine) {
  header-drawer summary:focus:not(:focus-visible),
  .header__icon:focus:not(:focus-visible),
  .search-modal__toggle:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
  }
}

/* Keyboard users: keep an accessible, subtle focus ring */
:root { --focus-ring: 0 0 0 2px rgba(92, 11, 33, 0.35); } /* burgundy-ish */
header-drawer summary:focus-visible,
.header__icon:focus-visible,
.search-modal__toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}


/* ===== Kill any focus ring/outline/border on header icons & drawer close/search ===== */

/* Remove UA markers on <summary> too */
header-drawer summary::-webkit-details-marker { display: none; }
header-drawer summary::marker { content: ""; }

/* Base reset for these icons */
header-drawer summary,
.header__icon,
.search-modal__toggle,
.menu-drawer__close-button,
.modal__close-button {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Make sure ALL focus states stay clean */
header-drawer summary:focus,
header-drawer summary:focus-visible,
header-drawer summary:focus-within,
.header__icon:focus,
.header__icon:focus-visible,
.header__icon:focus-within,
.search-modal__toggle:focus,
.search-modal__toggle:focus-visible,
.search-modal__toggle:focus-within,
.menu-drawer__close-button:focus,
.menu-drawer__close-button:focus-visible,
.menu-drawer__close-button:focus-within,
.modal__close-button:focus,
.modal__close-button:focus-visible,
.modal__close-button:focus-within {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Dawn has a global :focus-visible outline; neutralize it here */
:root:where(.shopify-design-mode) .header__icon:focus-visible,
:root:where(.shopify-design-mode) header-drawer summary:focus-visible,
:root:where(.shopify-design-mode) .menu-drawer__close-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}


/* =========================================================
   TYPOGRAPHY — Joly (headings) + ITC (body)
   ========================================================= */
@font-face {
  font-family: "Joly Headline";
  src: url("/cdn/shop/files/JolyTrial-RegularHeadlineItalic.woff2?v=1757062178") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC";
  src: url("/cdn/shop/files/ITC_Garamond_Std_Book.woff2?v=1758493506") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body-family: "ITC", sans-serif;
  --font-heading-family: "Joly Headline", serif;
}

/* Body always Beckman */
body,
.rte, .rte p, p, li, small, span,
a, button,
input, textarea, select {
  font-family: "ITC", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* Headings always Joly */
h1, h2, h3, h4, h5, h6,
.banner__heading,
.rich-text__heading,
.title,
.card__heading,
.section-title,
.header__menu-item,
.menu-drawer__menu-item {
  font-family: "Joly Headline", serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* =========================================================
   HEADING SIZE OVERRIDES
   ========================================================= */
h1 { font-size: 48px !important; line-height: 1.2 !important; }
h2 { font-size: 36px !important; line-height: 1.3 !important; }
h3 { font-size: 28px !important; line-height: 1.3 !important; }
h4 { font-size: 24px !important; line-height: 1.4 !important; }
h5 { font-size: 20px !important; line-height: 1.4 !important; }
h6 { font-size: 18px !important; line-height: 1.5 !important; }

/* =========================================================
   PRODUCT CARD STYLING
   ========================================================= */
.card__heading, 
.card-information__text {
  font-size: 16px !important;
  line-height: 1.4 !important;
  padding: 0 8px;
  margin: 6px 0;
  text-align: center;
}
.price {
  font-size: 14px !important;
  padding: 0 8px;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

/* Header "Shop" — force text-link look even if .button is present */
.header__icons .button.header__shopnow{
  /* kill Dawn button visuals */
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  /* kill button sizing/box model */
  display: inline !important;         /* was inline-flex */
  padding: 0 !important;
  margin: 0 0 0 12px !important;
  height: auto !important;
  min-height: 0 !important;
  min-width: 0 !important;

  /* our text-link style */
  color: var(--c-burgundy, #5c0b21) !important;
  text-decoration: underline !important;
  line-height: 1.2 !important;

  /* headline look */
  font-family: "Joly Headline", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* remove any pseudo elements Dawn adds */
.header__icons .button.header__shopnow::before,
.header__icons .button.header__shopnow::after{
  content: none !important;
  display: none !important;
}

/* remove the box you saw – it was the focus outline */
.header__icons .button.header__shopnow:focus,
.header__icons .button.header__shopnow:focus-visible{
  outline: 0 !important;
  box-shadow: none !important;
}

/* hover: just a subtle opacity change */
.header__icons .button.header__shopnow:hover{
  opacity: .85;
}

/* optional: tidy spacing between header items */
.header__icons{ gap: 12px; }



.card__heading a {
  font-family: "Joly Headline", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}
#ContactForm .field__input,
#ContactForm textarea {
  font-family: "Joly Headline", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

form select,
form select option {
  font-family: "Joly Headline", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}


