:root {
  --ink: #24201d;
  --moss: #315842;
  --fern: #7fa58a;
  --petal: #f5d7d4;
  --cream: #fff8ef;
  --porcelain: #f6f4ed;
  --claret: #7e2730;
  --marigold: #e59a44;
  --mist: rgba(255, 248, 239, 0.82);
  --wine: #3b0b12;
  --charcoal: #47433f;
  --line: rgba(36, 32, 29, 0.16);
  --shadow: 0 24px 80px rgba(36, 32, 29, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --wordmark: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

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

h1,
h2,
h3,
.brand-mark {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.2rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 5.6rem);
  max-width: 11ch;
}

h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
}

section {
  scroll-margin-top: 120px;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(71, 67, 63, 0.12);
  color: var(--charcoal);
  display: grid;
  gap: 20px;
  justify-items: center;
  min-height: 172px;
  padding: 24px clamp(18px, 4vw, 54px) 22px;
  position: relative;
  z-index: 20;
}

.brand {
  color: var(--charcoal);
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: min(640px, 88vw);
  text-align: center;
}

.brand-mark {
  color: var(--charcoal);
  display: block;
  font-family: var(--wordmark);
  font-size: clamp(4.15rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: none;
  white-space: nowrap;
}

.brand-subtitle,
.site-nav a,
.eyebrow,
.button,
.quiet-band p,
.site-footer p,
.inquiry-form button,
.process-list span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.site-nav {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  width: min(100%, 920px);
}

.site-nav a {
  color: var(--charcoal);
  padding: 10px 0;
  position: relative;
}

.site-nav a::after {
  background: var(--charcoal);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  background: url("assets/floral/cascading-pastel-bouquet.jpg") center 42% / cover no-repeat;
  min-height: 560px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, var(--petal), var(--marigold), var(--claret), var(--moss));
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-copy {
  display: grid;
  justify-items: start;
  max-width: 920px;
}

.hero .eyebrow,
.hero .lede {
  color: #fffdf8;
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  color: var(--claret);
  margin-bottom: 18px;
}

.lede,
.intro-copy p,
.feature-copy p,
.gallery-note p,
.inquiry-copy p,
.process-list p {
  color: rgba(36, 32, 29, 0.78);
  font-size: 1rem;
  line-height: 1.82;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  margin-top: 24px;
  max-width: 43ch;
}

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

.button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px 13px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: #fffdf8;
  color: var(--ink);
}

.button.ghost {
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
}

.quiet-band {
  background: var(--moss);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quiet-band p {
  align-items: center;
  border-right: 1px solid rgba(255, 248, 239, 0.24);
  display: flex;
  justify-content: center;
  min-height: 82px;
  padding: 18px;
  text-align: center;
}

.quiet-band p:last-child {
  border-right: 0;
}

.intro,
.feature,
.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.intro {
  background: var(--porcelain);
  min-height: 690px;
}

.intro-copy,
.feature-copy,
.inquiry-copy {
  align-self: center;
  padding: clamp(52px, 8vw, 96px) clamp(24px, 6vw, 76px);
}

.intro-copy p:last-child,
.feature-copy p:last-child,
.gallery-note p:last-child,
.inquiry-copy p:last-child {
  max-width: 45ch;
}

.intro-copy h2,
.feature-copy h2,
.gallery-note h2,
.inquiry-copy h2 {
  margin-bottom: 28px;
}

.intro-copy h2 {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.16;
  max-width: none;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.intro-copy .eyebrow {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.intro-photo,
.feature-photo,
.gallery-item {
  margin: 0;
  overflow: hidden;
}

.intro-photo img,
.feature-photo img {
  height: 100%;
  object-fit: cover;
}

.intro-photo img {
  object-position: center 48%;
}

.services,
.gallery,
.process {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 54px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr);
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 15ch;
}

.feature {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  min-height: 650px;
}

.feature-copy {
  justify-self: center;
  text-align: center;
}

.feature-copy .eyebrow,
.feature-copy h2 {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-weight: 400;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 16ch;
  width: 100%;
}

.feature-copy .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.feature-copy p:last-child {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
}

.feature-copy h2,
.feature-copy p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.feature-photo img {
  object-position: center 35%;
}

.gallery {
  background: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item.wide {
  grid-column: span 2;
  min-height: 420px;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 760px;
}

.gallery-note {
  align-self: stretch;
  background: #f7dfdc;
  border-top: 8px solid rgba(126, 39, 48, 0.34);
  color: var(--charcoal);
  display: grid;
  padding: clamp(28px, 4vw, 46px);
}

.gallery-note .eyebrow,
.gallery-note h2,
.gallery-note p {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-weight: 400;
}

.gallery-note .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.gallery-note h2 {
  align-self: start;
  font-size: clamp(2.325rem, 3.85vw, 4.175rem);
  letter-spacing: 0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.gallery-note p:last-child {
  align-self: end;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.process {
  background:
    linear-gradient(90deg, rgba(245, 215, 212, 0.52), rgba(127, 165, 138, 0.26)),
    var(--porcelain);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.process-copy h2 {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-size: clamp(2.25rem, 4.7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.16;
  max-width: none;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.inquiry-copy h2 {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-size: clamp(2.25rem, 4.7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.16;
  max-width: none;
  text-transform: uppercase;
  width: 100%;
}

.inquiry-copy .eyebrow {
  color: var(--charcoal);
  font-family: var(--wordmark);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.process-list span {
  color: var(--claret);
}

.inquiry {
  background:
    linear-gradient(90deg, var(--mist), rgba(255, 248, 239, 0.4)),
    url("assets/floral/soft-white-bouquet.jpeg") center / cover no-repeat;
  border-top: 1px solid var(--line);
  min-height: 680px;
}

.inquiry-form {
  align-self: center;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(36, 32, 29, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  margin: clamp(42px, 7vw, 82px) clamp(24px, 6vw, 76px) clamp(42px, 7vw, 82px) 0;
  padding: clamp(28px, 4vw, 40px);
}

.inquiry-form label {
  color: var(--moss);
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 8px;
}

.inquiry-form input,
.inquiry-form textarea {
  background: #fffdf8;
  border: 1px solid rgba(36, 32, 29, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--claret);
  box-shadow: 0 0 0 4px rgba(126, 39, 48, 0.12);
}

.inquiry-form button {
  background: var(--moss);
  border: 1px solid var(--moss);
  border-radius: 999px;
  color: #fffdf8;
  cursor: pointer;
  margin-top: 16px;
  min-height: 50px;
  padding: 14px 20px 13px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.inquiry-form button:hover {
  background: var(--claret);
  border-color: var(--claret);
  transform: translateY(-1px);
}

.form-message {
  color: rgba(36, 32, 29, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
  min-height: 24px;
}

.site-footer {
  align-items: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 54px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-item img,
  .reveal {
    transform: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .site-header {
    gap: 18px;
    padding-bottom: 22px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: clamp(540px, 62svh, 660px);
  }

  .intro,
  .feature,
  .inquiry,
  .process,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: 0;
  }

  .intro-photo {
    min-height: 520px;
    order: -1;
  }

  .feature-photo {
    min-height: 560px;
  }

  .inquiry-form {
    margin: 0 clamp(18px, 5vw, 42px) clamp(54px, 8vw, 80px);
  }

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

  .gallery-item.tall {
    grid-row: auto;
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  section {
    scroll-margin-top: 168px;
  }

  .site-nav {
    width: 100%;
  }

  .hero {
    min-height: clamp(560px, calc(100svh - 242px), 640px);
    padding: 34px 20px;
  }

  .hero-copy {
    padding-top: 90px;
  }

  .quiet-band,
  .gallery {
    grid-template-columns: 1fr;
  }

  .quiet-band p {
    border-bottom: 1px solid rgba(255, 248, 239, 0.24);
    border-right: 0;
    min-height: 64px;
  }

  .quiet-band p:last-child {
    border-bottom: 0;
  }

  .intro-photo,
  .feature-photo,
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item {
    min-height: 420px;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .brand-mark {
    font-size: clamp(2.55rem, 11vw, 3.15rem);
    letter-spacing: 0.02em;
  }

  .brand-subtitle,
  .site-nav a,
  .eyebrow,
  .button,
  .quiet-band p,
  .site-footer p,
  .inquiry-form button,
  .process-list span {
    font-size: 0.66rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
