:root {
  --ink: #193a35;
  --green: #0d6058;
  --green-dark: #063f3b;
  --cream: #fff8e9;
  --cream-2: #f7ecd4;
  --blush: #f4c2c4;
  --rose: #d27091;
  --gold: #e8c578;
  --white: #ffffff;
  --muted: rgba(25, 58, 53, 0.68);
  --line: rgba(25, 58, 53, 0.14);
  --shadow: 0 28px 80px rgba(25, 58, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  color: var(--green-dark);
  font-size: clamp(4.6rem, 10vw, 9.6rem);
  line-height: 0.88;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(2.6rem, 5.5vw, 6.7rem);
  line-height: 0.95;
}

h3 {
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 90px;
  padding: 16px clamp(20px, 4.6vw, 72px);
  background: rgba(255, 248, 233, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  width: 150px;
  height: 56px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(25, 58, 53, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a,
.button,
.header-cta {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--rose);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.header-cta,
.button-dark {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.button-light {
  color: var(--green-dark);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 5.5vw, 76px);
  align-items: start;
  min-height: min(840px, calc(100vh - 90px));
  padding: clamp(34px, 5vw, 64px) clamp(20px, 5vw, 76px) clamp(52px, 6vw, 86px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: rgba(247, 236, 212, 0.64);
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.7;
}

.hero-stage {
  min-height: min(650px, 70vh);
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 9% 0 12%;
  border-radius: 220px 220px 18px 18px;
}

.hero-card-small {
  right: 0;
  bottom: 7%;
  width: 36%;
  aspect-ratio: 0.82;
  border: 10px solid var(--cream);
  border-radius: 16px 16px 110px 110px;
  background: var(--white);
}

.hero-card-small img {
  object-fit: contain;
  padding: 8%;
}

.hero-testimonial {
  position: absolute;
  left: 0;
  bottom: 5%;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  width: min(360px, 68%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(25, 58, 53, 0.14);
}

.hero-testimonial img {
  width: 86px;
  height: 104px;
  object-fit: cover;
  border-radius: 50px 50px 8px 8px;
}

.hero-testimonial span,
.hero-testimonial a {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-testimonial p {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.32;
}

.founder,
.features,
.story-band,
.shop-section,
.custom-design,
.services,
.garden-band,
.process,
.testimonials,
.footer {
  padding: clamp(62px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.founder {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  background: var(--white);
}

.founder-media {
  position: relative;
  min-height: 560px;
}

.founder-large,
.founder-small {
  position: absolute;
  width: 68%;
  height: 78%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.founder-large {
  left: 0;
  top: 0;
  border-radius: 170px 170px 18px 18px;
}

.founder-small {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 54%;
  border: 12px solid var(--white);
  border-radius: 16px 16px 130px 130px;
}

.person-name {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.person-role {
  margin: 0 0 36px;
  color: var(--rose);
  font-weight: 800;
}

.founder-copy > p:last-of-type,
.story-band p,
.custom-copy p,
.services-copy p,
.garden-band p,
.process-head p,
.section-title p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.founder-copy > p:last-of-type {
  max-width: 620px;
  margin: 28px 0 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 520px;
  margin-top: 46px;
}

.stat-row strong {
  display: block;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
}

.stat-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 76px);
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-strip img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 24px;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  background: var(--cream);
}

.features article {
  padding: 32px 30px 36px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 130px 130px;
}

.features img {
  width: 134px;
  height: 134px;
  margin: 0 auto 24px;
  object-fit: cover;
  border-radius: 80px 80px 12px 12px;
}

.features p {
  max-width: 310px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: end;
  background: var(--white);
}

.story-band h2 {
  max-width: 920px;
}

.story-band p {
  margin: 0;
}

.shop-section {
  background: var(--white);
  padding-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  min-width: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 170px 170px 18px 18px;
}

.product-card h3 {
  margin-top: 22px;
  text-align: center;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.product-card p {
  margin: 9px 0 0;
  color: var(--rose);
  text-align: center;
  font-weight: 900;
}

.custom-design {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
  color: var(--white);
  background: var(--green-dark);
}

.custom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.custom-copy h2,
.garden-band h2,
.footer h2,
.custom-copy p,
.garden-band p {
  color: var(--white);
}

.custom-copy p {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.76);
}

.custom-image {
  overflow: hidden;
  min-height: 520px;
  border-radius: 220px 220px 18px 18px;
}

.custom-image img,
.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  background: var(--white);
}

.services-image {
  overflow: hidden;
  min-height: 650px;
  border-radius: 18px 18px 220px 220px;
}

.services-copy p {
  max-width: 570px;
  margin: 24px 0 36px;
}

.services-copy ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-copy li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.services-copy li img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.services-copy li span {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.garden-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 233, 0.9), rgba(255, 248, 233, 0.55)),
    url("assets/purple-dahlias.jpg") center / cover;
}

.garden-band div {
  max-width: 930px;
}

.garden-band p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(25, 58, 53, 0.7);
}

.garden-band h2 {
  color: var(--green-dark);
}

.process {
  background: var(--cream-2);
}

.process-head,
.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.process-head p,
.section-title p {
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.process-grid > img,
.process-grid > article {
  min-height: 390px;
}

.process-grid > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 160px 160px 18px 18px;
}

.process-grid > img:nth-of-type(2) {
  border-radius: 18px 18px 160px 160px;
}

.process-grid > article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--rose);
  font-size: 1.1rem;
  font-weight: 900;
}

.process-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials {
  background: var(--white);
}

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

.testimonial-grid article {
  padding: clamp(28px, 4vw, 46px);
  background: var(--cream);
  border: 1px solid var(--line);
}

.stars {
  margin-bottom: 20px;
  color: var(--rose);
  font-weight: 900;
}

.testimonial-grid p {
  margin: 0 0 28px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  line-height: 1.2;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.testimonial-grid span {
  margin-top: 5px;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: var(--green-dark);
}

.gallery img {
  width: 100%;
  height: clamp(190px, 20vw, 330px);
  object-fit: cover;
}

.footer {
  color: var(--white);
  background: var(--green-dark);
  padding-bottom: 58px;
}

.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr) auto;
  gap: 30px;
  align-items: center;
  padding-bottom: clamp(44px, 7vw, 88px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-hero h2 {
  max-width: 780px;
}

.footer-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(170px, 0.72fr));
  gap: clamp(24px, 4vw, 54px);
  padding-top: clamp(34px, 5vw, 56px);
}

.footer-info img {
  width: 190px;
  padding: 10px;
  background: var(--cream);
}

.footer-info h3 {
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.footer-info p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .hero,
  .founder,
  .custom-design,
  .services {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 680px;
  }

  .founder-media,
  .services-image,
  .custom-image {
    min-height: 520px;
  }

  .footer-hero,
  .footer-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 78px;
    padding: 12px 18px;
  }

  .brand {
    width: 126px;
    height: 48px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 18px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11vw, 4.2rem);
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-card-main {
    inset: 0 0 8% 0;
  }

  .hero-card-small {
    display: none;
  }

  .hero-testimonial {
    width: min(390px, 92%);
  }

  .features,
  .story-band,
  .product-grid,
  .garden-band,
  .process-head,
  .process-grid,
  .section-title,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-strip img:nth-child(n + 5) {
    display: none;
  }

  .founder-media {
    min-height: 460px;
  }

  .founder-large {
    width: 78%;
  }

  .founder-small {
    width: 56%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .button,
  .header-cta {
    min-height: 44px;
    padding: 0 18px;
  }

  .hero,
  .founder,
  .features,
  .story-band,
  .shop-section,
  .custom-design,
  .services,
  .garden-band,
  .process,
  .testimonials,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-stage {
    min-height: 480px;
  }

  .hero-testimonial {
    grid-template-columns: 68px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .hero-testimonial img {
    width: 68px;
    height: 86px;
  }

  .founder-media,
  .services-image,
  .custom-image {
    min-height: 390px;
  }

  .features article {
    border-radius: 0 0 90px 90px;
  }

  .product-card img,
  .process-grid > img {
    border-radius: 110px 110px 16px 16px;
  }

  .services-copy li {
    grid-template-columns: 58px 1fr;
  }

  .services-copy li img {
    width: 58px;
    height: 58px;
  }
}
