:root {
  --cream: #fff9fc;
  --paper: #fffefd;
  --ink: #241d28;
  --muted: #6c6072;
  --leaf: #758b35;
  --leaf-dark: #4f6d22;
  --moss: #dce8b8;
  --sun: #f5d963;
  --tulip: #a5168d;
  --rose: #f4d6df;
  --sky: #dbeef8;
  --lavender: #eee5f5;
  --violet: #39206d;
  --magenta: #c31d86;
  --line: rgba(57, 32, 109, 0.14);
  --shadow: 0 22px 60px rgba(57, 32, 109, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 254, 253, 0.88);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  z-index: 20;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 254, 253, 0.97);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(38, 50, 38, 0.08);
}

.brand {
  align-items: center;
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  min-width: 236px;
  text-decoration: none;
}

.brand-mark {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 54px;
  object-fit: contain;
  padding: 3px 6px;
  width: 220px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  justify-content: center;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--tulip);
}

.header-action {
  background: var(--violet);
  border-radius: 999px;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
}

.hero {
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 14%, rgba(219, 238, 248, 0.72), transparent 30%),
    radial-gradient(circle at 77% 22%, rgba(244, 214, 223, 0.72), transparent 32%),
    linear-gradient(135deg, var(--cream), #f8f0fb 48%, #edf8fb);
  display: grid;
  gap: clamp(30px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 78px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 74px);
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.hero-logo {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(57, 32, 109, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(57, 32, 109, 0.16);
  display: block;
  margin: 0 0 clamp(24px, 4vw, 42px);
  max-height: min(45vh, 430px);
  object-fit: contain;
  padding: clamp(6px, 1vw, 10px);
  width: min(100%, 720px);
}

.eyebrow {
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.9rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lede {
  color: #62536a;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 640px;
}

.hero-actions,
.contact-section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  color: white;
  box-shadow: 0 14px 32px rgba(165, 22, 141, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--violet);
}

.hero-visual {
  align-self: stretch;
  background: white;
  border: 1px solid rgba(65, 109, 67, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.hero-main-photo {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-visual::after {
  background: linear-gradient(180deg, transparent 52%, rgba(20, 35, 22, 0.55));
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-photo-stack {
  bottom: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  left: 20px;
  position: absolute;
  right: 20px;
  z-index: 2;
}

.hero-photo-stack img {
  aspect-ratio: 1.38;
  border: 3px solid rgba(255, 253, 248, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 35, 22, 0.22);
  min-width: 0;
  object-fit: cover;
  width: 100%;
}

.notice-band {
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  color: white;
  padding: 18px clamp(20px, 5vw, 72px);
}

.notice-band p {
  font-weight: 700;
  margin: 0 auto;
  max-width: 1120px;
}

.photo-strip {
  background: var(--paper);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 8px;
}

.photo-strip img {
  aspect-ratio: 1.35;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tulip-feature {
  background:
    radial-gradient(circle at 8% 8%, rgba(219, 238, 248, 0.72), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(244, 214, 223, 0.74), transparent 30%),
    linear-gradient(135deg, #fffefd, #fff7fb 48%, #edf8fb);
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.tulip-copy {
  align-self: center;
  max-width: 600px;
}

.tulip-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.tulip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tulip-showcase {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.85fr);
}

.tulip-showcase figure,
.tulip-mosaic img {
  border: 1px solid rgba(57, 32, 109, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(57, 32, 109, 0.12);
  overflow: hidden;
}

.tulip-showcase figure {
  background: white;
  margin: 0;
}

.tulip-showcase img {
  display: block;
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.tulip-showcase figcaption {
  color: var(--violet);
  font-weight: 900;
  padding: 12px 14px 14px;
}

.tulip-hero-photo {
  grid-row: span 2;
}

.tulip-hero-photo img {
  height: 760px;
}

.tulip-mosaic {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.tulip-mosaic img {
  aspect-ratio: 0.82;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-carousel {
  align-self: center;
  min-width: 0;
  width: 100%;
}

.carousel-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.carousel-controls span {
  color: var(--violet);
  font-weight: 900;
}

.carousel-arrow,
.lightbox-button {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--violet);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.7rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  line-height: 1;
  width: 44px;
}

.carousel-arrow:hover,
.lightbox-button:hover {
  background: var(--lavender);
}

.carousel-track {
  display: grid;
  gap: 14px;
  grid-auto-columns: minmax(260px, 34%);
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(57, 32, 109, 0.35) transparent;
}

.carousel-card {
  background: white;
  border: 1px solid rgba(57, 32, 109, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(57, 32, 109, 0.12);
  cursor: zoom-in;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.carousel-card img {
  aspect-ratio: 0.82;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.carousel-card figcaption {
  color: var(--violet);
  font-weight: 900;
  padding: 12px 14px 14px;
}

.sunflower-carousel {
  margin: 0 auto;
  max-width: 1180px;
}

.sunflower-carousel .carousel-track {
  grid-auto-columns: minmax(250px, 26%);
}

.lightbox {
  align-items: center;
  background: rgba(20, 14, 27, 0.9);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 80;
}

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

.lightbox-content {
  align-items: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  max-height: 100%;
  max-width: min(1120px, 100%);
  position: relative;
}

.lightbox img {
  background: white;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  max-height: calc(100vh - 140px);
  max-width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  color: white;
  font-weight: 900;
  margin: 0;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  right: 18px;
  top: 18px;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.sunflower-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(245, 217, 99, 0.24), transparent 28%),
    linear-gradient(135deg, #fffaf0, #fffefd 46%, #edf8fb);
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.sunflower-intro {
  margin: 0 auto 34px;
  max-width: 780px;
  text-align: center;
}

.sunflower-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.sunflower-gallery {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.sunflower-gallery figure {
  background: white;
  border: 1px solid rgba(57, 32, 109, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(57, 32, 109, 0.1);
  margin: 0;
  overflow: hidden;
}

.sunflower-gallery img {
  aspect-ratio: 0.82;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sunflower-gallery figcaption {
  color: var(--violet);
  font-weight: 900;
  padding: 12px 14px 14px;
}

.sunflower-large {
  grid-column: span 2;
  grid-row: span 2;
}

.sunflower-large img {
  aspect-ratio: 1;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.two-column {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.two-column > div:first-child p:not(.eyebrow),
.section-heading p,
.contact-section p,
.subscription-panel p,
.feed-note p {
  color: var(--muted);
  font-size: 1.05rem;
}

.offering-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offering-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.offering-card::after {
  border-radius: 50%;
  content: "";
  height: 150px;
  opacity: 0.35;
  position: absolute;
  right: -42px;
  top: -48px;
  width: 150px;
}

.offering-card span {
  color: var(--leaf);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.offering-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.tulip {
  background: #fbedf5;
}

.tulip::after {
  background: var(--tulip);
}

.sunflower {
  background: #fff8da;
}

.sunflower::after {
  background: var(--sun);
}

.arrangement {
  background: #edf8fb;
}

.arrangement::after {
  background: var(--moss);
}

.seasonal {
  background: #f2ebf8;
}

.seasonal::after {
  background: var(--sky);
}

.split-band {
  background: linear-gradient(135deg, #fff7fb, #edf8fb);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.visit-panel,
.subscription-panel,
.feed-note {
  background: rgba(255, 254, 253, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.details-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.details-list li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding-top: 14px;
}

.details-list strong {
  color: var(--ink);
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.gallery-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(219, 238, 248, 0.24), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(244, 214, 223, 0.22), transparent 30%),
    linear-gradient(135deg, var(--violet), #641070 56%, #9f187e);
  color: white;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.gallery-section .eyebrow,
.gallery-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.flower-gallery {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.flower-gallery figure {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.flower-gallery img {
  aspect-ratio: 1.08;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.flower-gallery figcaption {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  padding: 12px 14px 14px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-large img {
  aspect-ratio: 1.25;
  height: calc(100% - 50px);
}

.feed-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin: 0 auto;
  max-width: 980px;
}

.facebook-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 680px;
  overflow: hidden;
  width: 100%;
}

.facebook-frame iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.feed-note {
  position: sticky;
  top: 94px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(57, 32, 109, 0.94), rgba(195, 29, 134, 0.86)),
    var(--violet);
  color: white;
  justify-content: space-between;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 5vw, 72px);
}

.contact-section div {
  max-width: 760px;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .button.primary {
  background: var(--sun);
  color: var(--violet);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
  }

  .nav {
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .header-action {
    position: absolute;
    right: 18px;
    top: 16px;
  }

  .hero,
  .two-column,
  .tulip-feature,
  .split-band,
  .feed-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 360px;
  }

  .photo-strip,
  .flower-gallery,
  .sunflower-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tulip-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .tulip-hero-photo {
    grid-column: span 2;
    grid-row: auto;
  }

  .tulip-hero-photo img {
    height: 560px;
  }

  .tulip-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .carousel-track,
  .sunflower-carousel .carousel-track {
    grid-auto-columns: minmax(250px, 48%);
  }

  .feed-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand {
    max-width: calc(100% - 120px);
    min-width: 0;
  }

  .brand-mark {
    height: 48px;
    width: 190px;
  }

  .offering-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-stack {
    grid-template-columns: 1fr;
  }

  .hero-photo-stack img:last-child {
    display: none;
  }

  .photo-strip,
  .flower-gallery,
  .sunflower-gallery,
  .tulip-showcase,
  .tulip-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .sunflower-large {
    grid-column: auto;
    grid-row: auto;
  }

  .tulip-hero-photo {
    grid-column: auto;
  }

  .tulip-hero-photo img,
  .tulip-showcase img {
    height: auto;
    aspect-ratio: 0.82;
  }

  .tulip-mosaic img {
    aspect-ratio: 1.08;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .carousel-track,
  .sunflower-carousel .carousel-track {
    grid-auto-columns: minmax(240px, 82%);
  }

  .lightbox {
    padding: 18px 12px;
  }

  .lightbox img {
    max-height: calc(100vh - 160px);
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: 22px;
    top: auto;
    transform: none;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .facebook-frame {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

/* ============ Visit panel additions ============ */

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-panel {
  background: rgba(255, 254, 253, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.map-panel iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 320px;
  width: 100%;
}

@media (max-width: 900px) {
  .map-panel {
    min-height: 280px;
  }
  .map-panel iframe {
    min-height: 280px;
  }
}

/* ============ Contact section overhaul ============ */

.contact-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(57, 32, 109, 0.94), rgba(195, 29, 134, 0.86)),
    var(--violet);
  color: white;
  display: grid;
  flex-wrap: initial;
  gap: clamp(34px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  justify-content: initial;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 5vw, 72px);
}

.contact-intro {
  max-width: 540px;
}

.contact-intro h2 {
  margin-bottom: 18px;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-direct {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.contact-direct li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  padding-top: 10px;
}

.contact-direct strong {
  color: white;
  display: inline-block;
  margin-right: 6px;
  min-width: 110px;
}

.contact-direct a {
  color: var(--sun);
  font-weight: 800;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(20, 14, 27, 0.24);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-form .field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  color: var(--violet);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form label .optional {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  width: 100%;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(195, 29, 134, 0.18);
  outline: none;
}

.contact-form .button.primary {
  background: linear-gradient(135deg, var(--magenta), var(--violet));
  color: white;
  justify-self: start;
  margin-top: 4px;
}

.contact-form .button.primary[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-status {
  font-weight: 700;
  margin: 0;
  min-height: 1.4em;
}

.form-status.is-success {
  color: var(--leaf-dark);
}

.form-status.is-error {
  color: #b81f4d;
}

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

/* ============ About Lisa section ============ */

.about-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 214, 223, 0.55), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(220, 232, 184, 0.45), transparent 30%),
    linear-gradient(135deg, #fffefd, #fff7fb 60%);
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.about-photos {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin: 0;
}

.about-photo-main,
.about-photo-accent {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(57, 32, 109, 0.16);
  margin: 0;
  overflow: hidden;
}

.about-photo-main img,
.about-photo-accent img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-photo-main img {
  aspect-ratio: 0.82;
}

.about-photo-accent {
  border: 4px solid rgba(255, 254, 253, 0.95);
  box-shadow: 0 18px 48px rgba(57, 32, 109, 0.22);
  margin: -90px 0 0 auto;
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.about-photo-accent img {
  aspect-ratio: 1;
}

.about-copy {
  align-self: center;
  max-width: 560px;
}

.about-copy h2 {
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-signature {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 22px !important;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-photo-accent {
    margin-top: -70px;
    max-width: 65%;
  }
}

@media (max-width: 640px) {
  .about-photo-accent {
    margin-top: -50px;
    max-width: 75%;
  }
}

/* ============ Instagram CTA card ============ */

.instagram-card {
  align-items: flex-start;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 215, 130, 0.45), transparent 36%),
    radial-gradient(circle at 8% 96%, rgba(86, 34, 217, 0.45), transparent 38%),
    linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(95, 21, 124, 0.32);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 320px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}

.instagram-card .ig-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.instagram-card .ig-handle {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0;
}

.instagram-card h3 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 6px 0 12px;
}

.instagram-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  margin: 0 0 22px;
  max-width: 36ch;
}

.instagram-button {
  background: white;
  color: #6228d7;
  font-weight: 900;
}

.instagram-button:hover {
  background: rgba(255, 255, 255, 0.92);
}
