:root {
  --blush: #e1ccbe;
  --blush-deep: #decdc0;
  --cream: #f4ebe3;
  --paper: #faf6f1;
  --mauve: #775c61;
  --plum: #5f4c50;
  --plum-deep: #4a3a3d;
  --sage: #6f7260;
  --gold: #edd7ad;
  --ink: #2c2424;
  --soft: #5c524e;
  --white: #fff;
  --serif: "Playfair Display", "Iowan Old Style", Palatino, Georgia, serif;
  --body: "Source Serif 4", "Iowan Old Style", Palatino, Georgia, serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

/* header: burger left, wordmark center, IG right. Matches live. */
.site-head {
  position: relative;
  z-index: 30;
  padding: 28px 36px 8px;
  background: transparent;
  color: #fff;
}
body.home-page { background: var(--blush); }
body.home-page .site-head { color: #fff; }
body.hero-page .site-head {
  position: absolute;
  left: 0; right: 0; top: 0;
  color: #fff;
}
.site-head.on-light { color: var(--ink); background: var(--paper); }
.head-in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  text-align: center;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .01em;
}
.head-right {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.burger {
  width: 26px;
  height: 18px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
}
.burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}
.ig {
  width: 22px;
  height: 22px;
  color: inherit;
}
.ig svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-panel {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 50;
  min-width: 240px;
  padding: 14px 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(44,36,36,.08);
  box-shadow: 0 16px 40px rgba(44,36,36,.14);
}
.nav-panel.open { display: block; }
.nav-panel nav {
  display: flex;
  flex-direction: column;
}
.nav-panel nav a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
  padding: 9px 16px;
}
.nav-panel nav a:hover,
.nav-panel nav a[aria-current="page"] {
  background: var(--cream);
}
.logo {
  display: block;
  width: 64px;
  height: 64px;
  justify-self: start;
}
.logo img { width: 100%; height: 100%; object-fit: contain; }
.logo .logo-on-light { display: none; }
.site-head.on-light .logo .logo-on-dark { display: none; }
.site-head.on-light .logo .logo-on-light { display: block; }

/* footer */
.site-foot {
  background: var(--blush);
  color: #fff;
  padding: 36px 28px;
}
.foot-in {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.foot-in a { text-decoration: none; }
.foot-in .ig { width: 18px; height: 18px; justify-self: center; }

/* layout bits */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.band { padding: 72px 0; }
.band.tight { padding: 48px 0; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.bg-blush { background: var(--blush); color: #fff; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-mauve { background: var(--mauve); color: #fff; }
.bg-plum { background: var(--plum); color: #fff; }
.bg-plum-deep { background: var(--plum-deep); color: #fff; }
.bg-sage { background: var(--sage); color: #fff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.photo-pair img { width: 100%; height: 420px; object-fit: cover; }
.lines {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: end;
  margin: 20px auto 36px;
  max-width: 980px;
}
.lines img { width: 88%; max-width: 260px; margin: 0 auto; background: transparent; }
.lines .line-center { width: 100%; max-width: 340px; }
.lines .line-side { animation: lineFade 1.6s ease both; }
.lines .line-side:first-child { animation-delay: .15s; }
.lines .line-side:last-child { animation-delay: .45s; }
@keyframes lineFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lines .line-side { animation: none; }
}
.hero-copy { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 36px); font-weight: 500; line-height: 1.3; text-align: center; max-width: 860px; margin: 0 auto 48px; }
.photos-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}
.photos-4 figure { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; }
.photos-4 img { width: 100%; height: 100%; object-fit: cover; }

/* photo hero pages */
.photo-hero {
  position: relative;
  min-height: 72vh;
  color: #fff;
  overflow: hidden;
}
.photo-hero .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.photo-hero .veil { position: absolute; inset: 0; background: rgba(40,30,28,.28); }
.photo-hero .inner { position: relative; z-index: 2; padding: 120px 28px 80px; max-width: 1280px; margin: 0 auto; }
.photo-hero h1 { font-size: clamp(56px, 8vw, 92px); font-weight: 500; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 62vh;
}
.pill-stack { display: grid; gap: 16px; justify-items: start; }

.pill {
  display: inline-block;
  background: var(--blush);
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 28px;
  min-width: 220px;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
}
.pill.dark { background: var(--ink); color: #fff; }
.pill.ghost { background: transparent; border: 1px solid currentColor; }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.about-grid img { width: 100%; object-fit: cover; }
.floral { width: min(280px, 70%); margin: 12px auto; }

.quote { font-family: var(--serif); font-style: italic; font-size: 22px; }
.price { font-family: var(--serif); font-size: 20px; }
.ul-plain { padding-left: 1.1em; }
.ul-plain li { margin: 0 0 .55em; }

.t-card { padding: 48px 0; }
.t-card .name { font-style: italic; margin-top: 12px; }
.t-card .lead { font-family: var(--serif); font-size: 22px; font-style: italic; }

.contact-welcome {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  align-items: start;
}
.welcome { text-align: center; padding-top: 8px; }
.welcome img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 10px 28px rgba(44,36,36,.16);
}
.welcome h2 { font-size: 34px; margin-bottom: .3em; }
.welcome p { color: var(--soft); font-size: 18px; }
.form-card {
  background: #fff;
  color: var(--ink);
  width: 100%;
  padding: 28px 28px 32px;
  border: 1px solid #eadfd4;
}
.form-card h2 { font-size: 28px; }
.form-card label { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 12px 0 6px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  border: 1px solid #d9cfc4;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}
.form-card input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  flex: none;
  accent-color: var(--plum);
}
.form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}
.checks legend {
  padding: 0;
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 0;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}
.form-card button[type=submit] {
  margin-top: 16px;
  width: 100%;
  border: 0;
  background: var(--plum);
  color: #fff;
  padding: 12px;
  font: inherit;
  cursor: pointer;
}
.form-msg { min-height: 1.2em; margin-top: 10px; font-size: 14px; }
.hours mark { background: transparent; color: inherit; font-style: italic; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 860px) {
  body { font-size: 16px; }
  .site-head { padding: 16px 18px 8px; }
  .head-in { grid-template-columns: auto 1fr auto; gap: 10px; }
  .logo { width: 52px; height: 52px; }
  .brand { text-align: center; font-size: 18px; }
  .head-right { gap: 14px; }
  .burger {
    width: 44px;
    height: 44px;
    padding: 14px 8px;
    box-sizing: border-box;
  }
  .ig { width: 44px; height: 44px; padding: 11px; box-sizing: border-box; }

  .wrap { padding: 0 20px; }
  .band { padding: 48px 0; }
  .grid-2, .grid-3, .about-grid, .form-card .row, .foot-in, .hero-split {
    grid-template-columns: 1fr;
  }

  .lines {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 220px;
    margin: 12px auto 28px;
    align-items: center;
  }
  .lines img,
  .lines .line-center { width: 100%; max-width: 200px; }

  .hero-copy { font-size: 26px; margin-bottom: 36px; padding: 0 8px; }

  .photos-4 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-grid img { max-width: 280px; margin: 8px auto 0; }

  .photo-hero { min-height: 70vh; }
  .photo-hero .inner { padding: 88px 20px 36px; }
  .photo-hero h1 { font-size: 42px; }
  .hero-split { min-height: 58vh; align-items: end; }
  .pill-stack { justify-items: stretch; width: 100%; }
  .pill { min-width: 0; width: 100%; padding: 14px 18px; }

  .quote { font-size: 19px; }
  .t-card { padding: 36px 0; }
  .t-card .lead { font-size: 20px; }

  .nav-panel {
    min-width: min(280px, calc(100vw - 36px));
    right: -8px;
  }
  .nav-panel nav a { padding: 12px 16px; }

  .foot-in {
    text-align: center;
    gap: 12px;
  }
  .foot-in .ig { justify-self: center; }

  .contact-welcome { grid-template-columns: 1fr; gap: 28px; }
  .welcome img { width: 168px; height: 168px; }
  .form-card { padding: 20px 16px 28px; }
  .form-card input,
  .form-card textarea,
  .form-card select { font-size: 16px; }

  .floral { width: min(240px, 80%); }
}

@media (max-width: 420px) {
  .brand { font-size: 18px; }
  .hero-copy { font-size: 23px; }
  .photo-hero h1 { font-size: 36px; }
}
