:root {
  --bg-dark: #46463b;
  --teal: #2A474D;
  --teal-hover: #35585f;
  --strip-dark: #2f2f27;
  --dropdown-dark: #2a2a23;
  --panel-dark: #3a3a30;
  --cream: #f2e8d5;
  --cream-soft: #cfc4ac;
  --ink: #26261f;
  --gold: #E8B84B;
  --open: #5fbf72;
  --closed: #d1584f;

  --font-head: "Arial Black", "Arial Bold", "Helvetica Neue", Arial, sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;

  --nav-h: 64px;
  --gut: 8vw;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

p { margin: 0; line-height: 1.65; }

a { color: inherit; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
  border-radius: 4px;
}

.label-caps {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--teal-hover); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
}
.btn-secondary:hover { background: rgba(242, 232, 213, 0.1); }

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--strip-dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--gut);
  box-shadow: 0 1px 0 rgba(242, 232, 213, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.18s ease;
}
.nav-logo:hover img { opacity: 0.78; }

@media (max-width: 700px) {
  .nav-logo img { height: 36px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

/* Links, status badge and Book Now sit together on the right. */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 18px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { font-weight: 700; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: #fff; }

.status-badge.nav-status {
  padding: 6px 12px 6px 10px;
  font-size: 11.5px;
  gap: 7px;
  background: rgba(242, 232, 213, 0.08);
}
.status-badge.nav-status .status-dot { width: 7px; height: 7px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
}
.nav-toggle svg { width: 24px; height: 24px; display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--strip-dark);
    padding: 0 var(--gut);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }
  .site-nav.open .nav-links { max-height: 320px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(242, 232, 213, 0.12);
  }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-right { order: 2; margin-left: auto; }
  .nav-toggle { order: 3; }
}

/* ---------- Section shells ---------- */

.section {
  padding: 80px var(--gut) 90px;
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 40px;
  text-align: center;
}

/* ---------- Shared form ---------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(242, 232, 213, 0.35);
  padding: 8px 2px 10px;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(207, 196, 172, 0.55); }
.field input:focus,
.field textarea:focus { border-bottom-color: var(--cream); }
.field textarea { resize: vertical; min-height: 90px; }

.submit-btn {
  align-self: flex-start;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.submit-btn:hover { background: var(--teal-hover); transform: translateY(-2px); }

.form-note {
  font-size: 12px;
  color: rgba(207, 196, 172, 0.7);
  margin-top: 4px;
}

@media (max-width: 760px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--strip-dark);
  padding: 64px var(--gut) 0;
  border-top: 1px solid rgba(242, 232, 213, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 52px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 18px;
}

.footer-col p,
.footer-col address {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-soft);
  margin: 0;
}

.footer-motto {
  max-width: 42ch;
  font-size: 15px;
}

.footer-contact {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
}
.footer-contact li { color: var(--cream-soft); }
.footer-contact a { color: var(--cream); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.hours-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 14px;
  color: var(--cream-soft);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 3px 0;
  max-width: 230px;
}
.hours-list .day { color: var(--cream); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge.is-open {
  color: var(--open);
  border-color: rgba(95, 191, 114, 0.4);
  background: rgba(95, 191, 114, 0.1);
}
.status-badge.is-open .status-dot {
  background: var(--open);
  animation: glowPulse 2s ease-in-out infinite;
  --glow: rgba(95, 191, 114, 0.75);
}
.status-badge.is-closed {
  color: var(--closed);
  border-color: rgba(209, 88, 79, 0.4);
  background: rgba(209, 88, 79, 0.1);
}
.status-badge.is-closed .status-dot {
  background: var(--closed);
  animation: glowPulse 2s ease-in-out infinite;
  --glow: rgba(209, 88, 79, 0.75);
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--glow); }
  50% { box-shadow: 0 0 9px 3px var(--glow); }
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-left: var(--arrow-offset);
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242, 232, 213, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.18s ease, transform 0.18s ease;
}
.social-link:hover { background: var(--teal); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
/* Width of the nudging arrow plus its gap, so everything in this column
   shares one left edge with the Call Me button. */
.footer-col { --arrow-offset: 42px; }
/* The nudging arrow pushes Call Me right, so the heading and the social
   icons take the same offset and the whole column shares one left edge. */
.find-us-col h3 { padding-left: var(--arrow-offset); }
.footer-actions .footer-btn.ghost { margin-left: var(--arrow-offset); }

.call-me-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.call-me-arrow {
  width: 34px;
  height: 26px;
  color: var(--cream-soft);
  flex-shrink: 0;
  animation: nudge 1.9s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.footer-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}
.footer-btn.solid { background: var(--teal); color: var(--cream); }
.footer-btn.solid:hover { background: var(--teal-hover); transform: translateY(-2px); }
.footer-btn.ghost { border: 1.5px solid var(--cream-soft); color: var(--cream); }
.footer-btn.ghost:hover { background: rgba(242, 232, 213, 0.1); transform: translateY(-2px); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(242, 232, 213, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--cream-soft);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); text-decoration: underline; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: flex-start; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Services marquee ---------- */

.marquee-section {
  padding: 74px 0 80px;
  overflow: hidden;
}

/* Driven from site.js, not by a keyframe animation, so a finger can drag it
   and it carries on from there. pan-y keeps vertical page scrolling native. */
.marquee-row {
  display: flex;
  width: max-content;
  gap: 14px;
  margin-bottom: 14px;
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.marquee-row:active { cursor: grabbing; }

.marquee-group {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  padding: 7px 20px 7px 7px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.svc-pill img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-row { transform: translateX(0); touch-action: auto; cursor: auto; }
  .marquee-section { overflow-x: auto; touch-action: pan-x pan-y; }
}

/* ---------- Reviews ---------- */

.reviews-section { padding: 80px var(--gut) 90px; }

.review-stage {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-soft);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: background 0.18s ease, transform 0.18s ease;
}
.review-arrow:hover { background: rgba(242, 232, 213, 0.1); transform: scale(1.06); }
.review-arrow svg { width: 18px; height: 18px; }

.review-card {
  flex: 1;
  min-width: 0;
  text-align: center;
  touch-action: pan-y;
}
.review-card.in .review-stars,
.review-card.in .review-name,
.review-card.in .review-text {
  animation: reviewIn 0.4s ease both;
}
.review-card.in .review-name { animation-delay: 0.06s; }
.review-card.in .review-text { animation-delay: 0.12s; }

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

.review-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 16px;
  color: var(--gold);
}
.review-stars svg { width: 21px; height: 21px; }

.review-name {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 23px;
  color: var(--cream);
  margin: 0 0 14px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-soft);
  max-width: 60ch;
  margin: 0 auto;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.review-dots { display: flex; gap: 9px; }
.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(242, 232, 213, 0.3);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.review-dot.active { background: var(--cream); transform: scale(1.3); }

.review-count {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(207, 196, 172, 0.75);
}

@media (max-width: 620px) {
  .review-stage { gap: 8px; }
  .review-arrow { width: 38px; height: 38px; }
  .review-name { font-size: 20px; }
  .review-text { font-size: 15px; }
}

/* ---------- Before / after compare ---------- */

/* Shaped to the before and after photos, which are 4:5. Capped so it does not
   tower over the text column sitting beside it. */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
  background: #000;
  border-radius: 14px;
  touch-action: pan-y;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare .after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.compare-tag {
  position: absolute;
  top: 16px;
  z-index: 3;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(38, 38, 31, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
}
.tag-before { left: 16px; }
.tag-after { right: 16px; }

.handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.handle-grip {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.handle-grip svg { width: 13px; height: 13px; }

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
}

/* Sits inside the box so it cannot add height and break the height match. */
.compare-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 26px 16px 12px;
  font-size: 12px;
  color: var(--cream);
  text-align: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(38, 38, 31, 0) 0%, rgba(38, 38, 31, 0.75) 60%);
}

/* ---------- Services page banners ---------- */

.banners {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner {
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel-dark);
  border: 1px solid rgba(242, 232, 213, 0.12);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.banner-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  color: var(--cream);
  font-family: var(--font-body);
}

.banner-head .name {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 19px;
  color: var(--cream);
  margin: 0;
}

.banner-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.banner.open .banner-chevron { transform: rotate(180deg); }

.banner-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--dropdown-dark);
}
.banner.open .banner-body { max-height: 4000px; }

.service-list {
  padding: 4px 26px 22px;
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(242, 232, 213, 0.08);
  flex-wrap: wrap;
}

.service-row .info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.service-row .sname { font-size: 14.5px; font-weight: 700; color: var(--cream); margin: 0; }
.service-row .sduration { font-size: 12px; color: var(--cream-soft); }

.service-row .price-book {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.service-row .sprice {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  flex-shrink: 0;
  min-width: 44px;
  text-align: right;
}

.book-now-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--cream);
  background: var(--teal);
  padding: 9px 17px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}
.book-now-btn:hover { background: var(--teal-hover); transform: translateY(-2px); }

@media (max-width: 600px) {
  .banner-head { padding: 18px; }
  .banner-head .name { font-size: 16px; }
  .service-list { padding: 4px 18px 18px; }
}

/* ---------- Scroll-drawn rose (right margin, decorative) ---------- */

.rose-rail {
  position: fixed;
  top: 0;
  right: 0;
  width: 150px;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.rose-rail svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.rose-stem {
  fill: none;
  stroke: var(--cream-soft);
  stroke-width: 2.4;
  stroke-linecap: round;
  opacity: 0.55;
}

.rose-leaf {
  fill: var(--cream-soft);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 0% 50%;
  transform: scale(0.2);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.rose-leaf.bloomed { opacity: 0.5; transform: scale(1); }

.rose-bloom {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scale(0.15) rotate(-40deg);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rose-bloom.bloomed { opacity: 1; transform: scale(1) rotate(0deg); }

.rose-bloom .petal { fill: var(--cream-soft); opacity: 0.78; }
.rose-bloom .petal-inner { fill: var(--cream); opacity: 0.8; }
.rose-bloom .bud-core { fill: var(--teal); }

@media (max-width: 1200px) {
  .rose-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rose-stem { stroke-dashoffset: 0 !important; }
  .rose-leaf, .rose-bloom { opacity: 0.42; transform: none; }
}
