/* Rosette Parlor — sixth demo site (editorial dessert boutique) */
:root {
  --paper: #fdf9f7;
  --paper-2: #f7f0ec;
  --blush: #f4e8ec;
  --ink: #1f1418;
  --ink-soft: #4a3f44;
  --wine: #722f37;
  --wine-deep: #4e1f26;
  --gold: #9a7348;
  --line: rgba(31, 20, 24, 0.1);
  --shadow: 0 28px 70px rgba(31, 20, 24, 0.12);
  --font-display: "Cormorant Infant", Georgia, serif;
  --font-ui: "Jost", system-ui, sans-serif;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

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

a {
  color: var(--wine);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wrap {
  width: min(1080px, calc(100% - 24px));
  margin-inline: auto;
}

/* Masthead band */
.mast-band {
  background: linear-gradient(90deg, var(--wine-deep), var(--wine));
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 11px max(16px, env(safe-area-inset-left)) 11px max(16px, env(safe-area-inset-right));
  font-weight: 500;
}

header.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand-line {
  height: 2px;
  width: 48px;
  background: var(--gold);
  margin-top: 8px;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 999px;
}
.nav-links a:hover {
  background: var(--blush);
  color: var(--wine);
  text-decoration: none;
}
.nav-links a[aria-current="page"] {
  color: var(--wine);
  background: var(--blush);
}
.nav-links .nav-cta {
  background: var(--wine);
  color: #fff !important;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--wine-deep);
  color: #fff !important;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    right: 5vw;
    top: 100%;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    min-width: 200px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open {
    display: flex;
  }
}

/* Hero — editorial asymmetry */
.hero {
  padding: 56px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1.1rem;
  max-width: 34ch;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
}
.btn-fill {
  background: var(--wine);
  color: #fff;
}
.btn-fill:hover {
  background: var(--wine-deep);
}
.btn-line {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}
.btn-line:hover {
  background: var(--blush);
}

.hero-figure {
  margin: 0;
  border-radius: 0 80px 0 80px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}

/* Section scaffolding */
.section {
  padding: 72px 0;
}
.section--blush {
  background: linear-gradient(180deg, var(--blush) 0%, var(--paper-2) 100%);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin: 0 0 14px;
}
.section-head p {
  margin: 0;
  font-size: 1.05rem;
}

/* Three picks */
.picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 768px) {
  .picks {
    grid-template-columns: 1fr;
  }
}

.pick {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(31, 20, 24, 0.06);
}
.pick img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.pick-body {
  padding: 22px 22px 26px;
}
.pick-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.pick-body p {
  margin: 0;
  font-size: 15px;
}

/* Wide dessert */
.wide-dessert {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.wide-dessert img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Split editorial */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split-figure {
  margin: 0;
  border-radius: 60% 20px 60% 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.split-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ink);
  margin: 0 0 16px;
}
.split-copy p {
  margin: 0 0 14px;
}

/* Savory pair — narrow strip, still elegant */
.savory-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .savory-pair {
    grid-template-columns: 1fr;
  }
}
.savory-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}
@media (max-width: 520px) {
  .savory-card {
    grid-template-columns: 1fr;
  }
}
.savory-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}
.savory-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}
.savory-card p {
  margin: 0;
  font-size: 14px;
}

/* Collections page */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin: 0 0 12px;
}
.page-hero p {
  margin: 0 auto;
  max-width: 52ch;
}

.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 48px 0 40px;
}
.collage figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(31, 20, 24, 0.06);
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}
.c-span-5 {
  grid-column: span 5;
}
.c-span-7 {
  grid-column: span 7;
}
.c-span-6 {
  grid-column: span 6;
}
.c-span-4 {
  grid-column: span 4;
}
@media (max-width: 768px) {
  .collage {
    grid-template-columns: 1fr;
  }
  .c-span-5,
  .c-span-7,
  .c-span-6,
  .c-span-4 {
    grid-column: span 1;
  }
}

/* Visit */
.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 0 32px;
}
@media (max-width: 768px) {
  .visit-cards {
    grid-template-columns: 1fr;
  }
}
.visit-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.visit-card p {
  margin: 0;
  font-size: 15px;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 52px;
  background: var(--paper-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
.foot-grid h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-grid li {
  margin-bottom: 8px;
  font-size: 15px;
}
.foot-note {
  margin-top: 32px;
  font-size: 13px;
  opacity: 0.75;
}

@media (max-width: 480px) {
  .wrap {
    width: min(1080px, calc(100% - 16px));
  }
  .brand-name {
    font-size: 1.45rem;
  }
  footer {
    padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
  }
}

/* —— Rosette extended sections (rp-*) —— */
.section--tone {
  background: linear-gradient(145deg, var(--wine-deep) 0%, #3a1418 42%, var(--wine) 100%);
  color: rgba(255, 255, 255, 0.9);
}
.section--tone a {
  color: #f2d4dc;
}
.section--tone a:hover {
  color: #fff;
}
.section--tone .section-label {
  color: rgba(232, 200, 168, 0.95);
}

.rp-tone {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .rp-tone {
    grid-template-columns: 1fr;
  }
}
.rp-quote {
  margin: 0;
  padding: 0;
  border-left: 3px solid rgba(232, 200, 168, 0.55);
  padding-left: 28px;
}
.rp-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 16px;
  color: #fff;
}
.rp-quote footer {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}
.rp-tone-lead {
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
}
.rp-tone-aside p:last-child {
  margin: 0;
  opacity: 0.85;
  font-size: 15px;
}

.rp-stat-strip {
  padding: 48px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.rp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) {
  .rp-stat-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.rp-stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.rp-stat--long .rp-stat-value {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
}
.rp-stat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 22ch;
  margin-inline: auto;
  line-height: 1.45;
}

.rp-pass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .rp-pass-grid {
    grid-template-columns: 1fr;
  }
}
.rp-pass-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: 0 10px 36px rgba(31, 20, 24, 0.05);
}
.rp-pass-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.rp-pass-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.rp-pass-card p {
  margin: 0;
  font-size: 15px;
}

.rp-send-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) {
  .rp-send-panel {
    grid-template-columns: 1fr;
  }
}
.rp-send-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.15;
}
.rp-send-copy > p {
  margin: 0 0 16px;
}
.rp-send-list {
  margin: 0 0 24px;
  padding-left: 1.15em;
  font-size: 15px;
}
.rp-send-list li {
  margin-bottom: 8px;
}
.rp-send-figure {
  margin: 0;
  border-radius: 0 72px 0 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.rp-send-figure img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}

.rp-build-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.rp-build-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
@media (max-width: 520px) {
  .rp-build-steps li {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .rp-build-num {
    margin-inline: auto;
  }
}
.rp-build-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.rp-build-steps h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.rp-build-steps p {
  margin: 0;
  font-size: 15px;
}

.rp-care-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .rp-care-split {
    grid-template-columns: 1fr;
  }
}
.rp-care-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--ink);
  margin: 0 0 12px;
}
.rp-care-list {
  margin: 16px 0 0;
  padding-left: 1.1em;
  font-size: 15px;
}
.rp-care-list li {
  margin-bottom: 10px;
}
.rp-dual-strip figure {
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(31, 20, 24, 0.07);
}
.rp-dual-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.rp-dual-caption {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
}

.rp-visit-split {
  display: grid;
  grid-template-columns: min(42%, 380px) 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .rp-visit-split {
    grid-template-columns: 1fr;
  }
}
.rp-visit-figure {
  margin: 0;
  border-radius: 0 64px 0 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.rp-visit-figure img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.rp-visit-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}
.rp-etiquette {
  margin: 18px 0 0;
  padding-left: 1.1em;
  font-size: 15px;
}
.rp-etiquette li {
  margin-bottom: 10px;
}

.rp-arrive {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 820px) {
  .rp-arrive {
    grid-template-columns: 1fr;
  }
}
.rp-arrive-block > p {
  margin: 0 0 14px;
}
.rp-arrive-dl {
  margin: 20px 0 0;
}
.rp-arrive-dl > div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.rp-arrive-dl > div:last-child {
  border-bottom: 1px solid var(--line);
}
.rp-arrive-dl dt {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.rp-arrive-dl dd {
  margin: 0;
  font-size: 15px;
}
.rp-arrive-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 12px 40px rgba(31, 20, 24, 0.06);
}
.rp-arrive-aside h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 14px;
  color: var(--ink);
}
.rp-arrive-aside p {
  margin: 0 0 10px;
  font-size: 15px;
}
.rp-arrive-note {
  margin-top: 16px !important;
  font-size: 14px !important;
  color: var(--ink-soft);
  font-style: italic;
}
