:root {
  --cream: #f8f3ec;
  --paper: #fffaf4;
  --sage: #aebf82;
  --sage-dark: #5f684f;
  --rose: #d99a9f;
  --blush: #f4c6c9;
  --coral: #ef8f7d;
  --ink: #3f4537;
  --muted: #746f66;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(63, 69, 55, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 198, 201, 0.45), transparent 32rem),
    linear-gradient(180deg, var(--cream), var(--paper));
}

img {
  width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(248, 243, 236, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(95, 104, 79, 0.12);
}

.logo {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.site-nav {
  display: flex;
  gap: 26px;
  font-family: Arial, sans-serif;
  font-size: 1.0rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(95, 104, 79, 0.2);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--sage-dark);
}

.section {
  padding: clamp(24px, 0vw, 120px) clamp(20px, 5vw, 70px);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-text,
.section-heading p,
.intro p,
.contact-section p {
  max-width: 650px;
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.7;
  
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(95, 104, 79, 0.18);
  width: 100%;
  justify-content: center;
}

.btn-secondary {
  background: var(--white);
  color: var(--sage-dark);
  border: 1px solid rgba(95, 104, 79, 0.16);
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  padding: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  background: var(--blush);
}

.hero-note {
  position: absolute;
  left: -18px;
  bottom: 42px;
  width: 150px;
  height: 150px;
  padding: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(95, 104, 79, 0.18);
  transform: translateY(6px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.hero-note span {
  font-size: auto;
  line-height: 0.9;
  text-transform: uppercase;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-bottom: 4px;
  font-weight: bold;
}

.hero-note small {
  max-width: 95px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.25;
}

.intro {
    padding: 20px clamp(20px, 5vw, 70px);
  text-align: center;
  position: relative;
}

.contact-section h2 {
  margin-bottom: 24px;
}

.intro p {
  max-width: 1100px;
  margin: 0 auto;

  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.6;

  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;

  position: relative;
}

.intro::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
    margin: 50px auto 16px;

  
  background: linear-gradient(
    to right,
    transparent,
    var(--rose),
    transparent
  );
}

.intro::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    var(--rose),
    transparent
  );
}



.section-heading {
  margin-bottom: 34px;
}

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

.gallery-item {
  padding: 16px 16px 14px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(63, 69, 55, 0.08);
}

.gallery-item:nth-child(1) {
  background: var(--rose);
}

.gallery-item:nth-child(2) {
  background: var(--sage);
}

.gallery-item:nth-child(3) {
  background: var(--coral);
}

.gallery-item:nth-child(4) {
  background: var(--blush);
}

.gallery-item img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: var(--paper);
}

.gallery-item img {
  padding: 6px;
  background: var(--paper);
}

.gallery-item p {
  margin: 14px 6px 6px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.soft-section {
  background: rgba(174, 191, 130, 0.16);
}

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

.steps article,
.request-form {
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 12px 34px rgba(63, 69, 55, 0.08);
}

.steps article {
  padding: 28px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.steps p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.request-section {
  max-width: 1200px;
  margin: 0 auto;
}

.request-form {
  padding: clamp(22px, 4vw, 42px);
}

.request-section h2 {
  text-align: center;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--sage-dark);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(95, 104, 79, 0.18);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: var(--paper);
}

.contact-section p {
  color: rgba(255, 250, 244, 0.72);
}

.instagram-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  min-height: 120px;
  padding: 22px 26px;

  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);

  font-family: Arial, sans-serif;
  font-weight: 700;
  text-align: center;

  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.instagram-icon {
width: 64px;
height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.event-request-form {
  width: 100%;
}

.event-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-column {
  display: grid;
  align-content: start;
}

.file-upload-box {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border: 2px dashed rgba(95, 104, 79, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  cursor: pointer;
}

.file-upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-box span {
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--sage-dark);
}

.file-upload-box small {
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.file-list {
  display: grid;
  gap: 8px;
  margin: -4px 0 18px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(174, 191, 130, 0.16);
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.file-item button {
  border: 0;
  background: transparent;
  color: var(--rose);
  font-weight: 700;
  cursor: pointer;
}

.full-submit-button {
  width: 100%;
  margin-top: 18px;
}

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



.file-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 14px;

  padding: 12px;
  border-radius: 18px;

  background: rgba(174, 191, 130, 0.14);
}

.file-preview {
  width: 72px;
  height: 72px;

  object-fit: cover;
  border-radius: 14px;

  transition: transform 0.25s ease;
  cursor: pointer;
}

.file-preview:hover {
  transform: scale(1.9);
  z-index: 5;
}

.site-footer {
  padding: 24px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: var(--muted);
  background: var(--paper);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.hero-slider img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  background: var(--blush);
  transition: opacity 250ms ease;
}

.hero-slider img.is-fading {
  opacity: 0;
}

.slider-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-zone-left {
  left: 0;
}

.slider-zone-right {
  right: 0;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 32px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  text-align: center;
}

.modal-content h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.modal-content p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .gallery-grid,
  .steps,
  .form-row,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .order-options {
  grid-template-columns: 1fr;
}

  .gallery-grid,
  .steps {
    display: grid;
  }

  .contact-section {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.5rem);
  }

  .hero-card {
    transform: none;
  }

.hero-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 20px 16px;
}

.hero-note span {
  max-width: 80px;
  font-size: 1.05rem;
}

.hero-note small {
  max-width: 80px;
  font-size: 0.65rem;
}
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  background: rgba(244, 198, 201, 0.18);
}

.about-image {
  padding: 16px;
  border-radius: 32px;
  background: var(--blush);
  box-shadow: var(--shadow);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.about-content {
  max-width: 650px;
}

.about-content p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.7;
}

.about-content h2 {
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
  }
}

.about-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.order-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 12px 34px rgba(63, 69, 55, 0.08);
}

.order-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.order-card h3 {
  margin-bottom: 14px;
}

.order-card p {
  flex: 1;
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.order-card .btn {
  margin-top: 20px;
}

.subscription-hero {
  min-height: auto;
  display: flex;
  align-items: center;
    padding-top: 40px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 201, 0.45), transparent 28rem),
    rgba(174, 191, 130, 0.12);
}

.subscription-hero .btn {
  margin-top: 28px;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.subscription-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.88);
  box-shadow: 0 12px 34px rgba(63, 69, 55, 0.08);
}

.subscription-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.subscription-card p,
.subscription-card li {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.subscription-card ul {
  padding-left: 20px;
  margin: 24px 0;
}

.plan-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--ink);
  font-weight: 700;
}

.featured-plan {
  background: var(--sage);
}

.featured-plan p,
.featured-plan li,
.featured-plan h3 {
  color: var(--white);
}

.featured-plan .plan-label {
  background: var(--paper);
  color: var(--sage-dark);
}

@media (max-width: 900px) {
  .subscription-plans {
    grid-template-columns: 1fr;
  }
}

.subscription-hero > div {
  max-width: 1000px;
}

.subscription-hero > div {
  width: 100%;
  max-width: 1200px;
}
/* =========================
   Clean overrides added for subscription page
   These keep the original design, but make the subscription hero text use the full row.
========================= */

.subscription-hero {
  justify-content: flex-start;
}

.subscription-hero > div {
  width: 100%;
  max-width: none;
}

.subscription-hero h1 {
  max-width: 1200px;
}

.subscription-hero .hero-text {
  max-width: 900px;
}

@media (max-width: 900px) {
  .subscription-hero {
    min-height: auto;
  }
}

.shop-hero {
  min-height: auto;
  padding: 40px clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at top right, rgba(244, 198, 201, 0.45), transparent 28rem),
    rgba(174, 191, 130, 0.12);
}

.shop-hero h1 {
  max-width: 1200px;
}

.shop-hero .hero-text {
  max-width: 900px;
}

.shop-list {
  display: grid;
  gap: 18px;
}

.shop-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.88);
  box-shadow: 0 12px 34px rgba(63, 69, 55, 0.08);
}

.shop-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  padding: 6px;
  background: var(--blush);
}

.shop-card-content p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.shop-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--ink);
  font-weight: 700;
}

.shop-price {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--sage-dark) !important;
}

.shop-modal-content {
  max-width: 620px;
  text-align: left;
}

.selected-design-text {
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-card .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .order-options {
    grid-template-columns: 1fr;
  }

  .order-card {
    width: 100%;
  }
}

.custom-modal-content {
  max-width: 1050px;
  text-align: left;
}

.custom-modal-content h3 {
  text-align: center;
  margin-bottom: 28px;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.field-note {
  margin-top: -4px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

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

  .custom-modal-content {
    max-height: 88vh;
    overflow-y: auto;
  }
}

.hero-note {
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.hero-note:hover {
  transform: scale(1.04);
}

.cart-open-button {
  margin-top: 28px;
}

#cartCount {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--sage-dark);
  font-size: 0.85rem;
}

.cart-modal-content {
  max-width: 760px;
  text-align: left;
  max-height: 88vh;
  overflow-y: auto;
}

.cart-modal-content h3 {
  text-align: center;
  margin-bottom: 24px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(174, 191, 130, 0.14);
}

.cart-item h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.cart-item p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.cart-remove {
  width: auto !important;
  padding: 0 12px;
  border-radius: 999px !important;
  color: var(--rose) !important;
}

.empty-cart-message {
  padding: 20px;
  border-radius: 18px;
  background: rgba(244, 198, 201, 0.18);
  font-family: Arial, sans-serif;
  color: var(--muted);
  text-align: center;
}

.cart-note {
  margin: 8px 0 18px;
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-controls {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-image {
  width: 72px;
  height: 72px;

  object-fit: cover;

  border-radius: 16px;
  flex-shrink: 0;
}

.floating-cart-button {
  position: fixed;

  top: 35px;
  right: 24px;

  z-index: 999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;

  border: none;
  border-radius: 999px;

  background: var(--sage);
  color: var(--paper);

  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.floating-cart-button:hover {
  transform: translateY(-2px);
}

.floating-cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: rgba(255,255,255,0.18);

  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .floating-cart-button {
    top: auto;
    bottom: 20px;
    right: 20px;

    padding: 12px 18px;

    font-size: 0.9rem;
  }
}

.gallery-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  margin-top: 18px;
  padding: 18px;

  border-radius: 22px;

  background: rgba(255, 250, 244, 0.92);

  box-shadow: 0 8px 20px rgba(63, 69, 55, 0.06);
}

.gallery-item-text h4 {
  margin-bottom: 6px;

  font-size: 1.2em;
  line-height: 1.05;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  color: var(--ink);
}

.gallery-item-text p {
  margin: 0;

  font-family: Arial, sans-serif;
  font-weight: 700;

  color: var(--sage-dark);
}

.gallery-item-content .btn {
  flex-shrink: 0;

  min-height: 42px;
  padding: 0 16px;

  font-size: 0.9rem;
  font-weight: 700;

  background: var(--sage);
  color: var(--paper);

  border: none;

  box-shadow: 0 10px 24px rgba(95, 104, 79, 0.16);
}

.gallery-item-content .btn:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.plan-dropdown {
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(95, 104, 79, 0.18);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}


.gallery-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 14px;

  margin-top: 18px;
  padding: 18px;

  border-radius: 22px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 8px 20px rgba(63, 69, 55, 0.06);
}

.gallery-item-text h4 {
  margin-bottom: 6px;
  color: var(--ink);
}

.gallery-item-text p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--sage-dark);
}

.gallery-item-content .btn {
  width: 100%;
  max-width: 190px;

  padding: 12px 20px;

  background: var(--sage);
  color: var(--paper);

  border: none;
  box-shadow: 0 10px 24px rgba(95, 104, 79, 0.16);
}

.gallery-item-content .btn:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.gallery-item-content {
  gap: 10px;

  margin-top: 12px;
  padding: 16px 16px 14px;}

  .gallery-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 10px;

  margin-top: 10px;

  padding: 1px 10px 10px;

  border-radius: 22px;

  background: rgba(255, 250, 244, 0.92);

  box-shadow: 0 8px 20px rgba(63, 69, 55, 0.06);
}

.gallery-item-text h4 {
  margin-bottom: 2px;
  line-height: 1.05;
}

.gallery-item-text p {
  margin: 0;
  line-height: 2;
}

.gallery-item-content .btn {
  width: 100%;
  max-width: 190px;

  min-height: 46px;

  padding: 0 18px;

  background: var(--sage);
  color: var(--paper);

  border: none;

  box-shadow: 0 10px 24px rgba(95, 104, 79, 0.16);
}

.subscription-card {
  display: flex;
  flex-direction: column;
}

.subscription-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.subscription-card .plan-label {
  align-self: flex-start;
}

.hero-note {
  position: absolute;
  left: -18px;
  bottom: 42px;

  width: 200px;
  min-height: 140px;

  padding: 22px 20px;

  border-radius: 34px;

  background: var(--sage);
  color: var(--white);

  box-shadow: 0 16px 34px rgba(95, 104, 79, 0.18);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 10px;

  text-align: center;

  border: none;
  cursor: pointer;

  transition: transform 0.25s ease;
}

.hero-note:hover {
  transform: scale(1.04);
}

.hero-note span {
  max-width: 80px;

  font-size: 1.05rem;
  line-height: 1.02;

  font-weight: 700;
  text-transform: uppercase;

  margin: 0;
}

.hero-note small {
  max-width: 120px;

  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-note span {
  max-width: 170px;
  font-size: 1.45rem;
  line-height: 1.02;
  white-space: normal;
}

@media (max-width: 900px) {
  .hero-note span {
    max-width: 170px;
    font-size: 1.35rem;
  }
}

.order-card {
  display: flex;
  flex-direction: column;
}

.order-card .btn {
  margin-top: auto;
  align-self: center;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav {
  gap: clamp(14px, 2vw, 26px);
  font-size: clamp(0.85rem, 1vw, 1rem);
}

