/* ==========================================================================
   Burgundy Loft Florals
   Ported from the Claude Design canvas in /design. Colour and type values are
   taken verbatim from that file; the inline styles have been consolidated into
   the classes below.
   ========================================================================== */

:root {
  --ink: #2a211f;
  --ink-deep: #111111;
  --burgundy: #6e2132;
  --blush: #d7a0a9;
  --bone: #f0ede9;
  --shell: #f7f1ef;
  --shell-deep: #efe8e3;
  --clay: #c9b8ae;
  --taupe: #a2958c;
  --taupe-mid: #8c8078;
  --taupe-dark: #6b615b;
  --taupe-darker: #5c534e;
  --grey-warm: #7a706a;
  --sand: #ebe3de;
  --sand-deep: #dcd1cb;
  --sand-line: #e3d8d2;
  --mono-label: #9c8f87;
  --pill-label: #b2a49b;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --numeral: "Times New Roman", Times, serif;
  --mono: ui-monospace, Menlo, Consolas, monospace;

  --shell-max: 1180px;
  --gutter: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink-deep);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--burgundy);
  text-decoration: none;
}

a:hover {
  color: var(--ink-deep);
}

::selection {
  background: var(--blush);
  color: var(--ink-deep);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

/* --------------------------------------------------------------- animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ctaGlow {
  0% {
    box-shadow: 0 18px 38px -14px rgba(42, 33, 31, 0.5), 0 0 0 0 rgba(215, 160, 169, 0.95),
      0 0 0 0 rgba(215, 160, 169, 0.6);
  }
  50% {
    box-shadow: 0 18px 38px -14px rgba(42, 33, 31, 0.5), 0 0 0 14px rgba(215, 160, 169, 0),
      0 0 0 26px rgba(215, 160, 169, 0);
  }
  100% {
    box-shadow: 0 18px 38px -14px rgba(42, 33, 31, 0.5), 0 0 0 0 rgba(215, 160, 169, 0),
      0 0 0 0 rgba(215, 160, 169, 0);
  }
}

@keyframes ctaBob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.035);
  }
}

main {
  animation: fadeIn 0.5s ease both;
}

/* ------------------------------------------------------------ type helpers */

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0;
}

.eyebrow--wide {
  letter-spacing: 0.44em;
}

.eyebrow--light {
  color: rgba(240, 237, 233, 0.82);
  letter-spacing: 0.46em;
}

.eyebrow--blush {
  color: var(--blush);
  letter-spacing: 0.44em;
}

.eyebrow--clay {
  color: #5f4f49;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.numeral {
  font-family: var(--numeral);
  font-style: italic;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: var(--blush);
}

.rule {
  width: 52px;
  height: 1px;
  background: var(--blush);
  border: 0;
  margin: 38px auto 0;
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 17px 42px;
  transition: background 0.35s, color 0.35s;
}

.btn--solid {
  background: var(--burgundy);
  color: var(--bone);
}

.btn--solid:hover {
  background: var(--ink-deep);
  color: var(--bone);
}

.btn--light {
  background: var(--bone);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--blush);
  color: var(--ink);
}

.btn--outline-light {
  border: 1px solid rgba(240, 237, 233, 0.7);
  color: var(--bone);
  background: transparent;
  letter-spacing: 0.28em;
  padding: 16px 38px;
}

.btn--outline-light:hover {
  background: var(--bone);
  color: var(--ink-deep);
}

.btn--outline-dark {
  border: 1px solid #4a3c37;
  color: #241c1a;
  background: transparent;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  padding: 15px 34px;
  align-self: flex-start;
}

.btn--outline-dark:hover {
  background: #241c1a;
  color: var(--shell);
}

.text-link {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--blush);
  white-space: nowrap;
}

.arrow-link {
  margin-top: 34px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--sand);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.34em;
  color: var(--burgundy);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__tagline {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.42em;
  color: var(--taupe-mid);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  min-width: 0;
}

.site-nav__link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-darker);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s;
  white-space: nowrap;
}

.site-nav__link:hover {
  color: var(--burgundy);
}

.site-nav__link[aria-current="page"] {
  color: var(--burgundy);
  border-bottom-color: var(--blush);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--sand-line);
  color: var(--taupe-darker);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 16px;
  cursor: pointer;
}

/* ---------------------------------------------------------------- section */

.section {
  padding: 112px var(--gutter);
}

.section--shell {
  background: var(--shell);
}

.section--bone {
  background: var(--bone);
}

.section--flush {
  padding: 0;
}

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
}

.shell--narrow {
  max-width: 760px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .display {
  font-size: clamp(30px, 3.6vw, 48px);
  margin-top: 20px;
}

/* ------------------------------------------------------------- page hero */

.page-hero {
  background: var(--shell);
  padding: 96px var(--gutter) 84px;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.page-hero .display {
  font-size: clamp(34px, 4.6vw, 62px);
  margin-top: 22px;
}

.page-hero__intro {
  max-width: 560px;
  margin: 26px auto 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--taupe-dark);
}

/* -------------------------------------------------------------- home hero */

.hero {
  position: relative;
  height: 100vh;
  min-height: 744px;
  overflow: hidden;
  background: var(--shell-deep);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 58% 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(38, 27, 25, 0.66) 0%,
    rgba(38, 27, 25, 0.56) 30%,
    rgba(38, 27, 25, 0.54) 60%,
    rgba(38, 27, 25, 0.42) 100%
  );
}

.hero__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
  text-align: center;
}

.hero__body .eyebrow--light {
  animation: fadeUp 1s ease both;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 24px 0 0;
  text-wrap: pretty;
  animation: fadeUp 1.1s ease 0.12s both;
}

.hero__text {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(240, 237, 233, 0.9);
  margin: 26px 0 0;
  animation: fadeUp 1.1s ease 0.24s both;
}

.hero__cta {
  margin-top: 38px;
  animation: fadeUp 1.1s ease 0.36s both;
}

.hero__sentinel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* --------------------------------------------------------------- welcome */

.welcome {
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.welcome__body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.5;
  color: var(--ink);
  margin: 28px 0 0;
  text-wrap: pretty;
}

/* ------------------------------------------------------- service preview */

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.service-row--flip {
  grid-template-columns: 1fr 0.9fr;
}

.service-row__media {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--shell-deep);
}

.service-row--flip .service-row__media {
  order: 2;
}

.service-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row__body {
  background: var(--shell);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 68px;
  transition: background 0.5s;
  color: inherit;
}

.service-row:hover .service-row__body {
  background: var(--shell-deep);
}

.service-row__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.service-row__text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--taupe-dark);
  margin: 24px 0 0;
  max-width: 520px;
  text-wrap: pretty;
}

/* -------------------------------------------------------------- split band */

.split {
  display: grid;
  align-items: stretch;
}

.split--why {
  grid-template-columns: 1.15fr 1fr;
  background: var(--shell-deep);
}

.split--steps {
  grid-template-columns: 1fr 1.15fr;
  background: var(--bone);
}

.split__media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--shell-deep);
}

.split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 64px;
}

.split__panel--clay {
  background: var(--clay);
}

.split__panel--bone {
  background: var(--bone);
  padding: 104px 64px;
}

.split__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 22px 0 0;
}

.split__panel--clay .split__heading {
  color: #241c1a;
}

.split__panel--bone .split__heading {
  color: var(--ink);
}

.split__text {
  font-size: 14.5px;
  line-height: 1.9;
  margin: 26px 0 0;
  max-width: 420px;
}

.split__panel--clay .split__text {
  color: #3e332f;
}

.split__panel--bone .split__text {
  color: var(--taupe-darker);
  max-width: 440px;
  margin-top: 24px;
}

/* ----------------------------------------------------------------- steps */

.steps {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}

.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 26px 0;
  border-top: 1px solid var(--sand);
}

.step__numeral {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}

.step__body {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--grey-warm);
  margin-top: 8px;
}

/* --------------------------------------------------------- gallery tiles */

.gallery-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.gallery-preview__head .display {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-top: 18px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tile {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--shell-deep);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.tile:hover img {
  transform: scale(1.05);
}

/* ------------------------------------------------------------ closing CTA */

.closing-cta {
  position: relative;
  padding: 132px var(--gutter);
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}

.closing-cta__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.closing-cta__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.12;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 24px 0 0;
}

.closing-cta__text {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(240, 237, 233, 0.72);
  margin: 26px 0 0;
}

.closing-cta .btn {
  margin-top: 40px;
}

/* ---------------------------------------------------------------- about */

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-grid__portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--shell-deep);
}

.about-grid__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__byline {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe);
}

.about__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.24;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 20px 0 0;
}

.about__body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--taupe-darker);
  margin: 28px 0 0;
}

.about__body p + p {
  margin-top: 20px;
}

.stats {
  display: flex;
  gap: 44px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
  flex-wrap: wrap;
}

.stat__value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}

.stat__label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mono-label);
  margin-top: 8px;
}

.testimonial {
  background: var(--clay);
  padding: 104px var(--gutter);
  text-align: center;
}

.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.6;
  color: #241c1a;
  text-wrap: pretty;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial__attribution {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #5f4f49;
  margin-top: 30px;
}

/* -------------------------------------------------------------- services */

.service-list {
  max-width: 1080px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 96px 1fr 200px;
  gap: 32px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--sand);
}

.service-item__numeral {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.service-item__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.service-item__body {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--taupe-darker);
  margin: 16px 0 0;
  max-width: 560px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.tag {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  border: 1px solid var(--sand-line);
  padding: 7px 13px;
}

.service-item__price {
  text-align: right;
  padding-top: 6px;
}

.service-item__price-label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.service-item__price-value {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--burgundy);
  margin-top: 8px;
}

.service-outro {
  text-align: center;
  padding-top: 64px;
}

.service-outro p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--taupe-dark);
  max-width: 520px;
  margin: 0 auto;
}

.service-outro .btn {
  margin-top: 30px;
}

/* --------------------------------------------------------------- rentals */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 52px;
}

.filter-chip {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--sand-line);
  background: transparent;
  color: var(--taupe-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 40px 28px;
}

.rental-card {
  display: flex;
  flex-direction: column;
}

.rental-card[hidden] {
  display: none;
}

.rental-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--shell-deep);
}

.rental-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-card__body {
  padding: 20px 2px 0;
}

.rental-card__cat {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pill-label);
}

.rental-card__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 10px 0 0;
  line-height: 1.3;
}

.rental-card__desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--grey-warm);
  margin: 10px 0 0;
}

.rental-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--sand);
}

.rental-card__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--burgundy);
}

.rental-card__unit {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.rental-empty {
  text-align: center;
  color: var(--taupe-dark);
  font-size: 14px;
  padding: 40px 0;
}

.reserve {
  text-align: center;
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--sand);
}

.reserve__heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.reserve__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--taupe-dark);
  max-width: 480px;
  margin: 20px auto 0;
}

.reserve__form {
  max-width: 660px;
  margin: 44px auto 0;
  text-align: left;
  background: var(--shell);
  padding: 48px 44px;
}

.reserve__note {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--mono-label);
  margin-top: 20px;
}

/* ----------------------------------------------------------------- forms */

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field label,
.field-group__label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sand-deep);
  padding: 11px 0;
  outline: none;
  border-radius: 0;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--burgundy);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.field-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1px solid var(--sand-line);
  background: transparent;
  color: var(--taupe-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}

.form-status {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--burgundy);
}

.form-status:empty {
  margin-top: 0;
}

/* --------------------------------------------------------------- gallery */

.gallery-grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-tile {
  overflow: hidden;
  background: var(--shell-deep);
  aspect-ratio: 4 / 5;
}

.gallery-tile--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------------ blog */

.post-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.post-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--sand);
}

.post-row__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--shell-deep);
}

.post-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-row__meta {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pill-label);
}

.post-row__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.28;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 16px 0 0;
  text-wrap: pretty;
}

.post-row__title a {
  color: inherit;
}

.post-row__title a:hover {
  color: var(--burgundy);
}

.post-row__excerpt {
  font-size: 14px;
  line-height: 1.9;
  color: var(--taupe-dark);
  margin: 16px 0 0;
}

.post-row__more {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid var(--blush);
  display: inline-block;
  padding-bottom: 5px;
}

.empty-state {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 20px;
}

.empty-state p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--taupe-dark);
}

/* ------------------------------------------------------------- post page */

.post {
  max-width: 720px;
  margin: 0 auto;
}

.post__cover {
  max-width: 1000px;
  margin: 0 auto 64px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--shell-deep);
}

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

.post__body {
  font-size: 16px;
  line-height: 1.95;
  color: var(--taupe-darker);
}

.post__body h2,
.post__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 48px 0 0;
}

.post__body h2 {
  font-size: 28px;
}

.post__body h3 {
  font-size: 22px;
}

.post__body p {
  margin: 20px 0 0;
}

.post__body img {
  height: auto;
  margin: 32px 0 0;
}

.post__body blockquote {
  margin: 32px 0 0;
  padding-left: 26px;
  border-left: 2px solid var(--blush);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
}

.post__body ul,
.post__body ol {
  margin: 20px 0 0;
  padding-left: 22px;
}

.post__body li {
  margin-top: 8px;
}

.post__back {
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

/* --------------------------------------------------------------- contact */

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.contact-aside {
  background: var(--shell);
  padding: 48px 40px;
}

.contact-aside__heading {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.contact-aside__rule {
  width: 36px;
  height: 1px;
  background: var(--blush);
  border: 0;
  margin: 22px 0 30px;
}

.contact-row {
  margin-bottom: 26px;
}

.contact-row__label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.contact-row__value {
  font-size: 14px;
  line-height: 1.7;
  color: #3e332f;
  margin-top: 8px;
}

.contact-row__value a {
  color: #3e332f;
}

.contact-row__value a:hover {
  color: var(--burgundy);
}

/* --------------------------------------------------------- floating CTA */

.floating-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta__button {
  position: relative;
  display: block;
  animation: ctaGlow 2.1s ease-out infinite, ctaBob 2.1s ease-in-out infinite;
}

.floating-cta__button:hover {
  animation: none;
}

.floating-cta__vine {
  position: absolute;
  left: -46px;
  top: -30px;
  width: calc(100% + 92px);
  height: calc(100% + 60px);
  overflow: visible;
  pointer-events: none;
}

.floating-cta__vine .vine-stem {
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.floating-cta__vine .vine-leaves {
  stroke-dashoffset: 90;
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s;
}

.floating-cta__vine .vine-blooms {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.34, 1.4, 0.4, 1) 0.25s, opacity 0.6s ease;
}

.floating-cta__button:hover .vine-stem,
.floating-cta__button:focus-visible .vine-stem {
  stroke-dashoffset: 0;
}

.floating-cta__button:hover .vine-leaves,
.floating-cta__button:focus-visible .vine-leaves {
  stroke-dashoffset: 0;
}

.floating-cta__button:hover .vine-blooms,
.floating-cta__button:focus-visible .vine-blooms {
  opacity: 1;
  transform: scale(1);
}

.floating-cta__label {
  position: relative;
  background: var(--burgundy);
  color: var(--bone);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 30px;
  box-shadow: 0 18px 38px -14px rgba(42, 33, 31, 0.5);
  transition: background 0.35s;
}

.floating-cta__button:hover .floating-cta__label {
  background: var(--ink-deep);
}

/* ---------------------------------------------------------------- footer */

.site-footer {
  background: var(--ink);
  padding: 76px var(--gutter) 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240, 237, 233, 0.14);
}

.site-footer__wordmark {
  width: 212px;
  height: auto;
  display: block;
}

.site-footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240, 237, 233, 0.72);
  margin: 28px 0 0;
  max-width: 280px;
}

.site-footer__label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240, 237, 233, 0.45);
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240, 237, 233, 0.78);
}

.site-footer__list a {
  color: rgba(240, 237, 233, 0.78);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.site-footer__list a:hover {
  color: var(--blush);
}

.site-footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 233, 0.38);
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 960px) {
  :root {
    --gutter: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .hero {
    height: auto;
    min-height: 600px;
    padding: 140px 0;
  }

  .hero__image {
    background-attachment: scroll;
  }

  .hero__body {
    position: relative;
    inset: auto;
    padding: 0 var(--gutter);
  }

  .service-row,
  .service-row--flip,
  .split--why,
  .split--steps,
  .about-grid,
  .contact-grid,
  .post-row {
    grid-template-columns: 1fr;
  }

  .service-row--flip .service-row__media {
    order: 0;
  }

  .split--why .split__media,
  .split--steps .split__media {
    min-height: 380px;
  }

  .split__panel,
  .split__panel--bone {
    padding: 64px var(--gutter);
  }

  .service-row__body {
    padding: 48px 40px;
  }

  .about-grid {
    gap: 44px;
  }

  .contact-grid {
    gap: 48px;
  }

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

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

  .gallery-tile--wide {
    grid-column: span 2;
  }

  .service-item {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  .service-item__price {
    grid-column: 2;
    text-align: left;
    padding-top: 20px;
  }

  .section {
    padding: 80px var(--gutter);
  }

  .post-row {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .field-pair {
    grid-template-columns: 1fr;
  }

  .reserve__form {
    padding: 32px 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bar {
    flex-direction: column;
    gap: 10px;
  }

  .gallery-preview__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .stats {
    gap: 28px;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
  }

  .floating-cta__label {
    padding: 15px 22px;
    font-size: 10px;
  }

  .brand__mark {
    height: 48px;
  }
}

/* -------------------------------------------------------------------- FAQ */

.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: transparent;
  border: 0;
  padding: 32px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
}

.faq-question__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.faq-question__sign {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--blush);
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer p {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--taupe-dark);
  margin: 0 0 32px;
  max-width: 640px;
}

/* ------------------------------------------------------------ placeholder */

/* Striped stand-in used wherever photography has not been shot yet. Defined
   last so it wins over the flat background on the tile it is applied to
   (.rental-card__media, .gallery-tile, .post-row__media, .tile). */
.placeholder {
  background: repeating-linear-gradient(135deg, #f1eae6 0 9px, #e7ded8 9px 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.placeholder span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--mono-label);
  white-space: pre-line;
}

.gallery-tile.placeholder span,
.post-row__media.placeholder span {
  font-size: 10.5px;
  line-height: 1.8;
}
