/* ============================================
   ROOT COLOR SYSTEM
   Swap these to re-skin the entire site.
   ============================================ */

:root {
  /* Backgrounds */
  --bg-cream:        #f2f5f7;
  --bg-white:        #fefeff;
  --bg-pink:         #eedce8;
  --bg-pink-light:   #e8d2e0;

  /* Text */
  --text-dark:       #0f1e3d;
  --text-body:       #2d3c5e;
  --text-muted:      #5e6d8f;
  --text-light:      #8e99b2;

  /* Accents */
  --accent-olive:    #0e5f72;
  --accent-olive-dk: #0a4555;
  --accent-mauve:    #7a3568;
  --accent-rose:     #6bb0ca;

  /* UI */
  --border:          #cdd6de;
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       24px;
  --radius-full:     50px;

  /* Type */
  --font-serif:      "Cormorant Garamond", "Georgia", serif;
  --font-sans:       "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --container-max:   1120px;
  --section-pad:     3.5rem 0;
}


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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-cream);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input {
  font-family: inherit;
  font-size: inherit;
}


/* ============================================
   REUSABLE: CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}


/* ============================================
   REUSABLE: BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7em 1.8em;
  border-radius: var(--radius-full);
  background-color: var(--accent-olive);
  color: #fff;
  border: 2px solid var(--accent-olive);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent-olive-dk);
  border-color: var(--accent-olive-dk);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-olive);
}

.btn-outline:hover {
  background-color: var(--accent-olive);
  color: #fff;
}

.btn-card {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  padding: 0.55em 1.4em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-signup {
  width: 100%;
  background-color: var(--accent-rose);
  border-color: var(--accent-rose);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.85em 2em;
}

.btn-signup:hover {
  background-color: #4aa3cc;
  border-color: #4aa3cc;
}

.btn-nav {
  display: none;
  font-size: 0.72rem;
  padding: 0.6em 1.5em;
}


/* ============================================
   REUSABLE: SECTION TITLE
   ============================================ */

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}


/* ============================================
   REUSABLE: GRID
   ============================================ */

.grid {
  display: grid;
  gap: 1.25rem;
}

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


/* ============================================
   REUSABLE: CARD
   ============================================ */

.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(61, 53, 48, 0.08);
}

.card:hover .btn-card {
  opacity: 1;
}

.card-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  aspect-ratio: 1 / 1;
}

.card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.card-body {
  padding: 0.85rem 0.75rem 1rem;
}

.card-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.card-price {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-tag {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================
   HEADER: TOP BAR
   ============================================ */

.header-top {
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
  font-size: 0.72rem;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--accent-olive);
}

.header-top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.top-link:hover {
  color: var(--accent-olive);
}


/* ============================================
   HEADER: MAIN NAV
   ============================================ */

.header-main {
  background-color: var(--bg-white);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(61, 53, 48, 0.04);
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--accent-olive);
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: none;
}

.nav {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-olive);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-olive);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  padding: 0.25rem;
}

/* Mobile nav open state */
.nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 8px 24px rgba(61, 53, 48, 0.1);
  padding: 1.5rem;
  z-index: 99;
}

.nav.is-open .nav-links {
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.nav.is-open .nav-link {
  font-size: 0.95rem;
}


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

.hero {
  padding: 0;
  margin-top: 32px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid var(--accent-olive-dk);
  border-radius: 12px;
}

.hero-content {
  background-color: var(--bg-pink-light);
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 12px;
  border: 3px solid var(--accent-olive-dk);
  margin-left: 6px;
  margin-top: 6px;
}

.hero-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-mauve);
}

.hero-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


/* ============================================
   FEATURED PRODUCTS
   ============================================ */

.featured {
  padding: var(--section-pad);
}


/* ============================================
   NEWSLETTER / CONTACT
   ============================================ */

.newsletter {
  padding: var(--section-pad);
}

.newsletter-card {
  background-color: var(--bg-pink-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--accent-olive-dk);
}

.newsletter-image {
  overflow: hidden;
  border-right: 3px solid var(--accent-olive-dk);
}

.newsletter-image img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
}

.newsletter-content {
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}

.newsletter-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.newsletter-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.newsletter-subtitle {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.newsletter-text {
  font-size: 1rem;
  color: #0f1e3d;
  line-height: 1.7;
  margin-bottom: 0.4rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.newsletter-cta {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.form-input {
  width: 100%;
  padding: 0.7em 1em;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-white);
  font-size: 0.82rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--accent-rose);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 0.8rem;
}


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

.footer {
  background-color: var(--bg-white);
  padding-top: 3rem;
  margin-top: 1rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.logo-monogram-footer {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-heading {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-olive);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}


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

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

.hero-content {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.15s;
}

.section-title {
  animation: fadeUp 0.5s ease both;
}


/* ============================================
   SHOP PAGE
   ============================================ */

.shop-hero {
  padding: 2rem 0 1rem;
  text-align: center;
}

.shop-page-title {
  margin-bottom: 0.6rem;
}

.shop-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

.shop {
  padding: 1.5rem 0 3.5rem;
}

.shop-card.is-hidden {
  display: none;
}

.shop-card.is-revealing {
  animation: fadeUp 0.4s ease both;
}

.shop-load-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-load {
  min-width: 180px;
}

.shop-count {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}


/* ============================================
   SHOP FILTER TABS
   ============================================ */

.shop-filters {
  padding: 0 0 1rem;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 12px;
}

.filter-tab {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.45em 1.2em;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-tab:hover {
  border-color: var(--accent-olive);
}

.filter-tab.is-active {
  background-color: var(--accent-olive-dk);
  border-color: var(--accent-olive-dk);
  color: #fff;
}


/* ============================================
   CARD SELECTION & CART
   ============================================ */

.shop-card {
  cursor: pointer;
  position: relative;
}

.shop-card::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.shop-card:hover::after {
  opacity: 0.6;
}

.card-selected {
  outline: 3px solid var(--accent-olive);
  outline-offset: -3px;
}

.card-selected::after {
  opacity: 1;
  background: var(--accent-olive);
  border-color: var(--accent-olive);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white' stroke='white' stroke-width='2'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}


/* ============================================
   CART TOGGLE BUTTON
   ============================================ */

.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  padding: 0.25rem;
  margin-left: 0.5rem;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent-mauve);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}


/* ============================================
   CART DRAWER
   ============================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  z-index: 200;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-drawer.is-open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.cart-drawer-close {
  color: var(--text-muted);
  padding: 0.25rem;
}

.cart-items {
  list-style: none;
  flex: 1;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dark);
}

.cart-item span {
  flex: 1;
}

.cart-item-remove {
  font-size: 0.7rem;
  color: var(--accent-mauve);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 500;
}

.cart-item-remove:hover {
  color: var(--text-dark);
}

.cart-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 0;
  font-style: italic;
}

.btn-inquiry-drawer {
  display: none;
  width: 100%;
  margin-top: 1rem;
  background-color: var(--accent-olive);
  color: #fff;
  border: 2px solid var(--accent-olive);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75em 1.5em;
  border-radius: var(--radius-full);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-inquiry-drawer:hover {
  background-color: var(--accent-olive-dk);
  border-color: var(--accent-olive-dk);
}


/* ============================================
   SHOP INQUIRY FORM
   ============================================ */

.shop-inquiry {
  padding: var(--section-pad);
}

.shop-inquiry .newsletter-content {
  flex: 1;
}


/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
  animation: fadeUp 0.4s ease both;
}

.form-success.is-visible {
  display: block;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--accent-olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}


/* ============================================
   INQUIRY CHECKBOXES
   ============================================ */

.inquiry-checkboxes {
  margin-bottom: 1rem;
  text-align: left;
}

.inquiry-checkboxes-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-align: center;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-body);
  cursor: pointer;
  padding: 0.4em 0.8em;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.checkbox-item:hover {
  border-color: var(--accent-olive);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkbox-item:has(input:checked) {
  background-color: var(--accent-olive-dk);
  border-color: var(--accent-olive-dk);
  color: #fff;
}


/* ============================================
   MOBILE BREAKPOINT: max 899px
   ============================================ */

@media (max-width: 899px) {
  .cart-toggle {
    position: fixed;
    right: 10px;
    z-index: 150;
    background: var(--bg-pink-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .shop-hero {
    padding: 1.5rem 0 0.5rem;
  }

  .shop-page-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .shop-subtitle {
    font-size: 0.82rem;
    max-width: 300px;
    margin-bottom: 0.5rem;
  }

  .shop-filters {
    padding: 0 0 0.5rem;
  }

  .filter-tab {
    font-size: 0.72rem;
    padding: 0.4em 1em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .shop-filters .container {
    position: relative;
  }

  .shop-filters .container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-cream));
    pointer-events: none;
  }

  .hero-image img {
    aspect-ratio: 3 / 4;
    object-position: center center;
  }
}


/* ============================================
   DESKTOP BREAKPOINT: 900px
   ============================================ */

@media (min-width: 900px) {

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 2rem;
  }

  /* Header */
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .btn-nav {
    display: inline-block;
  }

  .logo-name {
    display: block;
  }

  /* Hero */
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 460px;
  }

  .hero-image {
    flex: 0 0 50%;
    padding: 6px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: center;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
    margin-left: 6px;
    margin-top: 6px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  /* Grid */
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* Newsletter */
  .newsletter-card {
    flex-direction: row;
    align-items: stretch;
  }

  .newsletter-image {
    flex: 0 0 38%;
  }

  .newsletter-image img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .newsletter-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3rem;
    text-align: center;
  }

  .newsletter-heading {
    font-size: 1.7rem;
  }

  .newsletter-fields {
    flex-direction: row;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  /* Section title */
  .section-title {
    font-size: 1.8rem;
  }
}


/* ============================================
   SIZING CHART
   ============================================ */

.size-section {
  padding: 1rem 0 4rem;
}

.size-category-title {
  text-align: left;
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.size-category-title:first-of-type {
  margin-top: 0.5rem;
}

.size-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--accent-olive-dk);
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-body);
}

.size-table thead th {
  background-color: var(--accent-olive-dk);
  color: var(--bg-white);
  font-weight: 500;
  text-align: left;
  padding: 0.85rem 1.1rem;
  white-space: nowrap;
}

.size-table tbody td {
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--border);
}

.size-table tbody tr:nth-child(even) {
  background-color: var(--bg-pink-light);
}

@media (max-width: 899px) {
  .size-category-title {
    font-size: 1.3rem;
    margin: 1.75rem 0 0.75rem;
  }

  .size-table {
    font-size: 0.85rem;
  }

  .size-table thead th,
  .size-table tbody td {
    padding: 0.6rem 0.75rem;
  }
}