:root {
  --bg: #f5eee8;
  --bg-soft: #efe3db;
  --surface: rgba(255, 250, 245, 0.84);
  --surface-strong: #fffaf6;
  --text: #1e1a17;
  --muted: #4c433e;
  --line: rgba(30, 26, 23, 0.12);
  --accent: #a55d63;
  --green: #546754;
  --shadow: 0 22px 60px rgba(45, 28, 22, 0.12);
  --max: 1240px;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.133rem;
  font-weight: 500;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(165, 93, 99, 0.05), transparent 28%),
    linear-gradient(180deg, #fbf6f2 0%, var(--bg) 100%);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  width: 100%;
}

.image-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}

p a,
.faq-layout a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 244, 240, 0.7);
  border-bottom: 1px solid rgba(30, 26, 23, 0.06);
}

.nav-wrap,
.section-inner,
.footer-inner,
.page-hero,
.faq-layout,
.contact-layout,
.about-layout,
.bouquet-grid {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-copy strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  padding: 2rem 0 4rem;
}

.hero-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  padding: 3rem 0;
  animation: rise 0.8s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  letter-spacing: -0.04em;
  max-width: 13ch;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.04;
}

p,
small {
  color: #3d3530;
  font-size: 1.133rem;
  font-weight: 500;
  line-height: 1.68;
}

.trust-note {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
}

.cta-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  font-size: 1.05rem;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--text);
  color: #fff7f2;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.44);
}

.hero-stats {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 2.25rem 0 0;
  list-style: none;
}

.hero-stats li {
  min-width: 140px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.25rem;
}

.hero-stats span,
.package-price {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-stats small {
  font-size: 1.05rem;
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
}


.page-hero-visual,
.about-visual,
.contact-panel,
.bouquet-image img,
.product-card img,
.catalog-card img,
.package-item img,
.hero-photo {
  box-shadow: var(--shadow);
}

.process-grid,
.package-grid,
 .contact-grid,
 .addon-grid {
  display: grid;
  gap: 1rem;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.process-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.process-step {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.compact-heading {
  max-width: 42rem;
  margin-bottom: 0;
}

.path-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.path-card {
  display: grid;
  gap: 0.5rem;
  min-height: 160px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease;
}

.path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 93, 99, 0.45);
}

.path-card strong {
  font-size: 1.08rem;
  font-weight: 700;
}

.path-card span {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-visual-stack {
  height: 480px;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero,
.faq-layout,
.contact-layout,
.about-layout {
  padding: 3rem 0 2rem;
}

.page-hero,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: end;
}

.page-hero-single {
  grid-template-columns: 1fr;
  align-items: start;
}

.page-hero-copy-wide {
  max-width: 62rem;
}

.page-hero-copy-wide h1 {
  max-width: 16ch;
}

.page-hero-copy-wide p {
  max-width: 50rem;
}

.page-hero-visual {
  min-height: 520px;
  background: url("https://images.pexels.com/photos/5996678/pexels-photo-5996678.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover no-repeat;
}

.bouquet-hero-photo {
  background-image: url("assets/portfolio/hero-flower-image-live.jpg?v=1");
}

.wedding-hero-photo {
  background-image: url("assets/portfolio/weddings%20page%20hero.jpg?v=1");
}

.tag-list,
.tag-row,
.meta-list,
.voice-list,
.color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-row span,
.tag-list li,
.voice-list li,
.color-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
}

.bouquet-grid {
  width: min(calc(100% - 2rem), 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 5rem;
}

.product-card,
.catalog-card {
  display: grid;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  overflow: hidden;
  align-content: start;
}

.product-card img,
.catalog-card img {
  height: 210px;
  object-fit: cover;
  object-position: center 25%;
}

/* Per-product focal point overrides */
#orchid-plant img        { object-position: center 15%; }
#signature-bouquet img   { object-position: center 35%; }
#table-centerpiece img   { object-position: center 50%; }
#weekly-flowers img      { object-position: center 35%; }

.product-copy,
.catalog-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem;
}

.compact-copy {
  gap: 0.7rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.product-fit {
  margin: -0.3rem 0 0;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.5;
}

.product-card h3 {
  font-size: 1.9rem;
  line-height: 1.02;
}

.catalog-card h3 {
  font-size: 1.2rem;
  line-height: 1.12;
}

.product-card .btn {
  margin-top: 0.35rem;
}

.compact-meta {
  gap: 0.3rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.catalog-card .product-fit {
  font-size: 1.02rem;
  line-height: 1.45;
}

.compact-copy .btn {
  margin-top: 0.2rem;
  min-height: 44px;
}

.meta-list {
  display: grid;
  gap: 0.5rem;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.addon-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.72);
}

.addon-item strong,
.addon-item span {
  font-size: 1.08rem;
}

.addon-item span {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.package-item {
  display: grid;
  background: rgba(255, 250, 245, 0.8);
  border: 1px solid var(--line);
}

.package-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(18, 14, 12, 0.82);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  width: auto;
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.package-copy {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.about-visual {
  min-height: 620px;
  background: url("https://images.pexels.com/photos/2395244/pexels-photo-2395244.jpeg?auto=compress&cs=tinysrgb&w=1200") center / cover no-repeat;
}

.contact-panel {
  min-height: 620px;
  padding: 1.5rem;
  background: rgba(255, 250, 245, 0.74);
}

.faq-layout details {
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  transition: background 160ms ease;
}

.faq-layout details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-layout summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.16rem;
  font-weight: 700;
}

.faq-layout details p {
  margin: 0.8rem 0 0;
  max-width: 48rem;
}

.field label {
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-layout summary::-webkit-details-marker {
  display: none;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions,
.contact-meta,
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-actions {
  justify-content: space-between;
  align-items: center;
  margin-top: 1.4rem;
}

.contact-meta {
  display: grid;
  margin-top: 2rem;
}

.contact-meta div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-meta p,
.footer-inner p,
.footer-links a {
  font-size: 1.06rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.72);
}

.footer-inner {
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand-mark {
  width: 46px;
  height: 46px;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.footer-brand-copy strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .page-hero,
  .about-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 1rem 0 2rem;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-visual-stack {
    height: 360px;
  }

  .about-visual,
  .contact-panel,
  .page-hero-visual,
  .catalog-card img,
  .product-card img,
  .package-item img {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .page-hero,
  .faq-layout,
  .contact-layout,
  .about-layout,
  .bouquet-grid {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .nav-wrap {
    padding: 0.55rem 0;
    align-items: flex-start;
  }

  .brand-lockup {
    gap: 0.65rem;
    max-width: calc(100% - 4.5rem);
    align-items: flex-start;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
    line-height: 1.15;
  }

  .brand-copy span {
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 0.75rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.95rem;
    background: rgba(255, 250, 245, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 5.5rem);
    overflow: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: 1rem;
    width: 100%;
    padding: 0.25rem 0;
  }

  .hero,
  .section {
    padding: 1.9rem 0;
  }

  .hero-inner,
  .page-hero,
  .about-layout,
  .contact-layout,
  .process-grid,
  .package-grid,
  .contact-grid,
  .addon-grid,
  .bouquet-grid {
    grid-template-columns: 1fr;
  }

  .path-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    line-height: 1.08;
  }

  p,
  small {
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.1rem;
  }

  .hero-stats li {
    min-width: 0;
    padding: 0.75rem 0.7rem;
  }

  .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .footer-links,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy p,
  .page-hero-copy-wide p,
  .trust-note {
    max-width: none;
  }

  .hero-visual-stack {
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
  }

  .page-hero,
  .faq-layout,
  .contact-layout,
  .about-layout {
    padding: 1.6rem 0 1.2rem;
    gap: 1.25rem;
  }

  .page-hero-copy-wide {
    max-width: none;
  }

  .page-hero-copy-wide h1 {
    max-width: none;
  }

  .page-hero-visual,
  .about-visual,
  .contact-panel {
    min-height: 240px;
  }

  .section-heading,
  .compact-heading {
    max-width: none;
    margin-bottom: 1.15rem;
  }

  .path-grid,
  .bouquet-grid,
  .package-grid,
  .addon-grid,
  .process-grid {
    gap: 0.85rem;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .path-card,
  .product-card,
  .catalog-card,
  .package-item,
  .addon-item,
  .process-item {
    min-height: 0;
  }

  .product-card img,
  .catalog-card img,
  .package-item img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .product-card .btn {
    min-height: 42px;
    font-size: 0.98rem;
  }

  .catalog-card h3 {
    font-size: 1.24rem;
  }

  .product-meta,
  .compact-meta,
  .contact-meta p,
  .footer-inner p,
  .footer-links a,
  .field label {
    font-size: 0.98rem;
  }

  .product-fit {
    font-size: 1rem;
    line-height: 1.42;
  }

  .product-copy,
  .catalog-copy,
  .package-copy {
    padding: 1rem;
  }

  .product-copy,
  .compact-copy {
    gap: 0.65rem;
  }

  .compact-meta {
    gap: 0.22rem;
  }

  .meta-list {
    gap: 0.35rem;
  }

  .contact-panel {
    padding: 1.1rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 0.85rem 0.9rem;
    font-size: 16px;
  }

  .contact-meta {
    gap: 0.8rem;
    margin-top: 1.3rem;
  }

  .footer-inner {
    align-items: stretch;
    gap: 1.25rem;
  }

  .footer-brand-lockup {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .page-hero,
  .faq-layout,
  .contact-layout,
  .about-layout,
  .bouquet-grid {
    width: min(calc(100% - 1rem), var(--max));
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-visual-stack {
    height: 200px;
  }

  .site-header .brand-copy span {
    display: none;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .product-copy,
  .catalog-copy,
  .package-copy {
    padding: 1rem;
  }

  .hero-stats span,
  .package-price {
    font-size: 1rem;
  }

  .hero-stats small {
    font-size: 0.94rem;
  }

  .path-card span,
  .path-card strong {
    font-size: 1rem;
  }

  .addon-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    min-height: 38px;
    padding: 0 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy {
    animation: none;
  }

  .btn,
  .path-card {
    transition: none;
  }
}
