/** Shopify CDN: Minification failed

Line 80:0 All "@import" rules must come first

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** Theme styles below */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-brand-background: #F8F7F4; /* Warm White */
  --color-brand-foreground: #222222; /* Dark Charcoal */
  --color-brand-accent: #C5A059; /* Warm Gold */
  --color-brand-secondary: #EBE8E0; /* Soft Beige */
  --color-brand-white: #FFFFFF;
  
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --page-width: 1400px;
  --page-margin: 2rem;
  --header-height: 94px;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-brand-background);
  color: var(--color-brand-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-brand-foreground);
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid #8e7553;
  outline-offset: 3px;
}

main,
[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

/* Luxury Button Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--color-brand-foreground);
  color: var(--color-brand-white);
  border: 1px solid var(--color-brand-foreground);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 0; /* Sharp corners for editorial look */
}

.btn:hover {
  background-color: transparent;
  color: var(--color-brand-foreground);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-brand-foreground);
}

.btn--outline:hover {
  background-color: var(--color-brand-foreground);
  color: var(--color-brand-white);
}

.btn--gold {
  background-color: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
  color: var(--color-brand-white);
}

.btn--gold:hover {
  background-color: transparent;
  color: var(--color-brand-accent);
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 *
 * By default, a minimum content margin is set on the left and right
 * sides of the section and the content is centered in the viewport to
 * not exceed the maximum page width.
 *
 * When a child element is given the `full-width` class, it will span
 * the entire viewport.
 */
.shopify-section {
  --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  );
  --content-margin: minmax(var(--page-margin), 1fr);
  --content-grid: var(--content-margin) var(--content-width) var(--content-margin);

  /* This is required to make <img> elements work as background images */
  position: relative;
  grid-template-columns: var(--content-grid);
  display: grid;
  width: 100%;
}

/* Child elements, by default, are constrained to the central column of the grid. */
.shopify-section > * {
  grid-column: 2;
}

/* Child elements that use the full-width utility class span the entire viewport. */
.shopify-section > .full-width {
  grid-column: 1 / -1;
}

@media screen and (max-width: 900px) {
  :root {
    --page-margin: 1.25rem;
  }
}

@media screen and (max-width: 749px) {
  :root {
    --page-margin: 1rem;
    --header-height: 76px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
