@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1b1510;
  --ink-soft: #3b332c;
  --gold: #b79a62;
  --olive: #d9dcc9;
  --bone: #ffffff;
  --shadow: rgba(16, 12, 8, 0.1);
  --line: rgba(27, 21, 16, 0.15);
}

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

body {
  font-family: "Manrope", "Cormorant Garamond", serif;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
  padding-top: 0;
}

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

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 28px 56px;
  text-align: center;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  padding-bottom: 24px;
  margin-bottom: 72px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
}

.sticky-bar .logo img {
  margin-top: 10px;
  height: 60px;
  width: auto;
}

.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 50;
}

.sticky-bar.is-fixed {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  cursor: pointer;
}

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

.icon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 16, 11, 0.12);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: var(--ink);
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--ink);
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.menu-panel {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 60;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Slide modal sheet from bottom on open */
.menu-panel .menu-sheet {
  transform: translateY(100vh);
  transition: transform 0.3s ease;
}

.menu-panel.is-open .menu-sheet {
  transform: translateY(0);
}

.menu-sheet {
  width: min(1180px, 92vw);
  max-height: min(820px, 92vh);
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px 32px;
  display: grid;
  gap: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 14px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.05));
  z-index: 1;
}

.menu-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.menu-card .menu-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.menu-card .menu-price {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.menu-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}

.menu-card .menu-cta {
  margin-top: auto;
  justify-self: center;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  position: relative;
  z-index: 2;
}
 
.menu-card {
  text-align: center;
}

.menu-close {
  display: none; /* hidden: replaced by fixed close button on Black Privée modal */
  justify-self: end;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-close-fixed {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-panel {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
}

.modal-header-logo {
  text-align: center;
  margin-bottom: 6px;
}

.modal-header-logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.modal-header-logo {
  text-align: center;
  margin-bottom: 6px;
}
.modal-header-logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.contact-panel h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.contact-item:hover {
  opacity: 0.7;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--ink);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: 0.24em;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.03em;
}

.hero p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 2;
  max-width: 680px;
  margin: 0 auto;
}

.hero .callout {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.flower-icon-divider--home-top {
  margin: 0 0 18px;
}

.hero-features {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-feature {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  padding: 0;

  overflow: hidden;
  background-color: #f7f4ef;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  min-height: 700px;
  margin-bottom: 5em;
}

.hero-carousel {
  background-image: none;
}

.hero-carousel-track {
  position: absolute;
  inset: 0;
}

.hero-carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-carousel-image.is-active {
  opacity: 1;
}

.hero-carousel-next {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 15, 15, 0.56);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s ease;
}

.hero-carousel-next svg {
  width: 18px;
  height: 18px;
}

.hero-carousel-next:hover {
  background: rgba(15, 15, 15, 0.74);
}



.hero-visual .panel {
  position: absolute;
  inset: auto 10% 12%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  padding: 24px 28px;
  z-index: 4;
}

.hero-visual h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.hero-visual p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1em;
  margin-top: 0;
}

.memberships {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 92px;
  max-width: 900px;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  padding: 26px 26px 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(20, 16, 11, 0.12);
}

.card .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0.08em;
}

.card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.card .price {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card .deliveries {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.card .cta {
  margin-top: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fff;
  background: #0f0f0f;
  padding: 10px 18px;
  align-self: center;
  display: inline-flex;
  justify-content: center;
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 96px;
  max-width: 980px;
}

.experience .tile {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 170px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
}

.tile-icon svg {
  width: 22px;
  height: 22px;
}

.experience h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.experience p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.services-home {
  width: 100%;
  padding-top: 0;
  background: #0f0f0f;
}

.service-hero {
  position: relative;
  width: 100%;
  min-height: 78vh;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background-image: var(--service-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  transform: scale(1.02);
  transition: transform 0.8s ease;
  z-index: -2;
}

.service-hero:hover::before {
  transform: scale(1.07);
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.72) 100%);
  z-index: -1;
}

.service-hero__content {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(44px, 8vw, 84px);
}

.service-hero__content span,
.service-detail-hero__content span,
.service-proposal span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 11vw, 118px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.service-hero p {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.service-hero__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 12px 18px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.28);
}

.service-hero__cta svg {
  width: 18px;
  height: 18px;
}

.service-hero--boutiques {
  background-position: center 42%;
}

.service-hero--eventos {
  background-position: center 35%;
}

.service-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 56px;
  text-align: center;
}

.service-detail-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background-image: var(--service-image);
  background-size: cover;
  background-position: center;
  margin-bottom: 58px;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.service-detail-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding-bottom: clamp(42px, 8vw, 82px);
}

.service-detail-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.service-detail-hero p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

.service-intro {
  max-width: 860px;
  margin: 0 auto 64px;
}

.service-intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.service-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto 70px;
}

.service-block {
  border: 1px solid var(--line);
  background: #ffffff;
  min-height: 230px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.service-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.service-block p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.service-proposal {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  text-align: left;
  padding: 42px 0;
  margin: 0 auto 42px;
}

.service-proposal h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.service-proposal p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.service-proposal .proposal-circles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.service-proposal .proposal-circle {
  width: clamp(128px, 14vw, 150px);
  height: clamp(128px, 14vw, 150px);
  border-radius: 999px;
  background: #b5b79b;
  color: #ffffff;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 12px;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.service-proposal .proposal-circle svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}

.service-proposal .proposal-circle span {
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.service-whatsapp {
  margin-top: 4px;
}

.footer {
  background: #000000;
  width: 100%;
  margin-top: 28px;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.services-home + .footer {
  margin-top: 0;
}

.footer-inner {
  width: min(1100px, 100%);
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  font-size: 15px;
  line-height: 1.6;
  color: #d7d2c6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  align-items: center;
  justify-items: center;
}

.footer-inner h5 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
  font-size: 19px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-inner .brandline {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.footer-logo {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.footer-inner .socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-inner .socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.footer-inner .socials svg {
  width: 18px;
  height: 18px;
}

.floating-whatsapp {
  border: 1px solid white;
  position: fixed;
  right: 2em;
  bottom: 2em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px 999px 0;
  background: #0f0f0f;
  color: #fff;
  font-size: 1em;
  letter-spacing: 0.08em;
  z-index: 70;
  box-shadow: 0 18px 40px rgba(16, 12, 8, 0.2);
}

.floating-whatsapp img {
  width: 18px;
  height: 18px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f0f0f;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #0f0f0f;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 1;
}

.cookie-actions button.secondary {
  background: #0f0f0f;
  color: #ffffff;
}

.membership-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 56px;
  text-align: center;
}

.membership-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 2em;
}

.membership-page .hero-visual {
  margin-bottom: 60px;
}

.includes-hero {
  border-top: none;
  border-bottom: none;
  padding: 36px 20px 44px;
  margin: 0 auto 70px;
  max-width: 980px;
}

.includes-hero h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2em;
}

.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1em;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin: 0 auto;
}

.includes-list--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.includes-list--eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.includes-item {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: #b5b79b;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px;
  gap: 12px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.04em;
  align-content: center;
}

.includes-item svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.includes-text {
  font-size: 11px;
  line-height: 1.4;
  color: #ffffff;
}

.membership-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 6vw, 52px);
  letter-spacing: 0.08em;
}

.membership-header .kicker {
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--ink-soft);
}

.membership-header .price {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

.membership-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 auto 64px;
  max-width: 1100px;
}

.membership-content p {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 2.4;
  color: var(--ink-soft);
  margin: 6px auto;
  text-align: center;
}

.list {
  border: 1px solid var(--line);
  padding: 24px;
  background: #fff;
}

.list h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.list ul {
  list-style: none;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.list li {
  font-size: 13px;
  color: var(--ink-soft);
  position: relative;
}

.vase-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  border-bottom: none;
  padding: 36px 24px;
  margin: 0 auto 64px;
  max-width: 900px;
}

.vase-visual {
  display: grid;
  place-items: center;
  min-height: 240px;
}

.vase-visual svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.flower-icon-divider {
  display: grid;
  place-items: center;
}

.flower-icon-divider img {
  width: 100px;
  max-width: 100px;
  height: auto;
}

.flower-icon-divider--between {
  margin: -12px 0 10px;
}

.flower-icon-divider--faq {
  margin: 0 0 26px;
}

.flower-icon-divider--home {
  margin: 0 0 6px;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border: none;
  border-radius: 999px;
  background: #0f0f0f;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp img, .floating-whatsapp img {
  width: 16px;
  height: 16px;
}

.membership-cta {
  margin: 0;
}

.membership-cta--between {
  margin: 0 0 56px;
}

.membership-cta--end {
  margin: 44px 0 0;
}

.faq-section {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.faq-shell {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
  padding: 42px clamp(18px, 4vw, 42px);
  box-shadow: 0 20px 44px rgba(16, 12, 8, 0.08);
  overflow: hidden;
}

.faq-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d8c59a 0%, #b79a62 42%, rgba(183, 154, 98, 0.16) 100%);
}

.faq-intro {
  text-align: center;
  margin-bottom: 30px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.faq-group + .faq-group {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.faq-group h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.faq-items {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding: 16px 56px 16px 18px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 16, 11, 0.12);
}

.fade-in {
  animation: fade-in 1s ease both;
}

.stagger {
  animation: rise-in 1s ease both;
}

.stagger:nth-child(2) {
  animation-delay: 0.1s;
}

.stagger:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 900px) {
  .hero,
  .memberships,
  .experience,
  .footer-inner,
  .membership-content,
  .vase-section,
  .service-blocks,
  .service-proposal {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
  }

  .hero-visual {

  }

  .hero-visual .panel {
    inset: auto 6% 10%;
  }

  .hero-carousel-next {
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-card {
    min-height: 150px;
  }

  .menu-sheet {
    padding: 28px 20px;
  }

  .services-home {
    padding-top: 0;
  }

  .service-hero {
    min-height: 68vh;
    min-height: 68svh;
  }

  .service-hero__content {
    width: min(100% - 36px, 720px);
  }

  .service-page {
    padding: 104px 18px 44px;
  }

  .service-detail-hero {
    min-height: 560px;
  }

  .service-proposal {
    text-align: center;
  }

  .service-proposal .proposal-circles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .includes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .includes-list--six,
  .includes-list--eight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-shell {
    padding: 34px 18px;
  }

  .faq-item summary {
    font-size: 22px;
  }

  .footer {
    margin-top: 22px;
    padding: 24px 16px;
  }

  .footer-inner {
    font-size: 14px;
    gap: 20px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .page,
  .membership-page {
    padding: 96px 18px 40px;
  }

  .topbar {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

  .hero-feature {
    width: min(100%, 320px);
  }

  .sticky-bar {
    padding: 12px 18px;
  }

  .sticky-actions {
    gap: 10px;
  }

  .services-home {
    padding-top: 0;
  }

  .service-hero {
    min-height: 70vh;
    min-height: 70svh;
  }

  .service-hero__content {
    width: calc(100% - 32px);
    padding-bottom: 38px;
  }

  .service-hero h1 {
    font-size: 48px;
  }

  .service-hero p,
  .service-detail-hero p {
    font-size: 14px;
  }

  .service-hero__cta {
    width: 100%;
    justify-content: center;
    letter-spacing: 0.16em;
  }

  .service-detail-hero {
    min-height: 500px;
    margin-bottom: 42px;
  }

  .service-block {
    min-height: 0;
    padding: 24px 18px;
  }

  .service-proposal {
    padding: 34px 0;
  }

  .service-proposal .proposal-circles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .faq-group h3 {
    font-size: 11px;
  }

  .faq-item summary {
    font-size: 20px;
    padding: 14px 46px 14px 14px;
  }

  .faq-item p {
    padding: 0 14px 14px;
    font-size: 13px;
  }
}
.wide-desc p {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.9;
  margin: 6px 0;
  text-align: center;
}
