:root {
  --ink: #250632;
  --muted: #65616d;
  --paper: #fff7f0;
  --paper-strong: #fffaf5;
  --panel: #b8aec6;
  --panel-deep: #a89db9;
  --line: rgba(37, 6, 50, 0.2);
  --shadow:
    0 -24px 70px rgba(37, 6, 50, 0.13),
    0 46px 110px rgba(37, 6, 50, 0.22),
    0 18px 42px rgba(110, 82, 128, 0.2),
    0 2px 0 rgba(255, 250, 245, 0.55) inset;
  --project-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --project-speed: 1150ms;
  --project-detail-speed: 940ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.92), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.78), transparent 33rem),
    linear-gradient(180deg, #fff9f4 0%, #fff2e7 55%, #f8ede5 100%);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.gravity-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.64;
  mix-blend-mode: multiply;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

[data-gravity-text] {
  position: relative;
}

.gravity-word {
  display: inline-block;
  white-space: nowrap;
}

.gravity-letter,
[data-gravity-symbol] {
  display: inline-block;
  transform:
    translate3d(var(--gx, 0px), var(--gy, 0px), 0)
    rotate(var(--gr, 0deg))
    scale(var(--gs, 1));
  transform-origin: 50% 55%;
  will-change: transform;
}

.gravity-letter {
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
.site-footer {
  width: min(100% - 70px, 1160px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 30px;
}

.brand {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
  text-transform: lowercase;
  text-shadow: 0 4px 18px rgba(48, 16, 61, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #1c1930;
  font-size: 0.93rem;
  font-weight: 800;
}

.availability,
.nav-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  white-space: nowrap;
}

.availability {
  gap: 13px;
  padding: 0 19px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(37, 6, 50, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.availability > [data-gravity-symbol] {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #579843;
  box-shadow: 0 0 0 5px rgba(87, 152, 67, 0.12);
}

.nav-button,
.primary-cta {
  background: linear-gradient(145deg, #351048, #21042d);
  color: #fffaf6;
  box-shadow: 0 16px 35px rgba(31, 5, 42, 0.24);
}

.nav-button {
  padding: 0 28px;
}

.hero {
  width: min(100% - 42px, 760px);
  margin: 44px auto 34px;
  text-align: center;
}

.eyebrow {
  display: none;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.3rem, 8vw, 6.6rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-subtitle {
  width: min(100%, 470px);
  margin: 28px auto 24px;
  color: var(--muted);
  font-size: clamp(1.35rem, 2.3vw, 1.72rem);
  font-weight: 900;
  line-height: 1.22;
}

.hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #514b5a;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.clock {
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  position: relative;
}

.clock::before,
.clock::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 2px;
  background: var(--ink);
  transform-origin: bottom center;
}

.clock::before {
  height: 7px;
}

.clock::after {
  height: 6px;
  transform: rotate(120deg);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-top: 21px;
  padding: 18px 34px 18px 35px;
  border-radius: 13px;
  font-size: 1.23rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-cta span {
  font-size: 1.8rem;
  line-height: 1;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 21px 44px rgba(31, 5, 42, 0.3);
}

.hero-note {
  margin: 17px auto 0;
  color: #595461;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.55;
}

.booking-section {
  width: min(100% - 70px, 1160px);
  margin: 68px auto 34px;
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(520px, 1.24fr);
  gap: 34px;
  align-items: stretch;
}

.booking-copy {
  color: var(--ink);
  padding-top: 18px;
}

.booking-copy h2 {
  max-width: 420px;
  margin: 0;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.booking-copy > p:last-of-type {
  max-width: 355px;
  margin: 20px 0 0;
  color: #625b68;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.38;
}

.google-calendar-note {
  width: fit-content;
  max-width: 360px;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid rgba(37, 6, 50, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.72);
  color: #514a58;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(37, 6, 50, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18)),
    rgba(255, 250, 245, 0.76);
  box-shadow:
    0 -16px 46px rgba(37, 6, 50, 0.08),
    0 34px 90px rgba(37, 6, 50, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.booking-calendar,
.booking-panel {
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.booking-calendar {
  padding: 20px;
}

.calendar-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.calendar-topbar h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: capitalize;
}

.calendar-nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(37, 6, 50, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
  transition: transform 180ms ease, background 180ms ease;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  background: #fffaf5;
  transform: translateY(-1px);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 9px;
  color: #706879;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 56px;
  border: 1px solid rgba(37, 6, 50, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(37, 6, 50, 0.34);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
}

.calendar-day.is-available {
  color: var(--ink);
  cursor: pointer;
  background: rgba(255, 250, 245, 0.88);
  box-shadow: inset 0 0 0 1px rgba(37, 6, 50, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.calendar-day.is-available::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 5px auto 0;
  border-radius: 999px;
  background: #579843;
}

.calendar-day.is-available:hover,
.calendar-day.is-available:focus-visible,
.calendar-day.is-selected {
  background: var(--ink);
  color: #fffaf6;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 6, 50, 0.2);
  outline: none;
}

.calendar-day.is-selected::after {
  background: #fffaf6;
}

.booking-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
}

.booking-panel-label {
  margin: 0 0 8px;
  color: #706879;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-panel h3 {
  min-height: 58px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.slot-list {
  display: grid;
  gap: 9px;
}

.slot-button {
  min-height: 44px;
  border: 1px solid rgba(37, 6, 50, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.slot-button:hover,
.slot-button:focus-visible,
.slot-button.is-selected {
  background: var(--ink);
  color: #fffaf6;
  transform: translateY(-1px);
  box-shadow: 0 13px 25px rgba(37, 6, 50, 0.18);
  outline: none;
}

.empty-slots {
  margin: 0;
  color: #6a6270;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.42;
}

.booking-request {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, #351048, #21042d);
  color: #fffaf6;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 18px 32px rgba(31, 5, 42, 0.2);
}

.booking-request.is-disabled {
  pointer-events: none;
  opacity: 0.46;
}

.portfolio-showcase {
  width: min(100% - 70px, 1160px);
  margin: 70px auto 34px;
  padding: 0;
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 26px;
  margin-bottom: 24px;
  color: var(--ink);
}

.portfolio-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.portfolio-heading h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.portfolio-heading p:last-child {
  max-width: 300px;
  margin: 0 0 8px;
  color: #554d5f;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.portfolio-rail {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 9px;
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(37, 6, 50, 0.08);
  border-radius: 31px;
  background: rgba(255, 250, 245, 0.58);
  box-shadow:
    0 -18px 54px rgba(37, 6, 50, 0.09),
    0 34px 90px rgba(37, 6, 50, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.portfolio-tile {
  position: relative;
  flex: 0.75 1 76px;
  min-width: 58px;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 28px;
  background: #d7cedd;
  box-shadow: 0 12px 28px rgba(37, 6, 50, 0.16);
  transition:
    flex 720ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 720ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 720ms ease,
    border-radius 720ms cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-tile:hover,
.portfolio-tile:focus-visible,
.portfolio-tile.is-active {
  flex: 5.2 1 390px;
  transform: translateY(-4px);
  border-radius: 31px;
  box-shadow: 0 28px 70px rgba(37, 6, 50, 0.24);
  outline: none;
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.95) contrast(0.96);
  transition:
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 720ms ease;
}

.portfolio-tile:hover img,
.portfolio-tile:focus-visible img,
.portfolio-tile.is-active img {
  transform: scale(1);
  filter: saturate(1.05) contrast(1.02);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 26px;
  color: #fffaf6;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 6, 28, 0.76) 100%);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms ease 100ms,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-tile:hover .portfolio-overlay,
.portfolio-tile:focus-visible .portfolio-overlay,
.portfolio-tile.is-active .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-overlay span {
  color: rgba(255, 250, 246, 0.64);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portfolio-overlay h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.95;
}

.portfolio-overlay p {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.proposal-page .site-header {
  padding-bottom: 38px;
}

.proposal-hero {
  width: min(100% - 42px, 780px);
  margin-top: 28px;
  margin-bottom: 34px;
}

.proposal-hero h1 {
  max-width: none;
  font-size: clamp(5.4rem, 10vw, 8.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.proposal-subtitle {
  width: min(100%, 560px);
  margin-top: 26px;
  margin-bottom: 24px;
}

.proposal-package {
  width: min(100% - 70px, 1160px);
  margin: 26px auto 34px;
  padding: 36px 46px 40px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 31px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(193, 183, 207, 0.92), rgba(176, 164, 191, 0.94));
  box-shadow:
    0 -22px 62px rgba(37, 6, 50, 0.12),
    0 42px 105px rgba(37, 6, 50, 0.22),
    0 18px 44px rgba(110, 82, 128, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.74);
}

.proposal-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  margin: 0 0 18px;
  padding: 0 20px 0 14px;
  border: 1px solid rgba(37, 6, 50, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.2);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.proposal-pill span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.3);
  font-size: 1.3rem;
  font-weight: 400;
}

.proposal-package h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.1rem, 7.4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 12px 24px rgba(255, 250, 245, 0.26);
}

.proposal-list {
  display: grid;
  gap: 7px;
}

.proposal-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 64px;
  align-items: center;
  min-height: 112px;
  padding: 14px 26px 14px 25px;
  border: 1px solid rgba(37, 6, 50, 0.08);
  border-radius: 13px;
  background: rgba(255, 250, 245, 0.88);
  box-shadow:
    0 10px 22px rgba(61, 38, 77, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.proposal-item:hover,
.proposal-item:focus-within {
  transform: translateY(-2px);
  background: #fffaf5;
  box-shadow:
    0 16px 34px rgba(61, 38, 77, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.proposal-icon {
  display: grid;
  place-items: center;
  width: 110px;
  height: 86px;
  border-radius: 13px;
}

.proposal-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-icon-lilac {
  background: linear-gradient(145deg, #f1e2f4, #ddd1e8);
}

.proposal-icon-peach {
  background: linear-gradient(145deg, #ffe4d3, #f5d8c9);
}

.proposal-icon-sage {
  background: linear-gradient(145deg, #e9e6d9, #d7d4c5);
}

.proposal-icon-cream {
  background: linear-gradient(145deg, #ffe7d8, #f5ddce);
}

.proposal-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.proposal-copy p {
  margin: 7px 0 0;
  color: #4f4955;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.32;
}

.proposal-arrow {
  justify-self: end;
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.proposal-item:hover .proposal-arrow,
.proposal-arrow:focus-visible {
  transform: translateX(6px);
  outline: none;
}

.legal-main {
  width: min(100% - 70px, 920px);
  margin: 38px auto 54px;
}

.legal-card {
  padding: 42px;
  border: 1px solid rgba(37, 6, 50, 0.08);
  border-radius: 30px;
  background: rgba(255, 250, 245, 0.78);
  box-shadow:
    0 -16px 46px rgba(37, 6, 50, 0.08),
    0 34px 90px rgba(37, 6, 50, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.legal-kicker {
  margin: 0 0 15px;
  color: #665f6d;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-card h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.legal-card section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(37, 6, 50, 0.12);
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.legal-card p {
  margin: 0;
  color: #514b5a;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.62;
}

.legal-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.section-kicker {
  margin: 0 0 7px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker span {
  margin-right: 13px;
  font-size: 1.35rem;
  font-weight: 300;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 8px 26px;
}

.footer-gravity-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  overflow: visible;
  pointer-events: none;
}

.footer-gravity-line path {
  fill: none;
  stroke: rgba(37, 6, 50, 0.32);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.site-footer strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.site-footer p {
  margin: 4px 0 0;
  color: #6b6570;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  color: #504a56;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-contact-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 13px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(37, 6, 50, 0.12);
  border-radius: 12px;
  background: rgba(255, 250, 245, 0.94);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  box-shadow:
    0 16px 36px rgba(37, 6, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-contact-popover::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(37, 6, 50, 0.12);
  border-bottom: 1px solid rgba(37, 6, 50, 0.12);
  background: rgba(255, 250, 245, 0.94);
  transform: rotate(45deg);
}

.footer-contact:hover .footer-contact-popover,
.footer-contact:focus-within .footer-contact-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-contact-email {
  line-height: 1;
}

.footer-copy-button {
  min-height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(145deg, #351048, #21042d);
  color: #fffaf6;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.footer-copy-button:hover,
.footer-copy-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(37, 6, 50, 0.2);
  outline: none;
}

.footer-copy-button.is-copied {
  background: #579843;
}

.clipboard-helper {
  position: fixed;
  left: -9999px;
  top: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav > a:first-child {
    width: 100%;
    text-align: right;
  }

  .portfolio-showcase {
    width: min(100% - 42px, 1160px);
  }

  .booking-section {
    grid-template-columns: 1fr;
    width: min(100% - 42px, 1160px);
  }

  .proposal-package {
    width: min(100% - 42px, 1160px);
  }

  .portfolio-rail {
    min-height: 370px;
  }

  .portfolio-tile {
    height: 370px;
  }

}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .booking-section,
  .legal-main,
  .portfolio-showcase,
  .proposal-package {
    width: min(100% - 28px, 1160px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .site-header {
    padding-top: 24px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav > a:first-child {
    width: auto;
    text-align: left;
  }

  .availability,
  .nav-button {
    min-height: 42px;
  }

  .hero {
    width: min(100% - 28px, 760px);
    margin-top: 20px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .proposal-hero h1 {
    font-size: clamp(4.4rem, 18vw, 6.2rem);
  }

  .hero-details {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .legal-card {
    padding: 28px;
    border-radius: 24px;
  }

  .proposal-package {
    padding: 24px;
    border-radius: 24px;
  }

  .proposal-package h2 {
    font-size: clamp(3.4rem, 13vw, 4.9rem);
  }

  .proposal-item {
    grid-template-columns: 82px minmax(0, 1fr) 42px;
    min-height: 94px;
    padding: 12px 16px 12px 14px;
  }

  .proposal-icon {
    width: 68px;
    height: 68px;
  }

  .proposal-icon svg {
    width: 38px;
    height: 38px;
  }

  .proposal-copy h3 {
    font-size: 1.72rem;
  }

  .proposal-copy p {
    font-size: 0.95rem;
  }

  .proposal-copy p br {
    display: none;
  }

  .proposal-arrow {
    font-size: 2.1rem;
  }

  .booking-widget {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .booking-copy h2 {
    max-width: 100%;
  }

  .calendar-day {
    min-height: 48px;
    border-radius: 12px;
  }

  .booking-panel h3 {
    min-height: 0;
  }

  .booking-request {
    margin-top: 18px;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portfolio-heading p:last-child {
    max-width: 100%;
    margin-bottom: 6px;
    text-align: left;
  }

  .portfolio-rail {
    justify-content: flex-start;
    min-height: 360px;
    padding: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .portfolio-tile {
    flex: 0 0 72px;
    height: 360px;
    scroll-snap-align: center;
  }

  .portfolio-tile:hover,
  .portfolio-tile:focus-visible,
  .portfolio-tile.is-active {
    flex-basis: min(78vw, 360px);
  }

  .site-footer nav {
    gap: 24px;
  }
}

@media (max-width: 440px) {
  .nav {
    align-items: stretch;
  }

  .availability,
  .nav-button {
    width: 100%;
  }

  .primary-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-note br {
    display: none;
  }

  .legal-card {
    padding: 22px 18px;
  }

  .proposal-subtitle br {
    display: none;
  }

  .proposal-package {
    padding: 20px 14px 18px;
  }

  .proposal-pill {
    font-size: 0.9rem;
  }

  .proposal-item {
    grid-template-columns: 64px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 12px;
  }

  .proposal-icon {
    width: 58px;
    height: 58px;
  }

  .proposal-icon svg {
    width: 33px;
    height: 33px;
  }

  .portfolio-rail {
    min-height: 330px;
  }

  .portfolio-tile {
    height: 330px;
  }

  .portfolio-tile:hover,
  .portfolio-tile:focus-visible,
  .portfolio-tile.is-active {
    flex-basis: min(82vw, 310px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gravity-field {
    display: none;
  }

  .gravity-letter,
  [data-gravity-symbol] {
    transform: none;
  }
}

@media (pointer: coarse) {
  .gravity-field {
    display: none;
  }
}
