:root {
  --paper: #f3ecdf;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #1d1a16;
  --muted: #665e54;
  --line: #cfc2b0;
  --line-dark: #8a7d6d;
  --red: #bb4e11;
  --red-dark: #9d401c;
  --cream: #e9dece;
  --clay: #e8a77a;
  --apricot: #f0d8c6;
  --umber: #5c3426;
  --footer-bg: #241f1c;
  --warm-ink: #2b241e;
  --warm-muted: #574c43;
  --cream-text: #fff5e9;
  --focus: #1559b5;
  --success: #205b3f;
  --danger-bg: #f8e8e4;
  --max: 1440px;
  --radius-control: 10px;
  --radius-card: 16px;
  --radius-pill: 999px;
  --serif: "DM Sans", "Noto Sans SC", Arial, sans-serif;
  --sans: "DM Sans", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  padding-bottom: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: 150px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--surface-strong);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 18px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand span {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 24px);
  font-size: 17px;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav > a,
.nav-dropdown-trigger {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  text-decoration: none;
}

.desktop-nav > a[aria-current],
.nav-dropdown-trigger[aria-current] {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 0 7px;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown.is-open .nav-dropdown-trigger {
  border-color: var(--line-dark);
  background: var(--surface-strong);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  transition: transform 200ms ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger .nav-chevron,
.mobile-nav-dropdown.is-open .mobile-nav-trigger .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  z-index: 140;
  border: 1px solid rgba(29, 26, 22, 0.12);
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: 0 24px 58px rgba(29, 26, 22, 0.2);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease;
}

.nav-dropdown-panel[hidden] {
  display: none;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown-panel-projects {
  left: -18px;
  width: 520px;
}

.nav-dropdown-panel-blog {
  left: -18px;
  width: 460px;
}

.nav-dropdown-panel-areas {
  right: 0;
  width: 660px;
  transform-origin: top right;
}

.nav-menu-grid {
  display: grid;
  gap: 6px 14px;
}

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

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

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

.nav-menu-item,
.nav-menu-feature {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-radius: 10px;
  color: var(--ink);
  padding: 9px 12px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
}

.nav-menu-item:hover,
.nav-menu-item:focus-visible {
  background: rgba(29, 26, 22, 0.06);
}

.nav-menu-item[aria-current] {
  background: rgba(177, 57, 40, 0.1);
  color: var(--red-dark);
}

.nav-menu-feature {
  min-height: 54px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  color: var(--red-dark);
  font-weight: 800;
}

.nav-menu-feature:hover,
.nav-menu-feature:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button-primary:hover {
  background: var(--red-dark);
}

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

.button-dark:hover {
  background: var(--red-dark);
}

.button-light {
  background: var(--surface-strong);
  color: var(--ink);
  border-color: var(--ink);
}

.mobile-menu {
  display: none;
  position: static;
}

.mobile-menu summary {
  min-width: 78px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 150;
  width: 100vw;
  max-height: var(--mobile-menu-max-height, calc(100dvh - 72px));
  display: grid;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: var(--surface-strong);
  box-shadow: 0 22px 42px rgba(29, 26, 22, 0.2);
  padding: 12px max(20px, calc((100vw - var(--max)) / 2)) 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease;
}

.mobile-menu[open] .mobile-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-menu-panel > a,
.mobile-nav-trigger {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  padding: 8px 14px;
  font: inherit;
  font-size: 18px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu-panel > a:hover,
.mobile-menu-panel > a:focus-visible,
.mobile-nav-trigger:hover,
.mobile-nav-trigger:focus-visible {
  background: rgba(29, 26, 22, 0.06);
}

.mobile-menu-panel > a[aria-current],
.mobile-nav-trigger[aria-current] {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.mobile-nav-dropdown {
  border-bottom: 1px solid var(--line);
  padding-block: 4px;
}

.mobile-nav-trigger {
  gap: 8px;
}

.mobile-nav-dropdown.is-open .mobile-nav-trigger {
  border: 2px solid var(--line-dark);
  background: var(--surface-strong);
}

.mobile-nav-submenu {
  display: grid;
  padding: 6px 0 10px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.mobile-nav-submenu[hidden] {
  display: none;
}

.mobile-nav-dropdown.is-open .mobile-nav-submenu {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-submenu-link {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  color: var(--ink);
  padding: 9px 18px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.mobile-nav-submenu-link:hover,
.mobile-nav-submenu-link:focus-visible {
  background: rgba(29, 26, 22, 0.06);
}

.mobile-nav-submenu-link[aria-current] {
  background: rgba(177, 57, 40, 0.1);
  color: var(--red-dark);
}

.mobile-nav-submenu-feature {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  color: var(--red-dark);
  font-weight: 800;
}

body.nav-menu-open {
  overflow: hidden;
}

.nav-menu-open .mobile-actions {
  display: none !important;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.language-switch a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.language-switch a + a {
  border-left: 1px solid var(--line-dark);
}

.language-switch .is-current {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.language-short {
  display: none;
}

.hero {
  width: 100%;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 44%);
  grid-template-rows: 1fr;
  background: var(--umber);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--umber);
}

.hero-media > picture,
.hero-media > picture img,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media > picture img,
.hero-video {
  object-fit: cover;
  object-position: 55% 44%;
}

.hero-video {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-video.is-visible {
  opacity: 1;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-video-toggle {
  position: absolute;
  top: 4px;
  right: auto;
  bottom: auto;
  left: 4px;
  z-index: 3;
  width: 44px;
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
  padding: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-video-toggle:hover,
.hero-video-toggle:focus-visible,
.hero-video-toggle[aria-pressed="true"] {
  opacity: 1;
}

.hero-video-toggle:hover {
  transform: scale(1.04);
}

.hero-video-toggle img {
  width: 10px;
  height: 10px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(56%, 860px);
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #fff;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero-summary {
  max-width: 610px;
  margin: 26px 0 0;
  color: #fff;
  font-size: 21px;
  font-weight: 550;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
}

.hero-actions .button {
  min-width: 235px;
}

.hero-contact-links {
  display: grid;
  gap: 5px;
  font-size: 18px;
  font-weight: 750;
}

.hero-contact-links a {
  color: #fff;
}

.hero-project-link {
  margin-top: 22px;
  color: #fff;
  font-weight: 750;
}

.booking-panel {
  grid-column: 2;
  grid-row: 1;
  z-index: 4;
  align-self: center;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  margin: 28px 28px 28px 0;
  border-radius: 18px;
  padding: 34px clamp(28px, 3.2vw, 46px);
  box-shadow: 0 26px 70px rgba(18, 16, 13, 0.34);
}

.booking-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.booking-intro {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.field .optional {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.control {
  width: 100%;
  height: 54px;
  min-height: 54px;
  box-sizing: border-box;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-control);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 18px;
  line-height: 1.35;
}

select.control {
  padding-block: 0;
}

textarea.control {
  height: auto;
  min-height: 86px;
  resize: vertical;
}

.control[aria-invalid="true"] {
  border: 3px solid var(--red);
}

.date-trigger {
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.date-trigger:hover {
  background: var(--cream);
}

.date-field {
  position: relative;
}

.booking-calendar {
  position: absolute;
  top: auto;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 50;
  width: min(390px, calc(100vw - 40px));
  max-height: min(460px, calc(100dvh - 24px), var(--calendar-space-above, 460px));
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-top: 6px solid var(--red);
  border-radius: var(--radius-card);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: 0 24px 70px rgba(29, 26, 22, 0.34);
}

.calendar-header {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.calendar-header h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
}

.calendar-nav:first-child {
  grid-column: 1;
  grid-row: 1;
}

.calendar-nav:last-child {
  grid-column: 3;
  grid-row: 1;
}

.calendar-nav {
  min-height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--ink);
  padding: 9px 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.calendar-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.calendar-body {
  min-height: 0;
  padding: 8px 12px 12px;
  overflow-y: auto;
}

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

.calendar-weekdays span {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.calendar-grid button,
.calendar-grid .calendar-blank {
  min-width: 0;
  min-height: 44px;
}

.calendar-grid button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.calendar-grid button:hover:not(:disabled),
.calendar-grid button:focus-visible {
  background: var(--cream);
}

.calendar-grid button[aria-selected="true"] {
  background: var(--red);
  color: #fff;
}

.calendar-grid button.is-today:not([aria-selected="true"]) {
  border: 3px solid var(--red-dark);
}

.calendar-grid button:disabled {
  background: #eee8df;
  color: #91877b;
  cursor: not-allowed;
}

.address-wrap {
  position: relative;
}

.suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--surface-strong);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-control);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(29, 26, 22, 0.16);
}

.suggestions button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-top: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 17px;
  text-align: left;
  cursor: pointer;
}

.suggestions li:first-child button {
  border-top: 0;
}

.suggestions button:hover,
.suggestions button:focus-visible {
  background: var(--cream);
}

.form-message {
  margin: 0;
  border-left: 5px solid var(--red);
  border-radius: var(--radius-control);
  background: var(--danger-bg);
  padding: 13px 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.field-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
}

#phone + .field-hint {
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.booking-form .button {
  width: 100%;
}

.booking-form .button[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.form-consent {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.booking-success {
  border-top: 6px solid var(--success);
  border-radius: var(--radius-card);
  background: #eff6f1;
  padding: 28px;
}

.booking-success h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
}

.booking-success p {
  margin: 12px 0 0;
}

.booking-success .button {
  margin-top: 22px;
}

.proof-strip {
  width: 100%;
  background: var(--clay);
  color: var(--warm-ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-left: 1px solid rgba(42, 29, 23, 0.24);
  padding: 20px;
  text-align: center;
  text-decoration: none;
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.proof-item span {
  color: var(--warm-ink);
  font-size: 16px;
}

.section {
  padding-block: clamp(70px, 8vw, 118px);
}

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

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 4px 0 0;
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  display: block;
  min-width: 0;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.project-card:hover {
  border-color: var(--line-dark);
  box-shadow: 0 14px 34px rgba(29, 26, 22, 0.12);
  transform: translateY(-3px);
}

.project-card img {
  width: 100%;
  height: clamp(220px, 20vw, 288px);
  object-fit: cover;
}

.project-image-shingle {
  object-position: 50% 45%;
}

.project-image-repair {
  object-position: 50% 55%;
}

.project-image-belmont {
  object-position: 58% 54%;
}

.project-image-san-carlos {
  object-position: 50% 54%;
}

.project-copy {
  padding: 22px;
}

.project-place {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.08;
}

.project-copy > p:not(.project-place) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.project-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.services-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: start;
  gap: clamp(48px, 6vw, 88px);
}

.service-group > h3,
.process-group > h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.services-list {
  border-top: 1px solid var(--line-dark);
}

.service-row {
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
}

.service-row h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
}

.service-row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.process-list {
  margin: 0;
  border-top: 1px solid var(--line-dark);
  padding: 0;
  list-style: none;
}

.process-step {
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
}

.process-step span {
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h4 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.why-amex {
  background: var(--apricot);
  color: var(--warm-ink);
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 46px;
}

.why-heading h2 {
  max-width: 800px;
  margin: 0;
  color: var(--warm-ink);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.why-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--warm-muted);
  font-size: 19px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(42, 29, 23, 0.26);
}

.why-item {
  min-width: 0;
  border-left: 1px solid rgba(42, 29, 23, 0.22);
  padding: 32px 28px 34px;
}

.why-item:first-child {
  border-left: 0;
}

.why-number {
  display: block;
  margin-bottom: 26px;
  color: var(--red-dark);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.why-item h3 {
  margin: 0;
  color: var(--warm-ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.12;
}

.why-item > p:not(.why-links) {
  margin: 14px 0 0;
  color: var(--warm-muted);
  font-size: 17px;
  line-height: 1.55;
}

.why-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 14px 0 0;
}

.why-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 750;
  text-underline-offset: 0.22em;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.resource-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.resource-card::after {
  content: "→";
  position: absolute;
  top: 27px;
  right: 30px;
  color: var(--red-dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.62;
  transform: translateX(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible,
.resource-card:active {
  z-index: 1;
  background: var(--surface-strong);
  box-shadow: inset 0 0 0 3px var(--red);
}

.resource-card:hover::after,
.resource-card:focus-visible::after,
.resource-card:active::after {
  opacity: 1;
  transform: translateX(5px);
}

.resource-card:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -6px;
}

.resource-card + .resource-card {
  border-left: 1px solid var(--line-dark);
}

.resource-card span {
  color: var(--red-dark);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-card h2 {
  max-width: 560px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.08;
}

.resource-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.closing-contact {
  background: var(--red);
  color: #fff;
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.closing-contact h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.closing-contact p {
  margin: 16px 0 0;
}

.closing-links {
  display: grid;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--cream-text);
  padding-block: 58px 112px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(36px, 4vw, 64px);
}

.footer-brand .brand {
  color: var(--cream-text);
}

.footer-brand p {
  margin: 18px 0 0;
}

.footer-group h2 {
  margin: 0 0 14px;
  color: var(--cream-text);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(20px, 3vw, 40px);
  row-gap: 5px;
}

.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 16px;
}

.footer-bottom-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(237, 230, 218, 0.3);
  border-radius: 999px;
  color: #ede6da;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  gap: 8px;
}

.footer-social img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: #e4a793;
  color: #fff;
}

.mobile-actions {
  display: none;
}

.calendar-open .mobile-actions {
  display: none !important;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .desktop-nav {
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 47%);
  }

  .hero-copy {
    width: 52%;
    padding: 46px;
  }

  .booking-panel {
    margin: 20px 20px 20px 0;
    padding-inline: 28px;
  }

  .hero h1 {
    font-size: clamp(47px, 5vw, 62px);
  }
}

@media (min-width: 1041px) {
  .site-header .header-inner {
    width: 100%;
    max-width: none;
    padding-inline: 24px;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px clamp(28px, 6vw, 56px);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 116px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-header-actions {
    gap: 8px;
  }

  .language-switch a {
    min-height: 52px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(570px, auto) auto;
    min-height: 0;
    background: var(--umber);
    border-inline: 0;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 1360px;
  }

  .hero-copy {
    min-height: 570px;
  }

  .hero-media > picture img {
    object-position: 58% 48%;
  }

  .hero-copy {
    width: 100%;
    padding: 44px 30px;
  }

  .hero h1 {
    font-size: clamp(46px, 10vw, 66px);
  }

  .hero-summary {
    font-size: 20px;
  }

  .booking-panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0 30px 40px;
    border-radius: 18px;
    padding: 44px 30px 52px;
    box-shadow: 0 26px 70px rgba(18, 16, 13, 0.34);
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(3) {
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid rgba(42, 29, 23, 0.24);
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .project-card img {
    height: clamp(230px, 62vw, 320px);
  }

  .services-process-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

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

  .why-item:nth-child(odd) {
    border-left: 0;
  }

  .why-item:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .closing-inner {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: var(--umber);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 30px rgba(29, 26, 22, 0.22);
  }

  .mobile-actions .button {
    min-height: 56px;
  }

  .mobile-actions .mobile-email {
    grid-column: 1 / -1;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 150px;
  }

  .footer-bottom-actions {
    justify-items: start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  [id] {
    scroll-margin-top: 90px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    column-gap: 18px;
  }

  .booking-calendar {
    position: fixed;
    top: var(--calendar-mobile-top, 77px);
    bottom: auto;
    left: 50%;
    width: min(390px, calc(100vw - 16px));
    max-height: min(460px, var(--calendar-mobile-max-height, calc(100dvh - 85px)));
    transform: translateX(-50%);
  }

  .calendar-header {
    padding: 4px 6px;
  }

  .calendar-body {
    padding: 4px 6px 6px;
  }

  .calendar-weekdays span {
    min-height: 28px;
  }

  .header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .mobile-header-actions {
    gap: 4px;
  }

  .language-switch a {
    padding-inline: 9px;
  }

  .language-full {
    display: none;
  }

  .language-short {
    display: inline;
  }

  .mobile-menu summary {
    min-width: 74px;
    padding-inline: 10px;
  }

  .brand span {
    display: none;
  }

  .hero-media,
  .hero-copy {
    min-height: 360px;
  }

  .hero {
    display: block;
    background: var(--surface);
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 24px 22px 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 9.8vw, 43px);
    line-height: 1;
  }

  .hero-summary {
    display: none;
  }

  .hero-actions {
    display: grid;
    gap: 2px;
    margin-top: 14px;
  }

  .hero-actions .button {
    width: fit-content;
    min-width: 0;
    min-height: 52px;
    justify-content: flex-start;
    border: 0;
    background: transparent;
    padding: 4px 0;
    font-size: 18px;
    text-decoration: underline;
    text-transform: none;
  }

  .hero-contact-links {
    width: 100%;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .hero-project-link {
    display: none;
  }

  .booking-panel {
    margin: 0;
    border-radius: 0;
    padding: 40px 20px 48px;
    box-shadow: none;
  }

  .booking-panel h2 {
    font-size: 38px;
  }

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

  .proof-item {
    min-height: 126px;
    padding: 16px 10px;
  }

  .proof-item strong {
    font-size: 32px;
  }

  .proof-item span {
    font-size: 16px;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .project-card h3,
  .service-row h4,
  .process-step h4 {
    font-size: 28px;
  }

  .service-row {
    padding: 20px 0;
  }

  .process-step {
    padding: 20px 0;
  }

  .service-group > h3,
  .process-group > h3 {
    font-size: 34px;
  }

  .services-process-layout {
    gap: 38px;
  }

  .why-heading {
    margin-bottom: 34px;
  }

  .why-heading h2 {
    font-size: 42px;
  }

  .why-heading p {
    font-size: 18px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item,
  .why-item:nth-child(odd) {
    border-left: 0;
    padding: 28px 0;
  }

  .why-item + .why-item {
    border-top: 1px solid rgba(42, 29, 23, 0.24);
  }

  .why-number {
    margin-bottom: 16px;
  }

  .why-item h3 {
    font-size: 28px;
  }

  .why-item > p:not(.why-links) {
    font-size: 18px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 220px;
    padding: 28px 22px;
  }

  .resource-card + .resource-card {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .resource-card h3 {
    font-size: 34px;
  }

  .closing-contact h2 {
    font-size: 44px;
  }

  .closing-links {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 600px) {
  .hero-video,
  .hero-video-toggle {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .booking-calendar {
    width: calc(100vw - 16px);
  }

  .calendar-body {
    padding-inline: 2px;
  }

  .header-inner {
    gap: 8px;
  }

  .site-header .brand span {
    display: none;
  }
}

@media (min-width: 370px) and (max-width: 620px) {
  .hero-media,
  .hero-copy {
    min-height: 330px;
  }
}

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