:root {
  color-scheme: light;
  --paper: #FFFFFF;
  --ink: #353830;
  --muted: #65675e;
  --serif: "Baskerville", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 2rem; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
::selection { background: #e8e8e8; color: var(--ink); }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .35em; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; }
a:hover { color: var(--muted); }
p, h1, h2, figure { margin: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1.25; letter-spacing: -.035em; }
h2 { font-size: clamp(1.75rem, 2.5vw, 2.4rem); line-height: 1.2; letter-spacing: -.025em; }
.page-width { width: min(100% - 8rem, 1440px); margin-inline: auto; }
.skip-link { position: fixed; top: 1rem; left: 1rem; padding: .6rem 1rem; background: var(--paper); z-index: 10; transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 116px; }
.wordmark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -.045em; text-decoration: none; line-height: 1.25; }
nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.7vw, 2.7rem); }
nav a { position: relative; display: inline-flex; align-items: center; min-height: 44px; font-size: .875rem; text-decoration: none; }
nav a::after { content: ""; position: absolute; bottom: 7px; left: 0; right: 0; height: 1px; background: currentColor; opacity: 0; transition: opacity 180ms ease; }
nav a[aria-current]::after, nav a:hover::after { opacity: 1; }
.home { text-align: center; padding-block: clamp(5rem, 10vw, 10rem); }
/* Neutral placeholders reserve space until the photographs are supplied. */
.image-space { position: relative; width: 100%; overflow: hidden; background: #f4f4f4; }
.image-space img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.section-space { padding-top: clamp(5rem, 9vw, 9rem); }
.collection { padding-top: 0; }
.section-heading { margin-bottom: 2.5rem; }
.flowers-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5rem 8%; }
.flower-photo img { display: block; width: 100%; height: auto; }
.portrait { aspect-ratio: 4 / 5; }
.square { aspect-ratio: 1; }
.landscape { aspect-ratio: 16 / 9; }
.offset-figure { margin-top: 8rem; }
.closing-figure { grid-column: 1 / -1; width: 46%; margin-inline: auto; }
.wide-figure { grid-column: 1 / -1; width: 83%; margin-inline: auto; }
.studies-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5%; margin-top: clamp(3rem, 6vw, 6rem); }
.about-copy { max-width: 30rem; color: var(--muted); }
.contact { text-align: center; padding-block: clamp(6rem, 10vw, 10rem); }
.contact h2 { font-size: clamp(2.25rem, 3.4vw, 3.4rem); }
.contact-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 1rem; font-size: 1rem; }
.site-footer { padding-block: 1.5rem 2rem; font-size: .75rem; color: var(--muted); }

@media (max-width: 1050px) {
  .page-width { width: calc(100% - 5rem); }
  .site-header { min-height: 100px; }
  .studies-grid { gap: 1.5rem; }
}
@media (max-width: 700px) {
  html { scroll-padding-top: 1.5rem; }
  .page-width { width: calc(100% - 3rem); }
  .site-header { flex-direction: column; align-items: flex-start; gap: .6rem; padding-block: 1.5rem .5rem; }
  .wordmark { font-size: 1.6rem; }
  nav { justify-content: space-between; gap: .9rem; width: 100%; flex-wrap: wrap; }
  .home { padding-block: 4.5rem 5rem; }
  .home h1 { font-size: clamp(1.75rem, 8.2vw, 2rem); }
  .section-heading { margin-bottom: 1.75rem; }
  .flowers-grid { grid-template-columns: 1fr; gap: 3rem; }
  .offset-figure { margin-top: 0; width: 90%; justify-self: end; }
  .wide-figure { width: 100%; }
  .closing-figure { width: 90%; }
  .landscape { aspect-ratio: 4 / 3; }
  .studies-grid { grid-template-columns: 1fr; gap: 3rem; }
  .studies-grid figure { width: 88%; }
  .studies-grid figure:nth-child(2) { justify-self: end; }
  .about { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
