/* Gourmand Gardens — botanical journal. Shared palette and type. */
:root {
  --paper: #f4efdf;
  --ink: #263526;
  --forest: #202e20;
  --moss: #737b4c;
  --clay: #9e563e;
  --muted: #626859;
  --line: #cecdbb;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Karla", "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--sans);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(52px, 6.3vw, 92px);
}
em {
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
button {
  font: inherit;
  color: inherit;
}
button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 6px;
}
::selection {
  background: #c7cc9c;
  color: var(--forest);
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 20;
  background: var(--paper);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}
.section {
  padding: 110px 7%;
}
.text-link {
  display: inline-block;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  margin-top: 24px;
}
.text-link span {
  padding-left: 18px;
}
/* Masthead */
.header {
  height: 100px;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  width: 112px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.brand img {
  mix-blend-mode: multiply;
}
.header-note {
  font: italic 19px/1.1 var(--serif);
  color: var(--muted);
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 15px;
}
nav a {
  white-space: nowrap;
}
.nav-contact {
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  margin-left: 12px;
}
.nav-contact span {
  margin-left: 14px;
}
.menu-toggle {
  display: none;
}
/* Feathered windows into the original citrus photograph, with an aligned foreground layer. */
.hero {
  position: relative;
  min-height: 720px;
  height: calc(100svh - 100px);
  max-height: 980px;
  background: var(--forest);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0 -1px 0 20%;
  z-index: -2;
  mask-image:
    radial-gradient(ellipse 80% 96% at 97% 40%, #000 55%, transparent 97%),
    radial-gradient(ellipse 34% 29% at 25% 17%, #000 20%, transparent 100%),
    radial-gradient(ellipse 35% 31% at 30% 90%, #000 20%, transparent 100%);
}
.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 46, 32, 0.54), transparent 46%),
    linear-gradient(0deg, rgba(32, 46, 32, 0.5), transparent 32%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 57%;
  padding: 68px 0 110px 6%;
}
.hero .eyebrow {
  font-size: 12px;
  color: #dedfc8;
  letter-spacing: 0.1em;
}
.hero h1 {
  font-size: clamp(76px, 7.8vw, 120px);
  line-height: 0.87;
  letter-spacing: -0.04em;
  margin: 31px 0 25px;
}
.hero h1 > span {
  display: block;
}
.hero h1 > span:nth-child(2) {
  margin-left: 5%;
}
.hero h1 .nature-line {
  font-size: 1.13em;
  margin-left: 15%;
  white-space: nowrap;
}
.hero h1 em {
  color: #d4d8a6;
}
.hero-intro {
  max-width: 340px;
  margin-top: 31px;
  font-size: 16px;
  color: #e7e7d7;
}
.hero .desktop-break {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  min-height: 52px;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
}
.button:hover {
  text-decoration: none;
}
.button span {
  transition: transform 0.35s;
}
.button:hover span {
  transform: translate(3px, -3px);
}
.hero .button {
  margin-top: 19px;
}
.hero-foreground {
  position: absolute;
  inset: 0 -1px 0 20%;
  z-index: 2;
  pointer-events: none;
  background: url("assets/paul-citrus.webp") center 49% / cover no-repeat;
  mask-image: radial-gradient(
    ellipse 12% 14% at 25% 76%,
    rgba(0, 0, 0, 0.78) 5%,
    transparent 93%
  );
}
.hero-foot {
  position: absolute;
  left: 6%;
  right: 5%;
  bottom: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #e1e3cd;
  z-index: 3;
}
.hero-foot a {
  padding: 10px;
}
.hero-foot a span {
  margin-left: 18px;
}
/* Journal opening */
.philosophy {
  padding-top: 125px;
  padding-bottom: 70px;
  max-width: 1390px;
  margin: auto;
  position: relative;
}
.section-label {
  color: var(--clay);
  text-align: center;
  margin-bottom: 32px;
}
.philosophy-body {
  max-width: 1010px;
  margin: auto;
}
.philosophy h2 {
  text-align: center;
  font-size: clamp(50px, 6.4vw, 90px);
}
.philosophy h2 em {
  color: var(--moss);
}
.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 760px;
  margin: 40px auto 0;
}
.intro-columns p {
  font-size: 17px;
  color: var(--muted);
}
.philosophy-note {
  margin: 43px 2% 0 auto;
  text-align: right;
  color: var(--clay);
  font: italic 27px/1.2 var(--serif);
  transform: rotate(-3deg);
}
/* Five photographic service entries */
.services {
  padding-top: 80px;
  padding-bottom: 125px;
  max-width: 1600px;
  margin: auto;
}
.services-intro {
  margin-left: 5%;
  position: relative;
  z-index: 1;
}
.services-intro .eyebrow {
  color: var(--clay);
  margin-bottom: 24px;
}
.services-intro h2 {
  max-width: 720px;
}
.services-intro h2 em {
  color: var(--moss);
}
.services-intro > p:last-child {
  font-size: 17px;
  margin-top: 28px;
  color: var(--muted);
}
.service-meadow {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 28px;
  align-items: start;
  margin-top: -70px;
}
.service-entry {
  min-width: 0;
}
.service-consulting {
  grid-column: 9/13;
  grid-row: 1;
  margin-top: 0;
}
.service-design {
  grid-column: 1/8;
  grid-row: 1;
  margin-top: 220px;
}
.service-installation {
  grid-column: 8/13;
  grid-row: 2;
  margin-top: -95px;
}
.service-maintenance {
  grid-column: 2/6;
  grid-row: 2;
  margin-top: 95px;
}
.service-education {
  grid-column: 7/12;
  grid-row: 3;
  margin-top: -90px;
}
.service-link {
  display: block;
}
.service-link:hover {
  text-decoration: none;
}
.service-image {
  position: relative;
  overflow: hidden;
  background: #78805c;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.6s cubic-bezier(0.2, 0.65, 0.2, 1),
    object-position 1.6s;
}
.service-consulting .service-image {
  aspect-ratio: 0.78;
}
.service-design .service-image {
  aspect-ratio: 1.4;
}
.service-installation .service-image {
  aspect-ratio: 1.06;
}
.service-maintenance .service-image {
  aspect-ratio: 0.76;
}
.service-education .service-image {
  aspect-ratio: 1.26;
}
.service-entry h3 {
  font-size: clamp(35px, 3.6vw, 54px);
  margin-top: 18px;
}
.service-consulting h3,
.service-maintenance h3 {
  font-style: italic;
}
.service-caption {
  color: var(--muted);
  font-size: 15px;
  margin-top: 9px;
  max-width: 345px;
}
.service-invitation {
  position: absolute;
  inset: auto 0 0;
  padding: 70px 25px 25px;
  background: linear-gradient(transparent, rgba(17, 32, 17, 0.85));
  color: var(--paper);
  font: italic 29px/1.05 var(--serif);
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.view-word {
  display: block;
  font: 14px/1.5 var(--sans);
  margin-top: 17px;
}
.service-link:focus-visible .service-invitation {
  opacity: 1;
  transform: none;
}
.service-link:focus-visible img {
  transform: scale(1.045);
}
@media (hover: hover) {
  .service-link:hover img {
    transform: scale(1.055);
    object-position: 53% 48%;
  }
  .service-link:hover .service-invitation {
    opacity: 1;
    transform: none;
  }
}
.meadow-note {
  grid-column: 2/6;
  grid-row: 3;
  padding-top: 80px;
  transform: rotate(-4deg);
}
.meadow-note p {
  font: 42px/1.1 var(--serif);
}
.meadow-note em {
  color: var(--clay);
}
.meadow-note > span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}
/* Open photographic spreads and quieter botanical details */
.gardens {
  background: #e6e7d5;
  padding-top: 100px;
  padding-bottom: 105px;
  overflow: hidden;
}
.garden-heading {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  max-width: 1300px;
  margin: auto;
  align-items: end;
}
.garden-heading .eyebrow {
  color: var(--clay);
  margin-bottom: 27px;
}
.garden-heading h2 {
  font-size: clamp(65px, 8vw, 120px);
}
.garden-heading > p {
  font-size: 16px;
  margin-right: 6%;
  margin-bottom: 10px;
}
.garden-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 26px;
  max-width: 1440px;
  margin: 65px auto 0;
  align-items: start;
}
.garden-grid > * {
  min-width: 0;
}
.garden-primary {
  grid-column: 1/10;
  grid-row: 1;
  margin-left: -8.1vw;
}
.garden-primary img {
  aspect-ratio: 1.6;
  object-fit: cover;
}
.garden-primary figcaption {
  padding-left: 8.1vw;
}
.garden-secondary {
  grid-column: 8/13;
  grid-row: 2;
  margin-top: -70px;
  z-index: 1;
  border: 15px solid #e6e7d5;
  border-right: 0;
}
.garden-secondary img {
  aspect-ratio: 0.86;
  object-fit: cover;
}
.garden-note {
  grid-column: 2/7;
  grid-row: 2;
  padding-top: 80px;
}
.garden-note p {
  font: 65px/0.94 var(--serif);
}
.garden-note em {
  color: var(--clay);
}
.garden-note > span {
  display: block;
  margin-top: 23px;
  font-size: 16px;
  max-width: 260px;
}
.garden-note .text-link {
  display: block;
  width: fit-content;
}
.garden-third {
  grid-column: 2/6;
  grid-row: 3;
  margin-top: -30px;
  transform: rotate(-2deg);
}
.garden-third img {
  aspect-ratio: 0.93;
  object-fit: cover;
}
.garden-detail {
  grid-column: 8/12;
  grid-row: 3;
  margin-top: 165px;
}
.garden-detail img {
  aspect-ratio: 1.44;
  object-fit: cover;
}
.garden-grid figcaption {
  margin-top: 14px;
  font: italic 21px/1.3 var(--serif);
}
.photo-button {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
}
.photo-button img {
  transition: transform 1.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.photo-button:hover img,
.photo-button:focus-visible img {
  transform: scale(1.05);
}
.enlarge {
  position: absolute;
  right: 17px;
  bottom: 17px;
  padding: 4px 12px;
  font: italic 20px/1.3 var(--serif);
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s;
}
.photo-button:hover .enlarge,
.photo-button:focus-visible .enlarge {
  opacity: 1;
  transform: none;
}
/* The founder and the invitation */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  padding-top: 135px;
  padding-bottom: 130px;
  align-items: center;
  max-width: 1560px;
  margin: auto;
}
.about figure {
  transform: rotate(-1.5deg);
}
.about figure img {
  height: 620px;
  object-fit: cover;
  object-position: 40%;
}
.about figcaption {
  margin-top: 15px;
  font: italic 23px var(--serif);
  color: var(--clay);
  text-align: right;
}
.about-copy .eyebrow {
  color: var(--clay);
  font-size: 12px;
}
.about h2 {
  margin: 24px 0;
  font-size: clamp(50px, 5.7vw, 82px);
}
.about h2 em {
  color: var(--moss);
}
.credentials {
  font-size: 15px;
  padding-bottom: 16px;
  color: var(--clay);
}
.about-copy > p:not(.eyebrow):not(.credentials) {
  font-size: 17px;
  margin-top: 18px;
}
.contact {
  background: var(--forest);
  color: var(--paper);
  padding-top: 88px;
  padding-bottom: 100px;
}
.contact > .eyebrow {
  color: #c8cda5;
}
.contact-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 55px;
  align-items: end;
  margin-top: 35px;
}
.contact h2 {
  font-size: clamp(67px, 8vw, 116px);
}
.contact h2 em {
  color: #d4d8a6;
}
.contact-row p {
  margin-bottom: 22px;
  color: #e0e2ce;
}
.contact .button {
  font-size: 18px;
}
.phone {
  display: block;
  font-size: 14px;
  margin-top: 25px;
  width: fit-content;
}
footer {
  padding: 25px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
footer > a:first-child {
  font: 26px var(--serif);
}
footer p {
  color: var(--muted);
}
/* Native, keyboard-accessible dialogs */
body:has(dialog[open]) {
  overflow: hidden;
}
dialog {
  border: 0;
  color: var(--ink);
  background: var(--paper);
  max-height: 92svh;
}
dialog::backdrop {
  background: rgba(19, 31, 18, 0.88);
}
.lightbox {
  width: min(1100px, 94vw);
  padding: 56px 24px 24px;
}
.lightbox img {
  max-height: 73svh;
  width: auto;
  max-width: 100%;
  margin: auto;
  object-fit: contain;
}
.lightbox p {
  text-align: center;
  margin-top: 18px;
  font: italic 24px var(--serif);
}
.lightbox-close,
.dialog-close {
  position: absolute;
  right: 19px;
  top: 9px;
  background: var(--paper);
  border: 0;
  padding: 8px 12px;
  min-height: 42px;
  cursor: pointer;
  font-size: 15px;
  z-index: 1;
}
.service-dialog {
  width: min(1030px, 94vw);
  padding: 58px 30px 35px;
}
.service-dialog-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 38px;
}
.service-dialog-photo {
  height: 100%;
  max-height: 560px;
  min-height: 380px;
  object-fit: cover;
}
.service-dialog-copy h2 {
  font-size: 56px;
  margin: 16px 0 24px;
}
.service-dialog-copy .eyebrow {
  font-size: 12px;
  color: var(--clay);
}
.service-dialog-copy p {
  font-size: 16px;
  margin-bottom: 15px;
}
.service-dialog-copy ul {
  padding-left: 20px;
  font-size: 16px;
}
.service-dialog-copy li + li {
  margin-top: 6px;
}
.service-dialog-copy a {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid var(--clay);
  font-size: 15px;
}
/* Responsive composition */
@media (min-width: 1650px) {
  .hero-copy {
    padding-top: 100px;
  }
}
@media (max-width: 1100px) {
  .header-note {
    display: none;
  }
  nav {
    gap: 22px;
  }
  .hero-copy {
    width: 62%;
    padding-top: 90px;
  }
  .hero h1 {
    font-size: 90px;
  }
  .hero-image,
  .hero-foreground {
    left: 15%;
  }
  .service-meadow {
    gap: 0 20px;
    margin-top: 10px;
  }
  .service-design {
    margin-top: 170px;
  }
  .service-installation {
    margin-top: 0;
  }
  .service-education {
    margin-top: 30px;
  }
  .meadow-note {
    padding-top: 80px;
  }
  .about {
    gap: 6%;
  }
  .about figure img {
    height: 530px;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 76px 7%;
  }
  .header {
    height: 82px;
    justify-content: space-between;
    padding: 8px 6%;
    position: relative;
    z-index: 5;
  }
  .brand {
    width: 100px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 0 0 15px;
  }
  nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 15px 7% 25px;
    box-shadow: 0 18px 25px #202e2022;
  }
  nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  nav a {
    padding: 13px 0;
    font-size: 19px;
    border-bottom: 1px solid var(--line);
  }
  .nav-contact {
    margin: 0;
  }
  .nav-contact span {
    float: right;
  }
  .hero {
    height: auto;
    max-height: none;
    min-height: 0;
    padding-top: 355px;
  }
  .hero-image {
    inset: 0 0 auto;
    height: 440px;
    mask-image: linear-gradient(#000 0%, #000 63%, transparent 100%);
  }
  .hero-image img {
    object-position: 48% 47%;
  }
  .hero-image:after {
    background: linear-gradient(0deg, var(--forest), transparent 45%);
  }
  .hero-foreground {
    display: none;
  }
  .hero-copy {
    width: 100%;
    padding: 0 7% 35px;
  }
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.075em;
  }
  .hero h1 {
    font-size: clamp(63px, 13vw, 93px);
    margin-top: 23px;
    margin-bottom: 25px;
    line-height: 0.9;
  }
  .hero h1 > span:nth-child(2) {
    margin-left: 4%;
  }
  .hero h1 .nature-line {
    margin-left: 13%;
    font-size: 1.15em;
  }
  .hero-intro {
    max-width: 320px;
    font-size: 16px;
    margin-top: 25px;
  }
  .hero .button {
    margin-top: 14px;
    width: 100%;
    max-width: 360px;
  }
  .hero-foot {
    position: static;
    margin: 0 7% 18px;
    gap: 18px;
    font-size: 11px;
  }
  .hero-foot > span {
    max-width: 205px;
  }
  .hero-foot a {
    font-size: 13px;
  }
  .hero-foot a span {
    margin-left: 10px;
  }
  .philosophy {
    padding-top: 82px;
    padding-bottom: 48px;
  }
  .section-label {
    font-size: 12px;
    margin-bottom: 27px;
  }
  .philosophy h2 {
    font-size: 52px;
  }
  .intro-columns {
    display: block;
    margin-top: 31px;
  }
  .intro-columns p + p {
    margin-top: 19px;
  }
  .philosophy-note {
    text-align: center;
    font-size: 25px;
    margin-top: 35px;
  }
  .services {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .services-intro {
    margin-left: 0;
  }
  .services-intro h2 {
    font-size: 57px;
  }
  .services-intro .eyebrow {
    font-size: 12px;
  }
  .services-intro > p:last-child {
    margin-top: 24px;
  }
  .service-meadow {
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin-top: 37px;
  }
  .service-entry {
    margin: 0;
    width: 100%;
  }
  .service-consulting {
    width: 76%;
    align-self: flex-end;
  }
  .service-consulting .service-image {
    aspect-ratio: 0.93;
  }
  .service-design {
    width: 100%;
  }
  .service-design .service-image {
    aspect-ratio: 1.1;
  }
  .service-installation {
    width: 81%;
    align-self: flex-end;
  }
  .service-maintenance {
    width: 78%;
  }
  .service-maintenance .service-image {
    aspect-ratio: 0.82;
  }
  .service-education {
    width: 94%;
    align-self: flex-end;
  }
  .service-entry h3 {
    font-size: 40px;
    margin-top: 13px;
  }
  .service-caption {
    font-size: 15px;
    margin-top: 8px;
  }
  .service-invitation {
    display: none;
  }
  .service-entry h3:after {
    content: " ↗";
    font: 20px var(--sans);
  }
  .meadow-note {
    padding: 22px 0 0;
    margin: auto;
    transform: rotate(-3deg);
  }
  .meadow-note p {
    font-size: 38px;
  }
  .gardens {
    padding-top: 73px;
  }
  .garden-heading {
    display: block;
  }
  .garden-heading h2 {
    font-size: 78px;
  }
  .garden-heading > p {
    margin-top: 28px;
  }
  .garden-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 35px 12px;
    margin-top: 35px;
  }
  .garden-primary {
    grid-column: 1/7;
    grid-row: 1;
    margin-left: -8.14%;
    margin-right: -8.14%;
  }
  .garden-primary img {
    aspect-ratio: 1.2;
  }
  .garden-primary figcaption {
    padding-left: 7%;
  }
  .garden-secondary {
    grid-column: 3/7;
    grid-row: 2;
    margin: 0;
    border: 0;
  }
  .garden-note {
    grid-column: 1/7;
    grid-row: 3;
    padding: 0;
    margin: 0 8%;
  }
  .garden-note p {
    font-size: 58px;
  }
  .garden-third {
    grid-column: 1/5;
    grid-row: 4;
    margin-top: 12px;
  }
  .garden-detail {
    grid-column: 3/7;
    grid-row: 5;
    margin: 0;
  }
  .garden-grid figcaption {
    font-size: 20px;
  }
  .enlarge {
    opacity: 1;
    transform: none;
    font-size: 17px;
    right: 10px;
    bottom: 10px;
  }
  .about {
    display: flex;
    flex-direction: column;
    gap: 37px;
    padding-top: 85px;
  }
  .about figure {
    width: 95%;
    align-self: flex-start;
  }
  .about figure img {
    height: 410px;
  }
  .about figcaption {
    font-size: 21px;
  }
  .about h2 {
    font-size: 61px;
  }
  .about-copy .eyebrow {
    font-size: 12px;
  }
  .contact .eyebrow {
    font-size: 12px;
  }
  .contact-row {
    display: block;
    margin-top: 30px;
  }
  .contact h2 {
    font-size: 70px;
  }
  .contact-row > div {
    margin-top: 32px;
  }
  .contact .button {
    font-size: 16px;
    width: 100%;
  }
  footer {
    padding: 27px 7%;
    flex-wrap: wrap;
    gap: 13px;
  }
  footer p {
    order: 3;
    width: 100%;
    font-size: 12px;
  }
  footer > a:last-child {
    margin-left: auto;
  }
  .service-dialog {
    padding: 58px 22px 28px;
  }
  .service-dialog-layout {
    display: flex;
    flex-direction: column;
    gap: 27px;
  }
  .service-dialog-photo {
    height: 230px;
    min-height: 0;
  }
  .service-dialog-copy h2 {
    font-size: 46px;
  }
  .lightbox {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 360px) {
  .hero {
    padding-top: 315px;
  }
  .hero-image {
    height: 400px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero h1 .nature-line {
    margin-left: 6%;
  }
  .philosophy h2 {
    font-size: 45px;
  }
  .services-intro h2 {
    font-size: 48px;
  }
  .service-entry h3 {
    font-size: 34px;
  }
  .about h2 {
    font-size: 51px;
  }
  .contact h2 {
    font-size: 61px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
