/* ============================================================
   ROSERY FLOWER SHOP — Design System
   Fonts: Cormorant Garamond (serif headlines) · Josefin Sans (UI)
   Base color: Dark teal-green #1a2d27
   ============================================================ */

:root {
  --rs-bg:       #1a2d27;
  --rs-bg-deep:  #131e1c;
  --rs-white:    #ffffff;
  --rs-cream:    #f5ede4;
  --rs-muted:    rgba(255, 255, 255, 0.72);
  --rs-border:   rgba(255, 255, 255, 0.48);
  --rs-serif:    'Cormorant Garamond', Georgia, serif;
  --rs-sans:     'Josefin Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */
html, body {
  overflow-x: clip;
}

body {
  font-family: var(--rs-serif);
  font-size: 17px;
  line-height: 1.7;
  color: #1a2d27;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global link colour */
a {
  color: var(--rs-bg);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #2a4a3e;
  text-decoration: underline;
}

/* PS/Bootstrap UI overrides: keep Josefin Sans only for form controls + breadcrumbs */
.breadcrumb, .pagination, label, input, textarea, select, button,
.btn, .alert, .badge, .tag, .form-control {
  font-family: var(--rs-sans) !important;
}

/* Remove PS default card styling from content blocks */
#content.page-content.card {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

/* ── GLOBAL: Remove all sidebars ── */
#left-column, #right-column { display: none !important; }

/* ── GLOBAL: Full-width content wrapper ── */
#content-wrapper {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── GLOBAL: 1440px container, zero bootstrap padding ── */
#wrapper > .container {
  max-width: 1440px !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}
#wrapper > .container > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100%;
}

/* ── GLOBAL: Remove white space gaps above/below content ── */
section#wrapper { padding-top: 0 !important; margin-top: 0 !important; }
footer#footer, footer.js-footer { margin-top: 0 !important; background: none !important; }

/* ── GLOBAL: Hide all breadcrumbs ── */
nav.breadcrumb, .breadcrumb-wrapper, #breadcrumb-wrapper,
ol.breadcrumb, .rs-breadcrumb { display: none !important; }

/* ── GLOBAL: Remove PS card wrapper from page content ── */
#content.page-content, #content.page-content.card {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}
footer.page-footer { display: none !important; }

@media (max-width: 768px) {
  body:not(#index) #wrapper > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

/* Expand PS container to full width, remove padding */
body#product #wrapper > .container {
  max-width: 1440px !important;
  width: 100% !important;
  padding: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body#product #wrapper > .container > .row {
  display: block !important;
  margin: 0 !important;
  width: 100% !important;
}
/* Override Bootstrap col-md-9 max-width that constrains content-wrapper to 75% */
body#product #content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding: 0 !important;
}
body#product #left-column,
body#product #right-column {
  display: none !important;
  width: 0 !important;
  padding: 0 !important;
}
/* Breadcrumb stays within 1440px with left padding */
body#product .breadcrumb-wrapper,
body#product nav.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 80px;
}
/* PS sometimes wraps in #main which may add its own padding */
body#product #main {
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Product page grid ── */
.rs-product-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 80px 80px;
}

.rs-pp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Gallery (left) ── */
.rs-pp__gallery {
  position: relative;
}

.rs-pp__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--rs-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  pointer-events: none;
}

.rs-pp__main-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5f5f3;
  margin-bottom: 14px;
}

.rs-pp__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.2s;
}

/* Thumbnail strip */
.rs-pp__thumbs-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-pp__thumbs-vp {
  flex: 1;
  overflow: hidden;
}

.rs-pp__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rs-pp__thumbs::-webkit-scrollbar { display: none; }

.rs-pp__thumb {
  flex: 0 0 calc(25% - 8px);
  min-width: 64px;
  max-width: 90px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  padding: 0;
  background: #f0f0ee;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.18s;
}

.rs-pp__thumb.active,
.rs-pp__thumb:hover {
  border-color: #1a1a1a;
}

.rs-pp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rs-pp__tnav {
  flex-shrink: 0;
  background: none;
  border: 1px solid #ddd;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  transition: border-color 0.18s, color 0.18s;
}

.rs-pp__tnav:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* ── Info (right) ── */
.rs-pp__info {
  padding-top: 4px;
}

/* Stars */
.rs-pi__stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.rs-pi__star {
  fill: #e0e0e0;
  stroke: none;
  flex-shrink: 0;
}

.rs-pi__star.rs-pi__star--filled {
  fill: #E8923A;
}

.rs-pi__review-link {
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #E8923A;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rs-pi__review-link:hover {
  color: #c97425;
}

/* Product name */
.rs-pi__name {
  font-family: var(--rs-sans);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 20px;
}

/* Feature list — user enters <ul><li> in short description in PS admin */
.rs-pi__features {
  margin-bottom: 24px;
}

.rs-pi__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-pi__features ul li {
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 300;
  color: #444;
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.55;
}

.rs-pi__features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  color: #666;
  font-size: 12px;
}

.rs-pi__features p {
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 300;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* Price block */
.rs-pi__price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.rs-pi__price-current {
  font-family: var(--rs-sans);
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.rs-pi__price-orig {
  font-family: var(--rs-sans);
  font-size: 15px;
  font-weight: 300;
  color: #aaa;
  text-decoration: line-through;
}

.rs-pi__disc-badge {
  background: #E8923A;
  color: #fff;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 4px 9px;
}

/* Divider */
.rs-pi__divider {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 0 0 18px;
}

/* Meta: stock + shipping */
.rs-pi__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.rs-pi__avail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
}

.rs-pi__avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rs-pi__avail--in  { color: #2a7c2a; }
.rs-pi__avail--in  .rs-pi__avail-dot { background: #4CAF50; }
.rs-pi__avail--low { color: #8a5a00; }
.rs-pi__avail--low .rs-pi__avail-dot { background: #FF9800; }
.rs-pi__avail--out { color: #c62828; }
.rs-pi__avail--out .rs-pi__avail-dot { background: #f44336; }

.rs-pi__shipping {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #666;
  margin: 0;
}

/* Product variants (PS attribute selectors) */
body#product .product-variants .form-control-select,
body#product .product-variants select {
  font-family: var(--rs-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 10px 12px;
  background-color: #fff;
  appearance: auto;
  margin-bottom: 16px;
}

body#product .product-variants-item {
  margin-bottom: 14px;
}

body#product .product-variants .input-color,
body#product .product-variants .input-radio {
  accent-color: #1a1a1a;
}

/* Quantity row */
.rs-pi__qty-row {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  width: fit-content;
  margin-bottom: 14px;
}

.rs-pi__qty-btn {
  background: none;
  border: none;
  width: 42px;
  height: 46px;
  font-size: 20px;
  font-weight: 300;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
  font-family: var(--rs-sans);
}

.rs-pi__qty-btn:hover {
  background: #f5f5f5;
}

.rs-pi__qty-input {
  width: 52px;
  height: 46px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-family: var(--rs-sans);
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
}

.rs-pi__qty-input::-webkit-inner-spin-button,
.rs-pi__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Add to Cart button */
.rs-pi__add-btn {
  display: block;
  width: 100%;
  padding: 17px 24px;
  background: #E8923A;
  border: 1px solid #E8923A;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-bottom: 28px;
  text-align: center;
}

.rs-pi__add-btn:hover:not(:disabled) {
  background: transparent;
  color: #E8923A;
}

.rs-pi__add-btn:disabled {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

/* Accordions */
.rs-pi__accordions {
  border-top: 1px solid #ebebeb;
}

.rs-pi__acc {
  border-bottom: 1px solid #ebebeb;
}

.rs-pi__acc-hd {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: left;
  gap: 12px;
}

.rs-pi__acc-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #555;
}

.rs-pi__acc--open > .rs-pi__acc-hd .rs-pi__acc-icon {
  transform: rotate(180deg);
}

.rs-pi__acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.rs-pi__acc--open .rs-pi__acc-body {
  max-height: 600px;
}

.rs-pi__acc-content {
  padding: 0 2px 20px;
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
}

.rs-pi__acc-content p { margin: 0 0 8px; }

/* Product page footer / hooks areas */
body#product .page-footer { display: none; }

/* Related products — identical dark-teal style as homepage featured carousel */
.rs-related {
  background: var(--rs-bg) !important;
  /* Full-width breakout, same as homepage sections */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.rs-related .rs-feat__label {
  color: rgba(255, 255, 255, 0.45);
}

.rs-related .rs-feat__title {
  color: #ffffff;
}

.rs-related .rs-feat__subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.rs-related .rs-feat__name {
  color: #ffffff;
}

.rs-related .rs-feat__price {
  color: rgba(255, 255, 255, 0.7);
}

.rs-related .rs-feat__cart-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.rs-related .rs-feat__cart-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.rs-related .rs-feat__nav {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.rs-related .rs-feat__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ── Product page responsive ── */
@media (max-width: 960px) {
  .rs-pp__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rs-product-page {
    padding: 24px 20px 60px;
  }

  body#product .breadcrumb-wrapper {
    padding: 10px 20px;
  }
}

/* ============================================================
   GLOBAL PRODUCT CARD  (.rs-card)
   Used in all listing pages, search results, category grids.
   Custom-designed sections (Featured, Related) override with
   their own colours via .rs-feat or .rs-related parent scope.
   ============================================================ */

/* ── Kill old PS card chrome ── */
.rs-card .thumbnail-container,
.rs-card .card,
.rs-card .product-thumbnail,
.product-miniature .thumbnail-container { all: unset; }

/* ── Card shell ── */
.rs-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  width: 100%;
}

/* ── Image wrap ── */
.rs-card__img-wrap {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #c8d8e8 0%, #a8bac8 40%, #8a9cb0 100%);
  text-decoration: none;
}

.rs-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.rs-card__img-wrap:hover .rs-card__img {
  transform: scale(1.04);
}

/* ── Product flags (New / Sale badges) ── */
.rs-card__flags {
  position: absolute;
  top: 12px;
  left: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.rs-card__flag {
  font-family: var(--rs-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: #fff;
}

.rs-card__flag--new     { background: #1a2d27; }
.rs-card__flag--on-sale,
.rs-card__flag--discount { background: #E8923A; }
.rs-card__flag--pack    { background: #5a7a6a; }

/* ── Meta: name + price ── */
.rs-card__meta {
  padding: 14px 0 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rs-card__name {
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rs-card__name:hover { color: #1a2d27; }

.rs-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rs-card__price {
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.rs-card__price-orig {
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 300;
  color: #aaa;
  text-decoration: line-through;
}

.rs-card__disc {
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #E8923A;
}

/* ── Add to cart button ── */
.rs-card__form { margin: 0; }

.rs-card__btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #d0d0d0;
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-top: auto;
}

.rs-card__btn:hover {
  background: #1a2d27;
  border-color: #1a2d27;
  color: #ffffff;
}

.rs-card__btn--opts {
  border-style: dashed;
}

/* ── Variant swatches (hidden unless enabled) ── */
.rs-card__swatches { display: none; }

/* ── PS product listing grid override ── */

/* Listings (category/search) — 3-col desktop, 2-col tablet, 1-col mobile */
.products.row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin: 0 !important;
}

/* Each Bootstrap column becomes a grid cell */
.products.row .js-product {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  flex: none !important;
}

/* Remove old PS thumbnail styles that bleed into our card */
.product-miniature .thumbnail-container { display: contents; }
.product-miniature .product-description { display: none !important; }
.product-miniature .highlighted-informations { display: none !important; }

/* Category page: decent padding on the products section */
#products .products.row,
#js-product-list .products.row {
  padding-top: 16px;
}

/* ── Card on dark-bg sections (carousel) ── */
/* When inside .rs-feat or .rs-related the image wrap already
   has the gradient; only meta text and button need colour flips.
   These are handled by .rs-related overrides on .rs-feat__* classes. */

/* ── Card responsive ── */
@media (max-width: 991px) {
  .products.row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 575px) {
  .products.row {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
}

/* ============================================================
   HOMEPAGE — kill old Ghost Leads elements + layout resets
   ============================================================ */

/* Hide Ghost Leads sections */
.gl-announcement-bar,
.gl-hero,
.gl-trust,
.gl-why,
.gl-stats,
.gl-newsletter,
.gl-products-wrapper {
  display: none !important;
}

/* Homepage background */
body#index {
  background: var(--rs-bg);
}

/* Header on homepage gets the dark bg */
body#index #header {
  background: var(--rs-bg);
  box-shadow: none;
  border: none;
}

/* Kill PS wrapper constraints — full-width sections need no container limits */
body#index #wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body#index #wrapper > .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* display:block disables Bootstrap flexbox on .row so children fill 100% width */
body#index #wrapper > .container > .row {
  margin: 0 !important;
  display: block !important;
  width: 100% !important;
}
/* Hide any sidebar columns that may exist from layout config */
body#index #left-column,
body#index #right-column {
  display: none !important;
  width: 0 !important;
  padding: 0 !important;
}
body#index #content-wrapper {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
  flex: none !important;
  display: block !important;
}
body#index section#main {
  margin: 0;
  padding: 0;
}
body#index .page-content,
body#index #content.page-content {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
body#index .breadcrumb-wrapper,
body#index nav.breadcrumb,
body#index ol.breadcrumb {
  display: none !important;
}
/* Notifications bar — no extra margin on homepage */
body#index #notifications {
  margin: 0 !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.rs-header {
  background: var(--rs-bg);
  padding: 22px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.rs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

/* Hide original PrestaShop header blocks that we've replaced */
.header-banner,
.header-nav,
.header-top,
.rs-ps-hidden {
  display: none;
}

/* Navigation links */
.rs-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.rs-nav--right {
  justify-content: flex-end;
}

.rs-header .rs-nav a,
.rs-header .rs-nav a:link,
.rs-header .rs-nav a:visited {
  color: #ffffff !important;
  text-decoration: none;
  font-family: var(--rs-sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.rs-header .rs-nav a:hover,
.rs-header .rs-nav a:focus {
  opacity: 0.6;
  text-decoration: none;
  color: #ffffff !important;
}

/* Cart link with bag icon */
.rs-cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rs-cart-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Logo — centered between the two nav blocks */
.rs-logo,
.rs-logo:link,
.rs-logo:visited,
.rs-logo:hover,
.rs-logo:focus {
  text-align: center;
  color: #ffffff !important;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 0;
}

.rs-logo__est {
  font-family: var(--rs-sans);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2px;
  display: block;
}

.rs-logo__name {
  font-family: var(--rs-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--rs-white);
  display: block;
}

.rs-logo__sub {
  font-family: var(--rs-sans);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
  display: block;
}

/* Mobile hamburger button */
.rs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 5px;
}

.rs-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--rs-white);
  transition: transform 0.2s;
}

/* Mobile navigation drawer */
.rs-mobile-nav {
  background: var(--rs-bg-deep);
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-mobile-nav a {
  display: block;
  padding: 13px 0;
  color: var(--rs-white);
  font-family: var(--rs-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rs-mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.rs-hero {
  /* 100vw breakout: guarantees full viewport width regardless of Bootstrap grid */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  min-height: calc(100vh - 86px);
  background-color: var(--rs-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Left-to-right gradient overlay for text legibility */
.rs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 40, 32, 0.72) 0%,
    rgba(18, 40, 32, 0.38) 52%,
    rgba(18, 40, 32, 0.04) 100%
  );
  pointer-events: none;
}

.rs-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 80px;
}

/* Small uppercase tagline */
.rs-hero__tagline {
  display: block;
  font-family: var(--rs-sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

/* Large display headline */
.rs-hero__headline {
  font-family: var(--rs-serif);
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--rs-white);
  margin: 0 0 32px 0;
  max-width: 820px;
  letter-spacing: -0.01em;
}

/* Descriptive paragraph */
.rs-hero__subtext {
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--rs-muted);
  max-width: 375px;
  margin: 0 0 46px 0;
  text-align: center;
}

/* CTA buttons row */
.rs-hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Shared outlined button style */
.rs-btn {
  display: inline-block;
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rs-white);
  text-decoration: none;
  border: 1px solid var(--rs-border);
  background: transparent;
  padding: 15px 32px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}

.rs-btn:hover,
.rs-btn:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--rs-white);
  text-decoration: none;
}

/* ============================================================
   PRODUCTS SECTION (below hero)
   ============================================================ */
.rs-products-section {
  /* same 100vw breakout */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: #f5ece2;
  padding: 60px 0;
  min-height: 100px;
}

/* Every PS native module section/div inside gets a 1440px cap */
.rs-products-section > * {
  max-width: 1440px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 80px !important;
  padding-right: 80px !important;
  box-sizing: border-box;
  width: 100%;
}

/* Nested .container divs that some PS modules output */
.rs-products-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================================
   FEATURED PRODUCTS CAROUSEL
   ============================================================ */
.rs-feat {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #edf0f5;
  padding: 80px 0;
}

.rs-feat__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Section header */
.rs-feat__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}

.rs-feat__label {
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a7080;
  margin: 0 0 8px 0;
}

.rs-feat__title {
  font-family: var(--rs-sans);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1a2535;
  margin: 0;
}

.rs-feat__subtitle {
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a7080;
  max-width: 220px;
  text-align: right;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 6px;
}

/* ── Static 3-column grid (New Arrivals) ── */
.rs-feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .rs-feat__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .rs-feat__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Cards in the grid stretch to fill their cell */
.rs-feat__grid .rs-feat__card {
  width: 100%;
}

/* Carousel wrapper */
.rs-feat__carousel-outer {
  position: relative;
}

.rs-feat__carousel-viewport {
  overflow: hidden;
}

.rs-feat__carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Product card */
.rs-feat__card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Image area — light blue gradient background */
.rs-feat__img-wrap {
  display: block;
  background: linear-gradient(175deg, #b8cfe0 0%, #cddce8 35%, #e4edf4 70%, #f0f4f8 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-decoration: none;
}

.rs-feat__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.rs-feat__img-wrap:hover img {
  transform: scale(1.04);
}

.rs-feat__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ab0c0;
}

/* Name + price row */
.rs-feat__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
  gap: 8px;
}

.rs-feat__name {
  font-family: var(--rs-sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a2535;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rs-feat__name:hover {
  color: var(--rs-bg);
  text-decoration: none;
}

.rs-feat__price {
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  color: #1a2535;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Add to cart */
.rs-feat__cart-form {
  margin: 0;
}

.rs-feat__cart-btn {
  width: 100%;
  padding: 13px 8px;
  background: transparent;
  border: 1px solid #b8bfc8;
  font-family: var(--rs-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a2535;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rs-feat__cart-btn:hover {
  background: #1a2535;
  color: #ffffff;
  border-color: #1a2535;
}

/* Navigation arrows */
.rs-feat__nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid #d0d5dc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #1a2535;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.rs-feat__nav:hover {
  background: #1a2535;
  color: #ffffff;
  border-color: #1a2535;
}

.rs-feat__nav--prev { left: -21px; }
.rs-feat__nav--next { right: -21px; }

/* ============================================================
   NEWSLETTER — VIDEO BACKGROUND SECTION
   ============================================================ */
.rs-newsletter {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0d1117;
}

/* Video fills the entire section */
.rs-newsletter__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Gradient: transparent left → dark right for text legibility */
.rs-newsletter__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 14, 20, 0.05) 0%,
    rgba(10, 14, 20, 0.30) 42%,
    rgba(10, 14, 20, 0.82) 58%,
    rgba(10, 14, 20, 0.96) 100%
  );
}

/* Inner container — pushes content to the right */
.rs-newsletter__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Content box — right half */
.rs-newsletter__content {
  width: 46%;
  min-width: 360px;
}

/* Headline */
.rs-newsletter__headline {
  font-family: var(--rs-sans);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 36px 0;
}

/* ── Form ─────────────────────────────────── */
.rs-nl__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Email input row */
.rs-nl__input-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  padding-bottom: 2px;
}

.rs-nl__email {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
}

.rs-nl__email::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Arrow submit icon */
.rs-nl__arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.rs-nl__arrow:hover {
  color: #ffffff;
}

/* Privacy checkbox */
.rs-nl__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  cursor: pointer;
}

.rs-nl__checkbox {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  accent-color: #ffffff;
  cursor: pointer;
}

.rs-nl__privacy-label span,
.rs-nl__privacy-label a {
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  line-height: 1.5;
}

.rs-nl__privacy-label a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* JOIN THE LIST button */
.rs-nl__submit {
  width: 100%;
  padding: 17px 24px;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0d1117;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.rs-nl__submit:hover {
  background: transparent;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .rs-newsletter__inner {
    padding: 60px 24px;
    justify-content: center;
  }
  .rs-newsletter__content {
    width: 100%;
    min-width: 0;
  }
  .rs-newsletter__overlay {
    background: rgba(10, 14, 20, 0.72);
  }
}

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

/* ── Hide the default PS footer wrapper ── */
#footer > .container,
#footer .footer-container,
#footer .footer-container .container,
#footer .text-sm-center { display: none !important; }

/* ── Footer shell ── */
.rs-footer {
  background: var(--rs-bg);
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* ── Top section: columns + newsletter ── */
.rs-footer__top {
  padding: 72px 0 48px;
}

.rs-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.7fr;
  gap: 48px;
  align-items: start;
}

/* ── Link columns ── */
.rs-footer__col-head {
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
}

.rs-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rs-footer__links a {
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.18s;
}

.rs-footer__links a:hover {
  color: #ffffff;
}

/* ── Newsletter column ── */
.rs-footer__col--newsletter {
  padding-left: 16px;
}

.rs-footer__nl-text {
  font-family: var(--rs-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
}

/* Subscribe form field */
.rs-footer__nl-field {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  margin-bottom: 28px;
}

.rs-footer__nl-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--rs-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  padding: 14px 16px;
}

.rs-footer__nl-input::placeholder {
  color: #aaa;
}

.rs-footer__nl-btn {
  background: transparent;
  border: none;
  border-left: 1px solid #e8e8e8;
  padding: 14px 20px;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.rs-footer__nl-btn:hover {
  background: #f5f5f5;
}

/* Social icons */
.rs-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rs-footer__social-label {
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.rs-footer__social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rs-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.18s;
  line-height: 0;
}

.rs-footer__social-icon svg {
  width: 16px;
  height: 16px;
}

.rs-footer__social-icon:hover {
  color: #ffffff;
}

/* ── Bottom: watermark + copyright ── */
.rs-footer__bottom {
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.rs-footer__watermark {
  font-family: var(--rs-serif);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.055);
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 0.88;
  padding-bottom: 0;
  user-select: none;
  pointer-events: none;
}

.rs-footer__copyright {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 28px;
  position: relative;
  z-index: 1;
}

.rs-footer__copyright p {
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  text-align: center;
}

.rs-footer__credit {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.18) !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
}

/* ── Footer responsive ── */
@media (max-width: 1080px) {
  .rs-footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 40px;
  }
  .rs-footer__col--newsletter {
    grid-column: 1 / -1;
    padding-left: 0;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .rs-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    gap: 32px;
  }
  .rs-footer__col--newsletter {
    grid-column: 1 / -1;
  }
  .rs-footer__top { padding: 48px 0 32px; }
  .rs-footer__copyright { padding: 0 20px 24px; }
}

/* ============================================================
   TICKER / LOGO STRIP
   ============================================================ */
.rs-ticker {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--rs-bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 18px 0;
}

.rs-ticker__viewport {
  overflow: hidden;
  white-space: nowrap;
}

/* Track contains items × 2 for seamless loop */
.rs-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: rs-ticker-scroll 30s linear infinite;
  will-change: transform;
}

.rs-ticker:hover .rs-ticker__track {
  animation-play-state: paused;
}

@keyframes rs-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.rs-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.rs-ticker__sep {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.rs-about {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #faf7f3;
  padding: 90px 0;
}

.rs-about__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Left column — main image */
.rs-about__image-col {
  flex: 0 0 44%;
  max-width: 44%;
}

.rs-about__main-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.rs-about__img-placeholder {
  width: 100%;
  height: 540px;
  background: #e8e0d6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #a09080;
  font-family: var(--rs-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 24px;
}

/* Right column — content */
.rs-about__content-col {
  flex: 1;
  min-width: 0;
}

.rs-about__headline {
  font-family: var(--rs-serif);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.rs-about__tagline {
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rs-bg);
  margin: 0 0 18px 0;
}

.rs-about__desc {
  font-family: var(--rs-sans);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #5a5a5a;
  margin: 0 0 28px 0;
  max-width: 440px;
}

.rs-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 3px;
  margin-bottom: 44px;
  transition: color 0.2s, border-color 0.2s;
}

.rs-about__cta:hover {
  color: var(--rs-bg);
  border-color: var(--rs-bg);
  text-decoration: none;
}

/* Thumbnail grid — adapts to 2, 3, or 4 images */
.rs-about__thumbs {
  display: grid;
  gap: 10px;
}

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

.rs-about__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.rs-about__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rs-about__thumb img:hover {
  transform: scale(1.05);
}

.rs-about__thumb--empty {
  background: #ede6dc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0a090;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .rs-header {
    padding: 16px 20px;
  }

  .rs-header__inner {
    flex-wrap: nowrap;
  }

  .rs-nav--left,
  .rs-nav--right {
    display: none;
  }

  .rs-hamburger {
    display: flex;
  }

  .rs-logo {
    padding: 0;
    margin: 0 auto;
  }

  .rs-logo__name {
    font-size: 26px;
  }

  .rs-hero__inner {
    padding: 40px 24px;
  }

  .rs-hero__headline {
    max-width: 100%;
  }

  .rs-hero__subtext {
    max-width: 100%;
    text-align: left;
  }

  .rs-hero__actions {
    flex-direction: column;
  }

  .rs-btn {
    text-align: center;
  }

  /* Featured carousel — full card on mobile */
  .rs-feat__inner { padding: 0 20px; }
  .rs-feat__header { flex-direction: column; align-items: flex-start; }
  .rs-feat__subtitle { text-align: left; max-width: 100%; }
  .rs-feat__card { flex: 0 0 calc(100% - 0px); }
  .rs-feat__nav--prev { left: 0; }
  .rs-feat__nav--next { right: 0; }

  /* About section — stack on mobile */
  .rs-about__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }

  .rs-about__image-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .rs-about__main-img,
  .rs-about__img-placeholder {
    height: 320px;
  }

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

@media (min-width: 992px) {
  .rs-mobile-nav {
    display: none !important;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Kill default PS wrapper chrome ── */
body.page-cms .rs-about-page ~ *,
body.page-cms #notifications { display: none; }

/* ── Hero ── */
.rs-ap__hero {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  min-height: 520px;
  background: var(--rs-bg);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.rs-ap__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,45,39,0.92) 0%, rgba(26,45,39,0.45) 60%, rgba(26,45,39,0.2) 100%),
    url('') center/cover no-repeat;
  background-color: var(--rs-bg);
}

.rs-ap__hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 80px 72px;
}

.rs-ap__hero-eyebrow {
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 16px;
}

.rs-ap__hero-title {
  font-family: var(--rs-serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
  margin: 0 0 16px;
}

.rs-ap__hero-sub {
  font-family: var(--rs-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── Large tagline ── */
.rs-ap__tagline {
  background: #faf7f2;
  padding: 80px 0;
}

.rs-ap__tagline-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

.rs-ap__tagline-text {
  font-family: var(--rs-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--rs-bg);
  margin: 0;
  border: none;
  padding: 0;
}

/* ── Story 2-col ── */
.rs-ap__story {
  background: #ffffff;
  padding: 100px 0;
}

.rs-ap__story-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rs-ap__eyebrow {
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rs-bg);
  opacity: 0.5;
  margin: 0 0 14px;
}

.rs-ap__story-title {
  font-family: var(--rs-serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  font-style: italic;
  color: var(--rs-bg);
  line-height: 1.2;
  margin: 0 0 28px;
}

.rs-ap__story-body {
  font-family: var(--rs-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #444;
  margin: 0 0 18px;
}

.rs-ap__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rs-bg);
  text-decoration: none;
  border-bottom: 1px solid var(--rs-bg);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.rs-ap__cta:hover {
  opacity: 0.6;
  color: var(--rs-bg);
  text-decoration: none;
}

.rs-ap__story-img-wrap {
  aspect-ratio: 4/5;
  background: var(--rs-bg);
  overflow: hidden;
}

.rs-ap__story-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.rs-ap__story-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rs-ap__story-placeholder span {
  font-family: var(--rs-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

/* ── Values 4-col ── */
.rs-ap__values {
  background: #faf7f2;
  padding: 80px 0;
}

.rs-ap__values-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.rs-ap__value {
  text-align: center;
}

.rs-ap__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(26,45,39,0.08);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--rs-bg);
}

.rs-ap__value-title {
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rs-bg);
  margin: 0 0 10px;
}

.rs-ap__value-body {
  font-family: var(--rs-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* ── CMS editable section ── */
.rs-ap__cms {
  background: #ffffff;
  padding: 60px 0;
}

.rs-ap__cms-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
  font-family: var(--rs-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #444;
}

/* ── Standard CMS pages ── */
.rs-cms-page-header {
  background: var(--rs-bg);
  padding: 60px 80px;
}

.rs-cms-page-header__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.rs-cms-page-header__title {
  font-family: var(--rs-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  margin: 0;
}

.rs-cms-standard {
  padding: 60px 0;
}

.rs-cms-standard__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
  font-family: var(--rs-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #333;
}

/* ── Kill sidebar + breadcrumb on About page ── */
body#cms.cms-id-4 #left-column,
body#cms.cms-id-4 #right-column { display: none !important; }
body#cms.cms-id-4 #content-wrapper {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}
body#cms.cms-id-4 #wrapper > .container {
  max-width: 100% !important;
  padding: 0 !important;
}
body#cms.cms-id-4 #wrapper > .container > .row {
  display: block !important;
  margin: 0 !important;
}
body#cms.cms-id-4 .breadcrumb-wrapper,
body#cms.cms-id-4 nav.breadcrumb,
body#cms.cms-id-4 ol.breadcrumb { display: none !important; }

/* ── Kill sidebar + breadcrumb on Contact page ── */
body#contact #left-column,
body#contact #right-column { display: none !important; }
body#contact #content-wrapper {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}
body#contact #wrapper > .container {
  max-width: 100% !important;
  padding: 0 !important;
}
body#contact #wrapper > .container > .row {
  display: block !important;
  margin: 0 !important;
}
body#contact .breadcrumb-wrapper,
body#contact nav.breadcrumb,
body#contact ol.breadcrumb { display: none !important; }
/* Remove the card/border PS wraps contact content in */
body#contact #content.page-content {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ── About responsive ── */
@media (max-width: 900px) {
  .rs-ap__story-inner { grid-template-columns: 1fr; gap: 40px; }
  .rs-ap__story-img-wrap { aspect-ratio: 3/2; }
  .rs-ap__values-inner { grid-template-columns: repeat(2, 1fr); }
  .rs-ap__hero-overlay, .rs-ap__tagline-inner, .rs-ap__story-inner,
  .rs-ap__values-inner, .rs-ap__cms-inner { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 560px) {
  .rs-ap__values-inner { grid-template-columns: 1fr; }
  .rs-ap__hero-overlay, .rs-ap__tagline-inner, .rs-ap__story-inner,
  .rs-ap__values-inner, .rs-ap__cms-inner { padding-left: 20px; padding-right: 20px; }
  .rs-ap__story-img-wrap { aspect-ratio: 1/1; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Header band ── */
.rs-contact-page { }

.rs-cp__header {
  background: var(--rs-bg);
  padding: 80px 0 72px;
  text-align: center;
}

.rs-cp__header-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.rs-cp__eyebrow {
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 14px;
}

.rs-cp__title {
  font-family: var(--rs-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 18px;
  line-height: 1;
}

.rs-cp__subtitle {
  font-family: var(--rs-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── Body 2-col ── */
.rs-cp__body {
  background: #faf7f2;
  padding: 80px 0 100px;
}

.rs-cp__body-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

/* ── Contact form ── */
.rs-contact-form {
  background: #ffffff;
  padding: 48px;
  box-shadow: 0 2px 32px rgba(26,45,39,0.06);
}

.rs-cf__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rs-cf__field {
  margin-bottom: 24px;
}

.rs-cf__label {
  display: block;
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rs-bg);
  margin-bottom: 8px;
}

.rs-cf__optional {
  color: #aaa;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.rs-cf__input,
.rs-cf__select,
.rs-cf__textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  outline: none;
  font-family: var(--rs-sans);
  font-size: 14px;
  font-weight: 300;
  color: #1a1a1a;
  background: #faf9f7;
  padding: 14px 16px;
  box-sizing: border-box;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.rs-cf__input:focus,
.rs-cf__select:focus,
.rs-cf__textarea:focus {
  border-color: var(--rs-bg);
  background: #ffffff;
}

.rs-cf__textarea {
  resize: vertical;
  min-height: 180px;
}

.rs-cf__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a2d27' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.rs-cf__file {
  font-family: var(--rs-sans);
  font-size: 13px;
  color: #555;
}

.rs-cf__gdpr {
  margin-bottom: 24px;
  font-family: var(--rs-sans);
  font-size: 12px;
  color: #777;
}

.rs-cf__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rs-bg);
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  font-family: var(--rs-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
  justify-content: center;
}

.rs-cf__submit:hover {
  opacity: 0.82;
}

.rs-cf__notice {
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: var(--rs-sans);
  font-size: 13px;
}

.rs-cf__notice--success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #2e7d32;
}

.rs-cf__notice--error {
  background: #fdecea;
  color: #c62828;
  border-left: 3px solid #c62828;
}

.rs-cf__notice ul {
  margin: 0;
  padding: 0 0 0 16px;
}

/* ── Info sidebar ── */
.rs-cp__info-col {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.rs-cp__info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.rs-cp__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(26,45,39,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-bg);
  margin-top: 2px;
}

.rs-cp__info-label {
  font-family: var(--rs-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rs-bg);
  margin: 0 0 6px;
}

.rs-cp__info-text {
  font-family: var(--rs-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ── Contact responsive ── */
@media (max-width: 900px) {
  .rs-cp__body-inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 48px;
  }
  .rs-cp__info-col { flex-direction: row; flex-wrap: wrap; gap: 28px; }
  .rs-cp__info-block { width: calc(50% - 14px); }
  .rs-contact-form { padding: 32px; }
}

@media (max-width: 600px) {
  .rs-cp__body-inner { padding: 0 20px; }
  .rs-cf__row--2 { grid-template-columns: 1fr; gap: 0; }
  .rs-cp__info-col { flex-direction: column; }
  .rs-cp__info-block { width: 100%; }
  .rs-contact-form { padding: 24px; }
}

/* ============================================================
   SIDEBAR KILLER — Weddings, Flower Chronicles CMS pages
   ============================================================ */
body#cms.cms-id-6 #left-column,
body#cms.cms-id-6 #right-column,
body#cms.cms-id-7 #left-column,
body#cms.cms-id-7 #right-column { display: none !important; }
body#cms.cms-id-6 #content-wrapper,
body#cms.cms-id-7 #content-wrapper {
  flex: 0 0 100% !important; max-width: 100% !important;
  padding: 0 !important; width: 100% !important;
}
body#cms.cms-id-6 #wrapper > .container,
body#cms.cms-id-7 #wrapper > .container { max-width: 100% !important; padding: 0 !important; }
body#cms.cms-id-6 #wrapper > .container > .row,
body#cms.cms-id-7 #wrapper > .container > .row { display: block !important; margin: 0 !important; }
body#cms.cms-id-6 .breadcrumb-wrapper, body#cms.cms-id-6 nav.breadcrumb,
body#cms.cms-id-7 .breadcrumb-wrapper, body#cms.cms-id-7 nav.breadcrumb { display: none !important; }
body#cms.cms-id-6 #content.page-content,
body#cms.cms-id-7 #content.page-content {
  border: none !important; box-shadow: none !important;
  background: transparent !important; padding: 0 !important;
}

/* ============================================================
   LEGAL CMS PAGES — clean standard layout
   ============================================================ */
.rs-cms-standard { background: #fff; min-height: 50vh; }
.rs-cms-standard__inner {
  max-width: 780px; margin: 0 auto;
  padding: 80px 40px 100px;
  font-family: var(--rs-serif); font-size: 17px; line-height: 1.8; color: #1a2d27;
}
.rs-cms-standard__inner h1, .rs-cms-standard__inner h2 {
  font-family: var(--rs-serif); font-weight: 600; color: var(--rs-bg); margin: 2em 0 0.5em;
}
.rs-cms-standard__inner h1 { font-size: 2.2rem; margin-top: 0; }
.rs-cms-standard__inner h2 { font-size: 1.5rem; border-bottom: 1px solid rgba(26,45,39,0.15); padding-bottom: 0.4em; }
.rs-cms-standard__inner p { margin-bottom: 1.2em; }
.rs-cms-standard__inner ul, .rs-cms-standard__inner ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.rs-cms-standard__inner li { margin-bottom: 0.4em; }
.rs-cms-standard__inner a { color: var(--rs-bg); border-bottom: 1px solid rgba(26,45,39,0.3); }
.rs-cms-standard__inner strong { font-weight: 600; }
.rs-cms-page-header { background: var(--rs-bg); padding: 64px 40px; text-align: center; }
.rs-cms-page-header__title {
  font-family: var(--rs-serif); font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 300; color: #fff; letter-spacing: 0.04em; margin: 0;
}

/* ============================================================
   HEADER — Account link
   ============================================================ */
.rs-account-link { display: flex; align-items: center; gap: 6px; }
.rs-account-label {
  font-family: var(--rs-sans); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   WEDDINGS PAGE
   ============================================================ */
.rs-weddings-page { background: #fff; }
.rs-wp__hero {
  background: var(--rs-bg); color: #fff;
  min-height: 560px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 40px; position: relative;
}
.rs-wp__hero-inner { position: relative; z-index: 1; max-width: 640px; }
.rs-wp__eyebrow {
  font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 24px;
}
.rs-wp__hero-title {
  font-family: var(--rs-serif); font-size: clamp(3rem,7vw,6rem);
  font-weight: 300; line-height: 1.05; margin: 0 0 24px;
}
.rs-wp__hero-sub { font-family: var(--rs-serif); font-size: 1.2rem; font-style: italic; opacity: 0.85; margin-bottom: 40px; }
.rs-wp__hero-cta {
  display: inline-block; border: 1px solid rgba(255,255,255,0.6);
  color: #fff; padding: 14px 36px; font-family: var(--rs-sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.3s;
}
.rs-wp__hero-cta:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.rs-wp__intro { padding: 100px 40px; text-align: center; background: var(--rs-cream); }
.rs-wp__intro-inner { max-width: 680px; margin: 0 auto; }
.rs-wp__intro-label { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(26,45,39,0.55); margin-bottom: 20px; }
.rs-wp__intro-title { font-family: var(--rs-serif); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 300; line-height: 1.2; color: var(--rs-bg); margin: 0 0 28px; }
.rs-wp__intro-body { font-family: var(--rs-serif); font-size: 1.1rem; line-height: 1.8; color: rgba(26,45,39,0.8); margin-bottom: 1.2em; }
.rs-wp__services { padding: 100px 40px; background: #fff; }
.rs-wp__services-inner { max-width: 1200px; margin: 0 auto; }
.rs-wp__section-label { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(26,45,39,0.5); margin-bottom: 16px; }
.rs-wp__section-title { font-family: var(--rs-serif); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 300; color: var(--rs-bg); margin: 0 0 56px; }
.rs-wp__services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px 40px; }
.rs-wp__service { text-align: center; }
.rs-wp__service-icon {
  width: 80px; height: 80px; border-radius: 50%; background: var(--rs-cream);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--rs-bg);
}
.rs-wp__service h3 { font-family: var(--rs-serif); font-size: 1.2rem; font-weight: 600; color: var(--rs-bg); margin: 0 0 10px; }
.rs-wp__service p { font-family: var(--rs-serif); font-size: 0.95rem; line-height: 1.7; color: rgba(26,45,39,0.7); margin: 0; }
.rs-wp__process { padding: 100px 40px; background: var(--rs-bg); color: #fff; }
.rs-wp__process-inner { max-width: 1100px; margin: 0 auto; }
.rs-wp__process .rs-wp__section-label { color: rgba(255,255,255,0.5); }
.rs-wp__process .rs-wp__section-title { color: #fff; margin-bottom: 60px; }
.rs-wp__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.rs-wp__step { position: relative; padding-top: 24px; }
.rs-wp__step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.2); }
.rs-wp__step-num { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); display: block; margin-bottom: 16px; }
.rs-wp__step h3 { font-family: var(--rs-serif); font-size: 1.25rem; font-weight: 400; color: #fff; margin: 0 0 12px; }
.rs-wp__step p { font-family: var(--rs-serif); font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0; }
.rs-wp__cta-strip { padding: 100px 40px; background: var(--rs-cream); text-align: center; }
.rs-wp__cta-strip-inner { max-width: 600px; margin: 0 auto; }
.rs-wp__cta-strip h2 { font-family: var(--rs-serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300; color: var(--rs-bg); margin: 0 0 16px; }
.rs-wp__cta-strip p { font-family: var(--rs-serif); font-size: 1rem; color: rgba(26,45,39,0.7); margin-bottom: 36px; }
.rs-wp__cta-btn {
  display: inline-block; background: var(--rs-bg); color: #fff;
  padding: 16px 44px; font-family: var(--rs-sans); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; transition: background 0.3s;
}
.rs-wp__cta-btn:hover { background: #2a4a3e; color: #fff; text-decoration: none; }
@media (max-width: 960px) { .rs-wp__services-grid { grid-template-columns: repeat(2,1fr); } .rs-wp__steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .rs-wp__hero,.rs-wp__intro,.rs-wp__services,.rs-wp__process,.rs-wp__cta-strip { padding: 60px 24px; } .rs-wp__services-grid { grid-template-columns: 1fr; gap: 32px; } .rs-wp__steps { grid-template-columns: 1fr; } }

/* ============================================================
   FLOWER CHRONICLES PAGE
   ============================================================ */
.rs-chronicles-page { background: #fff; }
.rs-fc__hero { background: var(--rs-bg); min-height: 480px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 40px; }
.rs-fc__hero-inner { max-width: 680px; }
.rs-fc__eyebrow { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.rs-fc__hero-title { font-family: var(--rs-serif); font-size: clamp(2.8rem,6vw,5.5rem); font-weight: 300; color: #fff; margin: 0 0 20px; line-height: 1.05; }
.rs-fc__hero-sub { font-family: var(--rs-serif); font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,0.75); margin: 0; }
.rs-fc__intro { background: var(--rs-cream); padding: 64px 40px; text-align: center; }
.rs-fc__intro-inner { max-width: 700px; margin: 0 auto; }
.rs-fc__intro-text { font-family: var(--rs-serif); font-size: 1.15rem; line-height: 1.9; color: rgba(26,45,39,0.8); margin: 0; }
.rs-fc__featured { padding: 100px 40px; }
.rs-fc__featured-inner { max-width: 1200px; margin: 0 auto; }
.rs-fc__section-label { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(26,45,39,0.5); margin-bottom: 16px; }
.rs-fc__section-title { font-family: var(--rs-serif); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 300; color: var(--rs-bg); margin: 0 0 56px; }
.rs-fc__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px 32px; }
.rs-fc__card { border: 1px solid rgba(26,45,39,0.1); overflow: hidden; background: #fff; transition: box-shadow 0.3s; }
.rs-fc__card:hover { box-shadow: 0 8px 32px rgba(26,45,39,0.1); }
.rs-fc__card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.rs-fc__card--featured .rs-fc__card-img { min-height: 300px; }
.rs-fc__card-img { height: 220px; position: relative; overflow: hidden; }
.rs-fc__card-img--1 { background: linear-gradient(135deg,#1a2d27 0%,#2a4a3e 100%); }
.rs-fc__card-img--2 { background: linear-gradient(135deg,#2a3a2f 0%,#3a5040 100%); }
.rs-fc__card-img--3 { background: linear-gradient(135deg,#1e3530 0%,#2d4a40 100%); }
.rs-fc__card-img--4 { background: linear-gradient(135deg,#263530 0%,#374a42 100%); }
.rs-fc__card-img--5 { background: linear-gradient(135deg,#1a2d27 0%,#2a4035 100%); }
.rs-fc__card-img--6 { background: linear-gradient(135deg,#223028 0%,#304438 100%); }
.rs-fc__tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-family: var(--rs-sans); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; }
.rs-fc__card-body { padding: 28px; }
.rs-fc__card-date { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,45,39,0.45); margin-bottom: 10px; }
.rs-fc__card-title { font-family: var(--rs-serif); font-size: 1.25rem; font-weight: 600; color: var(--rs-bg); line-height: 1.35; margin: 0 0 12px; }
.rs-fc__card--featured .rs-fc__card-title { font-size: 1.7rem; }
.rs-fc__card-excerpt { font-family: var(--rs-serif); font-size: 0.92rem; line-height: 1.75; color: rgba(26,45,39,0.7); margin-bottom: 20px; }
.rs-fc__card-link { font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rs-bg); border-bottom: 1px solid rgba(26,45,39,0.3); padding-bottom: 2px; }
.rs-fc__card-link:hover { text-decoration: none; border-bottom-color: var(--rs-bg); }
.rs-fc__newsletter { background: var(--rs-bg); padding: 100px 40px; text-align: center; }
.rs-fc__newsletter-inner { max-width: 560px; margin: 0 auto; }
.rs-fc__newsletter h2 { font-family: var(--rs-serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300; color: #fff; margin: 0 0 16px; }
.rs-fc__newsletter p { font-family: var(--rs-serif); font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.rs-fc__nl-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.rs-fc__nl-input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-right: none; color: #fff; padding: 14px 20px; font-family: var(--rs-serif); font-size: 1rem; outline: none; }
.rs-fc__nl-input::placeholder { color: rgba(255,255,255,0.45); }
.rs-fc__nl-btn { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 28px; font-family: var(--rs-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.rs-fc__nl-btn:hover { background: rgba(255,255,255,0.25); }
@media (max-width: 960px) { .rs-fc__grid { grid-template-columns: 1fr 1fr; } .rs-fc__card--featured { grid-column: 1/-1; grid-template-columns: 1fr; } }
@media (max-width: 640px) { .rs-fc__hero,.rs-fc__intro,.rs-fc__featured,.rs-fc__newsletter { padding: 60px 24px; } .rs-fc__grid { grid-template-columns: 1fr; } .rs-fc__nl-form { flex-direction: column; } .rs-fc__nl-input { border-right: 1px solid rgba(255,255,255,0.3); } }

/* ============================================================
   100VW BREAKOUT — Weddings & Chronicles heroes escape container
   ============================================================ */
.rs-wp__hero,
.rs-wp__process,
.rs-wp__cta-strip,
.rs-fc__hero,
.rs-fc__intro,
.rs-fc__newsletter {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Intro/services sections inside need their own inner containers */
.rs-wp__intro-inner,
.rs-wp__services-inner,
.rs-wp__process-inner,
.rs-wp__cta-strip-inner,
.rs-fc__intro-inner,
.rs-fc__newsletter-inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   LEGAL PAGE HERO — intro band for Delivery, Privacy, T&C, Payment
   ============================================================ */
.rs-legal-hero {
  background: var(--rs-bg);
  color: #fff;
  padding: 72px 0 64px;
  margin-bottom: 0;
  text-align: center;
}
.rs-legal-hero h1 {
  font-family: var(--rs-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
  color: #fff;
}
.rs-legal-hero p {
  font-family: var(--rs-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
