@import url("https://fonts.googleapis.com/css2?family=Allura&family=Lora:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700;800&display=swap");

:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #fbf8f4;
  --ink: #303133;
  --muted: #777777;
  --line: #e4dbd2;
  --teal: #c8ab89;
  --teal-dark: #846b51;
  --coral: #ad8f7b;
  --amber: #c8ab89;
  --green: #66765f;
  --danger: #a35a4f;
  --shadow: 0 18px 40px rgba(48, 49, 51, 0.08);
  --radius: 8px;
  --font-body: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Lora", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(247,244,239,0.92) 34rem),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.58rem 0.82rem;
  color: var(--ink);
  background: var(--teal);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  line-height: 1.1;
  transition: background 0.16s ease, border 0.16s ease, transform 0.16s ease;
}

button:hover,
.button:hover {
  color: #fff;
  background: var(--teal-dark);
}

button:active,
.button:active {
  transform: translateY(1px);
}

button.secondary,
.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

button.secondary:hover,
.button.secondary:hover {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: #c7c0b6;
}

button.ghost,
.button.ghost {
  color: var(--teal-dark);
  background: transparent;
  border-color: transparent;
}

button.ghost:hover,
.button.ghost:hover {
  color: var(--teal-dark);
  background: rgba(200, 171, 137, 0.14);
}

button.danger {
  color: #fff;
  background: var(--danger);
}

button.danger:hover {
  background: #853634;
}

a {
  color: var(--teal-dark);
}

label {
  display: grid;
  gap: 0.32rem;
  color: var(--muted);
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.62rem 0.72rem;
  color: var(--ink);
  background: #fff;
  outline: none;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(200, 171, 137, 0.22);
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 1.25rem;
  color: #f9fbfb;
  background: var(--ink);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand strong {
  display: block;
  font-size: 1.08rem;
}

.brand span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(249,251,251,0.72);
  font-size: 0.86rem;
}

.nav {
  display: grid;
  gap: 0.28rem;
}

.nav a {
  border-radius: 7px;
  padding: 0.72rem 0.78rem;
  color: rgba(249,251,251,0.82);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav a.active {
  background: var(--bg);
  color: var(--ink);
}

.sidebar-footer {
  margin-top: auto;
  display: grid;
  gap: 0.6rem;
  color: rgba(249,251,251,0.68);
  font-size: 0.84rem;
}

.main {
  min-width: 0;
}

.topbar {
  min-height: 78px;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
}

.topbar h1 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.2;
}

.topbar p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.content {
  width: min(1480px, 100%);
  padding: 1.35rem 1.6rem 3rem;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.toolbar-left,
.toolbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-header {
  padding: 1rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.card-header h2,
.card-header h3 {
  margin: 0;
  font-size: 1.02rem;
}

.card-body {
  padding: 1rem;
}

.metric {
  padding: 1rem;
}

.metric-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.metric-link:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.8rem;
  line-height: 1;
}

.facility-card,
.package-column {
  overflow: hidden;
}

.facility-header {
  align-items: center;
}

.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--surface-soft);
}

.package-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.package-card h3 {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th,
td {
  padding: 0.78rem 0.82rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.session-child-row td {
  background: #fbfaf7;
}

.session-group-row td {
  background: #fffdf8;
}

.session-list-title {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

button.session-toggle {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
  flex: 0 0 auto;
  font-weight: 800;
}

button.session-toggle:hover {
  background: var(--surface-soft);
}

.session-toggle-spacer {
  width: 28px;
  flex: 0 0 auto;
}

.session-child-marker {
  width: 18px;
  height: 24px;
  border-left: 2px solid #c9d8d6;
  border-bottom: 2px solid #c9d8d6;
  border-radius: 0 0 0 6px;
  flex: 0 0 auto;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.86rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: rgba(200, 171, 137, 0.16);
  white-space: nowrap;
}

.pill.amber {
  color: #684710;
  background: rgba(197,139,44,0.18);
}

.pill.coral {
  color: #7a3329;
  background: rgba(189,91,74,0.16);
}

.pill.green {
  color: #285331;
  background: rgba(63,122,79,0.16);
}

.pill.gray {
  color: #505860;
  background: rgba(101,112,120,0.13);
}

.empty {
  padding: 2rem;
  border: 1px dashed #c8c0b7;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255,255,255,0.5);
  text-align: center;
}

.session-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(184px, 1fr));
  gap: 0.85rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e2ddd4;
}

.photo-preview-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
}

.photo-preview-button:hover {
  background: transparent;
}

.photo-meta {
  position: relative;
  z-index: 2;
  padding: 0.62rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  background: var(--surface);
}

.watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.72;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0 9px, transparent 10px),
    radial-gradient(circle at 50% 50%, transparent 0 25px, rgba(255,255,255,0.14) 26px 27px, transparent 28px),
    linear-gradient(45deg, transparent 47%, rgba(255,255,255,0.11) 48%, rgba(255,255,255,0.11) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(0,0,0,0.07) 48%, rgba(0,0,0,0.07) 52%, transparent 53%);
  background-size: 138px 138px;
  background-position: center;
  mix-blend-mode: screen;
  pointer-events: none;
}

.watermark::after {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 1;
  opacity: 0.48;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.16) 49%, rgba(255,255,255,0.16) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
  background-size: 148px 148px;
  transform: rotate(-18deg);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.selectable {
  cursor: pointer;
}

.selectable input {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 22px;
  height: 22px;
  accent-color: var(--teal);
  z-index: 3;
}

.photo-card.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(200, 171, 137, 0.24);
}

.client-page {
  min-height: 100vh;
}

.client-header {
  padding: 1.25rem 1.4rem;
  color: #fff;
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.client-header strong {
  display: block;
  font-size: 1.02rem;
}

.client-header span {
  color: rgba(255,255,255,0.72);
}

.client-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.client-tabs {
  position: sticky;
  top: 0;
  z-index: 8;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem max(1rem, calc((100% - 1180px) / 2 + 1rem));
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
}

.client-tab,
.folder-tab {
  min-width: max-content;
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.client-tab.active,
.folder-tab.active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.client-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
}

.client-hero {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(251,248,244,0.86)),
    var(--surface);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.client-hero h1 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.client-hero p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
}

.client-hero-action {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.client-hero-action strong {
  font-size: 1.08rem;
}

.client-metrics {
  margin-bottom: 1rem;
}

.metric small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.client-timeline-card {
  margin-bottom: 1rem;
}

.client-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.55rem;
}

.timeline-step {
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: var(--surface-soft);
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.timeline-step span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.timeline-step strong {
  font-size: 0.88rem;
}

.timeline-step.done,
.timeline-step.active {
  border-color: rgba(102,118,95,0.35);
  background: rgba(102,118,95,0.08);
}

.timeline-step.done span,
.timeline-step.active span {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.detail-list,
.order-preview {
  display: grid;
  gap: 0.65rem;
}

.detail-list > div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
  display: grid;
  gap: 0.2rem;
}

.detail-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.session-mini-list {
  display: grid;
  gap: 0.65rem;
}

.session-mini {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.session-mini.active {
  border-color: var(--teal);
  background: rgba(200,171,137,0.12);
}

.session-mini strong,
.session-mini span {
  display: block;
}

.session-mini span:not(.pill) {
  color: var(--muted);
  font-size: 0.86rem;
}

.before-actions {
  margin-top: 1rem;
}

.prep-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.prep-guide article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--surface-soft);
}

.prep-guide h3 {
  margin: 0 0 0.45rem;
}

.prep-guide p {
  margin: 0;
  color: var(--muted);
}

.consent-form {
  display: grid;
  gap: 0.75rem;
}

.check-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  color: var(--ink);
  background: var(--surface-soft);
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
}

.check-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.08rem;
  accent-color: var(--green);
}

.check-option.select-all {
  background: rgba(102,118,95,0.09);
}

.consent-admin-list {
  display: grid;
  gap: 0.55rem;
}

.consent-admin-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.consent-admin-list div:last-child {
  border-bottom: 0;
}

.consent-admin-list span {
  color: var(--muted);
}

.client-gallery-controls {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}

.client-folder-tabs {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.05rem;
}

.client-gallery-controls label {
  min-width: min(280px, 100%);
}

.client-gallery-photo {
  min-height: 100%;
}

.photo-badges {
  position: absolute;
  z-index: 3;
  top: 0.6rem;
  right: 0.6rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.client-photo-meta {
  align-items: stretch;
}

.photo-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.photo-actions button {
  min-height: 34px;
  padding: 0.44rem 0.62rem;
  font-size: 0.82rem;
}

.photo-remove-hover {
  opacity: 0;
  transform: translateY(2px);
}

.client-gallery-photo:hover .photo-remove-hover,
.client-gallery-photo:focus-within .photo-remove-hover {
  opacity: 1;
  transform: translateY(0);
}

.order-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.order-thumbs figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.order-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.order-thumbs figcaption {
  padding: 0.42rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.summary-bar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 -14px 30px rgba(30,35,38,0.08);
}

.summary-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.client-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-photo {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-photo:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  object-fit: cover;
  background: #e2ddd4;
}

.cart-photo-main {
  min-width: 0;
  display: grid;
  gap: 0.75rem;
}

.cart-photo-head,
.summary-row,
.mini-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.print-lines {
  display: grid;
  gap: 0.6rem;
}

.print-line {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 174px 86px 86px 38px;
  gap: 0.55rem;
  align-items: end;
}

.quantity-control {
  display: grid;
  grid-template-columns: 38px minmax(56px, 1fr) 38px;
}

.quantity-control input,
.quantity-control button {
  border-radius: 0;
}

.quantity-control button:first-child {
  border-radius: 7px 0 0 7px;
}

.quantity-control button:last-child {
  border-radius: 0 7px 7px 0;
}

.line-price {
  display: grid;
  gap: 0.25rem;
  min-height: 58px;
  align-content: center;
}

.line-price span,
.summary-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.icon-button {
  width: 38px;
  min-width: 38px;
  padding: 0;
}

.add-print {
  width: 100%;
}

.cart-summary {
  position: sticky;
  top: 1rem;
}

.cart-summary .card-body {
  display: grid;
  gap: 0.85rem;
}

.summary-row {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}

.summary-row.total {
  border-bottom: 0;
  padding-top: 0.25rem;
  font-size: 1.06rem;
}

.mini-lines {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.summary-numbers {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.landing-page {
  --landing-heading: #7e5750;
  --landing-border: #796b67;
  --landing-background: #f9f9f8;
  min-height: 100vh;
  color: var(--ink);
  background: var(--landing-background);
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: var(--landing-heading);
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 3vw, 2.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(48, 49, 51, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.landing-logo {
  color: var(--landing-heading);
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
  text-decoration: none;
}

.landing-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
}

.landing-nav nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}

.landing-nav nav a:hover {
  color: var(--teal-dark);
}

.landing-hero {
  position: relative;
  height: clamp(520px, 78svh, 720px);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
}

.landing-hero-photo,
.landing-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero-photo {
  object-fit: cover;
  object-position: center 36%;
  z-index: -2;
  filter: saturate(0.98) contrast(1.03);
}

.landing-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 27, 29, 0.82), rgba(18, 27, 29, 0.42) 48%, rgba(18, 27, 29, 0.12)),
    linear-gradient(0deg, rgba(18, 27, 29, 0.58), rgba(18, 27, 29, 0.08) 44%);
}

.landing-hero-content {
  width: min(920px, 100%);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
}

.landing-kicker {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-kicker.dark {
  color: var(--teal-dark);
}

.landing-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ddd5d3;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.landing-lead {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.landing-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.landing-primary {
  color: var(--ink);
  background: var(--teal);
}

.landing-primary:hover {
  color: #fff;
  background: var(--teal-dark);
}

.landing-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.landing-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.landing-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.landing-section-head {
  max-width: 860px;
  margin-bottom: 1.35rem;
}

.landing-section-head.narrow {
  max-width: 720px;
}

.landing-package-band {
  width: 100%;
  background: #ccc7bf;
}

.landing-offer-head {
  max-width: none;
  margin-bottom: 2rem;
  text-align: center;
}

.landing-section h2,
.landing-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.landing-section-head p:not(.landing-kicker),
.landing-cta p {
  color: var(--muted);
  font-size: 1.02rem;
}

.landing-service-grid,
.landing-package-grid,
.landing-client-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.landing-service,
.landing-package,
.landing-client-steps article,
.landing-process-list article {
  border: 1px solid rgba(48, 49, 51, 0.12);
  border-radius: var(--radius);
  background: #fff;
}

.landing-service {
  min-height: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  text-decoration: none;
  display: block;
}

.landing-service-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
}

.landing-service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.landing-service-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 18, 0.08), rgba(24, 20, 18, 0.52));
}

.landing-service figcaption {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1rem;
  color: #fff;
  display: grid;
  place-content: center;
  gap: 0.55rem;
  text-align: center;
}

.landing-service:hover .landing-service-photo img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.025);
}

.landing-service figcaption small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-service h3,
.landing-package h3,
.landing-client-steps h3,
.landing-process-list h3 {
  margin: 0;
  font-size: 1.08rem;
}

.landing-service h3 {
  max-width: 280px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.landing-package p,
.landing-client-steps p,
.landing-process-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.landing-gallery-band {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--bg);
}

.landing-gallery-section {
  width: min(1380px, calc(100% - 2rem));
  border-top: 1px solid rgba(48, 49, 51, 0.1);
}

.landing-gallery-count {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-gallery-categories {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.landing-gallery-categories a {
  min-width: max-content;
  border: 1px solid var(--landing-border);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  color: var(--landing-heading);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-decoration: none;
}

.landing-gallery-categories a:hover,
.landing-gallery-categories a:focus-visible {
  color: #fff;
  background: var(--landing-heading);
}

.landing-portfolio-groups {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
}

.landing-portfolio-group {
  scroll-margin-top: 96px;
}

.landing-portfolio-group-head {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--landing-border);
  padding-bottom: 0.8rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.landing-portfolio-group-head h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.landing-portfolio-group-head span {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.landing-gallery-grid {
  columns: 4 230px;
  column-gap: 1rem;
}

.landing-gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
}

.landing-gallery-item button {
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #eee8df;
  box-shadow: none;
  display: block;
  cursor: zoom-in;
}

.landing-gallery-item button:hover {
  background: #eee8df;
}

.landing-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.landing-gallery-item button:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.landing-gallery-empty {
  min-height: 220px;
  border: 1px dashed rgba(48, 49, 51, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.gallery-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 1rem;
  background: rgba(18, 18, 22, 0.86);
  display: grid;
  place-items: center;
}

.gallery-lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: 94vh;
  display: grid;
  place-items: center;
}

.gallery-lightbox-photo {
  margin: 0;
  max-width: 100%;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.gallery-lightbox-photo img {
  max-width: min(100%, 1080px);
  max-height: 84vh;
  display: block;
  border-radius: var(--radius);
  object-fit: contain;
  background: #111;
}

.gallery-lightbox-photo figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 1.6rem;
  line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.gallery-lightbox-close {
  top: 0;
  right: 0;
}

.gallery-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 0;
}

.gallery-lightbox-next {
  right: 0;
}

.landing-photo-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 0.85rem;
}

.landing-photo-tile {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d7ddd8;
}

.landing-photo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.landing-photo-tile.tile-0 {
  grid-row: span 2;
}

.landing-photo-tile.tile-3 {
  grid-column: span 2;
}

.landing-client-steps {
  margin-top: 1rem;
}

.landing-client-steps article {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
}

.landing-client-steps span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.landing-package {
  min-height: 390px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.landing-package h3 {
  color: var(--landing-heading);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 500;
}

.landing-package-price::before {
  width: 72px;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--landing-heading);
  content: "";
  display: block;
}

.landing-package-price strong {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.landing-package-details {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.landing-package-details p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.landing-package .landing-package-action {
  min-width: 138px;
  border: 1px solid var(--landing-border);
  border-radius: var(--radius);
  padding: 0.7rem 1.2rem;
  color: var(--landing-heading);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
}

.landing-package .landing-package-action:hover {
  color: #fff;
  background: var(--landing-heading);
}

.landing-package-notes {
  margin-top: 1.25rem;
  border: 1px solid var(--landing-border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.68);
}

.landing-package-notes h3 {
  margin: 0 0 1rem;
  text-align: center;
}

.landing-package-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.landing-package-notes li {
  position: relative;
  padding-left: 1.2rem;
}

.landing-package-notes li::before {
  position: absolute;
  left: 0;
  color: var(--landing-heading);
  content: "•";
}

.landing-process {
  border-top: 1px solid rgba(48, 49, 51, 0.1);
}

.landing-process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}

.landing-process-list article {
  padding: 1.25rem;
}

.landing-process-number {
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--landing-border);
  border-radius: 999px;
  color: var(--landing-heading);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  display: grid;
  place-items: center;
}

.landing-booking-band {
  width: 100%;
  background: #ccc7bf;
}

.landing-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-cta p {
  max-width: 620px;
  color: var(--muted);
}

.landing-cta .landing-primary {
  min-height: 54px;
  padding-inline: 1.5rem;
  color: #fff;
  background: var(--landing-heading);
}

.landing-cta .landing-primary:hover {
  background: var(--landing-border);
}

.landing-choice {
  width: min(1180px, calc(100% - 2rem));
  margin: -2.6rem auto 0;
  position: relative;
  z-index: 2;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.landing-choice > h2 {
  margin: 0 0 1.1rem;
  color: var(--landing-heading);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.landing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.landing-choice-grid a {
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--ink);
  background: var(--surface-soft);
  text-decoration: none;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.landing-choice-grid a:hover {
  border-color: var(--teal);
}

.landing-choice-grid span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.landing-choice-grid small {
  max-width: 460px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.landing-booking-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  display: grid;
}

.landing-booking-cta .button {
  min-height: 82px;
  border: 1px solid var(--landing-border);
  padding: 1rem 2rem;
  color: #fff;
  background: var(--landing-heading);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
}

.landing-booking-cta .button:hover {
  color: #fff;
  background: var(--landing-border);
}

.landing-about {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.landing-about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.landing-about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
}

.landing-about-copy p:not(.landing-kicker) {
  color: var(--muted);
  font-size: 1rem;
}

.landing-nav,
.landing-service,
.landing-package,
.landing-client-steps article,
.landing-process-list article,
.landing-gallery-section,
.landing-gallery-empty,
.landing-process,
.landing-choice,
.landing-choice-grid a {
  border-color: var(--landing-border);
}

.landing-contact-links,
.booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.landing-contact-links {
  margin-top: 1rem;
}

.landing-contact-links a,
.booking-contact a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.landing-social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.landing-social-links a {
  min-height: 42px;
  border: 1px solid var(--landing-border, currentColor);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  color: var(--landing-heading, inherit);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-social-links a:hover {
  background: rgba(126, 87, 80, 0.08);
}

.landing-social-links svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.landing-social-links .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.landing-social-links a[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.booking-contact {
  color: rgba(255, 255, 255, 0.86);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.login-card {
  width: min(460px, 100%);
}

.booking-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--bg);
}

.booking-aside {
  padding: 2rem;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(48,49,51,0.96), rgba(132,107,81,0.84)),
    var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.booking-aside h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 0.98;
}

.booking-aside p {
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
}

.booking-type-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.booking-type-switch .button.active {
  color: var(--ink);
  border-color: #ccc7bf;
  background: #ccc7bf;
}

.booking-aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.booking-aside .landing-social-links a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.booking-aside .landing-social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.booking-form-wrap {
  padding: 2rem;
  display: grid;
  align-items: center;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.inquiry-consent {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
}

.inquiry-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.1rem;
}

.inquiry-submit {
  display: grid;
  gap: 0.7rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

.form-status.success {
  color: #285331;
}

.form-status.error {
  color: #8b2f24;
}

.calendar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

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

.calendar-cell {
  min-height: 118px;
  padding: 0.55rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.calendar-cell:nth-child(7n) {
  border-right: 0;
}

.calendar-cell.outside {
  color: #9a958e;
  background: #f8f6f2;
}

.calendar-day {
  font-weight: 800;
  font-size: 0.82rem;
}

.calendar-event {
  display: block;
  margin-top: 0.42rem;
  border-left: 3px solid var(--coral);
  padding: 0.28rem 0.36rem;
  color: var(--ink);
  background: rgba(189,91,74,0.11);
  text-decoration: none;
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  max-width: min(420px, calc(100vw - 2rem));
  border: 1px solid rgba(36,106,115,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--teal-dark);
  background: #f5fffc;
  box-shadow: var(--shadow);
}

.split-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(18, 18, 22, 0.42);
}

.modal-panel {
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(18, 18, 22, 0.25);
  padding: 1.2rem;
}

.modal-panel h2 {
  margin-bottom: 0.45rem;
}

.modal-impact {
  margin: 0.8rem 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.modal-form {
  display: grid;
  gap: 0.8rem;
}

.modal-actions {
  justify-content: flex-end;
}

.form-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 700;
}

.lightbox-backdrop {
  background: rgba(18, 18, 22, 0.72);
}

.lightbox-panel {
  width: min(1120px, 96vw);
  max-height: 94vh;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.lightbox-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #161719;
}

.lightbox-photo img {
  display: block;
  width: 100%;
  max-height: min(72vh, 780px);
  object-fit: contain;
  background: #161719;
}

.lightbox-actions {
  justify-content: flex-end;
}

.kbd {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.08rem 0.35rem;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

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

  .session-detail,
  .booking-page,
  .client-hero,
  .client-cart-layout,
  .landing-about,
  .landing-package-grid,
  .landing-client-steps,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .landing-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-timeline,
  .prep-guide {
    grid-template-columns: 1fr;
  }

  .landing-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .landing-photo-tile.tile-0,
  .landing-photo-tile.tile-3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .landing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .topbar,
  .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-header,
  .client-header-actions,
  .client-gallery-controls,
  .session-mini {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-header-actions,
  .client-gallery-controls {
    width: 100%;
  }

  .client-tabs {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-grid,
  .nav {
    grid-template-columns: 1fr;
  }

  .cart-photo,
  .print-line {
    grid-template-columns: 1fr;
  }

  .cart-photo-head,
  .client-photo-meta,
  .summary-row,
  .mini-lines div {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-remove-hover {
    opacity: 1;
    transform: none;
  }

  .booking-aside,
  .booking-form-wrap {
    padding: 1.25rem;
  }

  .landing-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-nav nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .landing-hero {
    height: clamp(500px, 76svh, 620px);
  }

  .landing-hero-shade {
    background: rgba(18, 27, 29, 0.62);
  }

  .landing-hero-content {
    padding: 1.25rem;
  }

  .landing-actions,
  .landing-actions .button,
  .landing-cta .button {
    width: 100%;
  }

  .landing-choice {
    margin-top: 1rem;
  }

  .landing-portfolio-group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-choice-grid {
    grid-template-columns: 1fr;
  }

  .landing-service-grid {
    grid-template-columns: 1fr;
  }

  .landing-package {
    min-height: 0;
  }

  .landing-package-notes ul {
    grid-template-columns: 1fr;
  }

  .landing-photo-strip {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-lightbox-backdrop {
    padding: 0.7rem;
  }

  .gallery-lightbox-photo img {
    max-height: 78vh;
  }

  .gallery-lightbox-close,
  .gallery-lightbox-arrow {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .gallery-lightbox-prev {
    left: 0.25rem;
  }

  .gallery-lightbox-next {
    right: 0.25rem;
  }

  .calendar-cell {
    min-height: 92px;
    padding: 0.35rem;
  }

  .calendar-event {
    font-size: 0.72rem;
  }
}
