/* Global reset
   ========================================================================== */

* {
  box-sizing: border-box;
}

/* Design tokens
   ========================================================================== */

:root {
  --ink: #090909;
  --paper: #f5f4ef;
  --white: #fff;
  --signal: #ff4081;
  --muted: #777;
  --line: #252525;
}

/* Document and base elements
   ========================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(9, 9, 9, .043) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, .043) 1px, transparent 1px);
  background-size: 32px 32px;
  background-attachment: fixed;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.5;
}

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

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

button, input, select, textarea {
  border-radius: 0;
  font: inherit;
}

/* Header and navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 82px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid #333;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px clamp(18px, 4vw, 64px);
}

.brand-mark {
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid #333;
}

.brand strong, .brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand small {
  color: #aaa;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}

.site-nav a {
  display: grid;
  place-items: center;
  padding: 0 19px;
  border-left: 1px solid #333;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--ink);
  background: var(--signal);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--signal);
}

.nav-toggle {
  display: none;
}

/* Hero
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  min-height: calc(100vh - 82px);
  overflow: hidden;
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-area: 1/1;
  padding: clamp(48px, 8vw, 130px) clamp(24px, 7vw, 110px);
}

.hero-media {
  grid-area: 1/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  background: #fff;
}

.hero-overlay, .hero-scene {
  display: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.045em;
}

.brand strong,
.trust-strip strong,
.price-card strong {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 104px);
  text-transform: uppercase;
}

h2 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.5vw, 64px);
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
}

.hero-copy {
  max-width: 680px;
  color: #c9c9c4;
  font-size: clamp(17px, 2vw, 22px);
}

/* Shared controls
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--signal);
  color: var(--ink);
  background: var(--signal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover, .button:focus-visible {
  color: #fff;
  background: transparent;
}

.button svg, .location-details svg, .map-open-link svg {
  width: 18px;
}

/* Trust and pricing
   ========================================================================== */

.trust-strip,.price-section,.section,/* Footer
   ========================================================================== */

.site-footer {
  width: min(100%, 1600px);
  margin-inline: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: solid var(--ink);
  border-width: 0 1px 1px 0;
}

.trust-strip>div {
  min-height: 180px;
  padding: clamp(20px, 3vw, 42px);
  border: solid var(--ink);
  border-width: 1px 0 0 1px;
}

.trust-strip strong {
  margin-bottom: 36px;
  font-size: 18px;
  text-transform: uppercase;
}

.trust-strip span, .section-heading>p:last-child, .service-card p, .policy-card p, .process-list p {
  color: #595954;
}

.price-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--signal);
  border: 1px solid var(--ink);
}

.price-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: clamp(28px, 5vw, 72px);
}

.price-card+.price-card {
  border-left: 1px solid var(--ink);
}

.price-icon{
    display: flex;
}
.price-icon, .service-icon, .policy-icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  color: #fff;
  background: var(--ink);
}

.price-card p {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-card strong {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

/* Shared section structure
   ========================================================================== */

.section {
  padding: clamp(80px, 11vw, 170px) clamp(24px, 7vw, 110px);
  border-inline: 1px solid var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: clamp(54px, 8vw, 100px);
}

.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 0;
  color: #454541;
}

.section-heading h2 {
  margin: 0;
}

/* Services, policies and process
   ========================================================================== */

.service-grid, .policy-grid, .process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: solid var(--ink);
  border-width: 1px 0 0 1px;
}

.service-card, .policy-card, .process-list article {
  min-height: 360px;
  padding: clamp(24px, 3vw, 42px);
  border: solid var(--ink);
  border-width: 0 1px 1px 0;
  background: var(--paper);
}

.service-card:nth-child(even), .policy-card:nth-child(3) {
  background: #fff;
}

.service-icon, .policy-icon {
  margin-bottom: 70px;
}

.work-gallery, .section-transition {
  display: none;
}

.process-section, .contact-section {
  color: #fff;
  background: var(--ink);
}

.process-section .eyebrow, .process-section .process-list p {
  color: #aaa;
}

.process-list {
  border-color: #3a3a3a;
}

.process-list article, .process-list article:nth-child(even) {
  border-color: #3a3a3a;
  background: transparent;
}

.process-list article>span {
  display: block;
  margin-bottom: 90px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
}

/* Location
   ========================================================================== */

.location-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.location-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.location-details {
  margin-top: 44px;
  border-top: 1px solid;
}

.location-details p {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  margin: 0;
  border-bottom: 1px solid;
}

.map-panel {
  border: 1px solid;
  background: var(--ink);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1) contrast(1.12);
}

.map-open-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: var(--ink);
  background: var(--signal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Contact form
   ========================================================================== */

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

.contact-section {
  padding-block: clamp(52px, 7vw, 90px);
}

.form-heading, .service-choice, .form-row:has(textarea), .conditional-fields, .form-status {
  grid-column: 1/-1;
}

.form-heading .eyebrow {
  margin-bottom: 8px;
}

.form-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 5vw, 58px);
}

.conditional-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.conditional-fields .form-row {
  grid-column: auto;
}

.conditional-fields[hidden],
.form-row[hidden] {
  display: none;
}

.form-row label, .contact-choice legend {
  display: block;
  margin-bottom: 7px;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #555;
  outline: 0;
  color: #fff;
  background: #151515;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--signal);
}

.contact-choice {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 8px 20px;
  margin: 0;
  padding: 12px 0;
  border: solid #555;
  border-width: 1px 0;
}

.service-choice {
  margin-bottom: 0;
}

.contact-choice legend {
  float: none;
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 4px;
}

.contact-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-choice input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--signal);
  cursor: pointer;
}

.contact-choice label:has(input:checked) span {
  color: var(--signal);
  font-weight: 800;
}

.form-submit {
  grid-column: 1;
  width: max-content;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.delivery-note, .form-status {
  align-self: center;
  margin: 0;
  color: #aaa;
  font-size: 13px;
}

.delivery-note {
  grid-column: 1 / -1;
  margin-top: -8px;
}

/* Form notices
   ========================================================================== */

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 24px;
  place-items: center;
}

.notice-modal[hidden] {
  display: none;
}

.notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 78%);
  backdrop-filter: blur(5px);
}

.notice-dialog {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(30px, 6vw, 56px);
  border: 1px solid #555;
  color: #fff;
  background: var(--ink);
  box-shadow: 14px 14px 0 rgb(244 88 154 / 22%);
}

.notice-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--signal);
}

.notice-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
}

.notice-icon svg {
  width: 27px;
  height: 27px;
}

.notice-dialog .eyebrow {
  color: var(--signal);
}

.notice-dialog h2 {
  margin: 10px 0 20px;
  font-size: clamp(30px, 6vw, 48px);
}

.notice-dialog > p:last-of-type {
  margin: 0 0 32px;
  color: #c7c7c2;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.notice-confirm {
  border: 1px solid var(--signal);
}

body.has-open-modal {
  overflow: hidden;
}

/* Footer
   ========================================================================== */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(24px, 7vw, 110px);
  color: #fff;
  background: #151515;
  border: 1px solid var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  padding: 5px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #333;
}

.footer-services {
  display: flex;
  align-items: center;
  margin: 0;
  color: #aaa;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-social {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid #444;
  color: var(--signal);
  background: #151515;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--ink);
  border-color: var(--signal);
  background: var(--signal);
  outline: none;
}

.footer-social:hover svg,
.footer-social:focus-visible svg {
  color: var(--ink);
}

/* Responsive: tablet
   ========================================================================== */

@media (max-width: 980px) {
  /* Header and navigation
   ========================================================================== */

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

  .brand {
    width: 100%;
    padding-inline: 18px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 72px;
    margin-left: auto;
    border: 0;
    border-left: 1px solid #333;
    color: #fff;
    background: transparent;
  }

  .site-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    background: var(--ink);
    border-bottom: 1px solid #333;
  }

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

  .site-nav a {
    min-height: 54px;
    border: solid #333;
    border-width: 1px 0 0;
  }

  /* Hero
   ========================================================================== */

.hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-media {
    grid-area: 1/1;
    width: min(100%, 520px);
    height: auto;
    justify-self: end;
    aspect-ratio: 1;
  }

  .hero-content {
    grid-area: 2/1;
  }

  /* Services, policies and process
   ========================================================================== */

.service-grid, .policy-grid, .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .location-section, .section-heading {
    grid-template-columns: 1fr;
  }

}

/* Responsive: mobile
   ========================================================================== */

@media (max-width: 640px) {
  .brand small, .footer-services {
    display: none;
  }

  .hero-media {
    width: 78%;
  }

  /* Trust and pricing
   ========================================================================== */

.trust-strip,.price-section,/* Services, policies and process
   ========================================================================== */

.service-grid,.policy-grid,.process-list,/* Contact form
   ========================================================================== */

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

  .conditional-fields {
    grid-template-columns: 1fr;
  }

  .price-card+.price-card {
    border: solid var(--ink);
    border-width: 1px 0 0;
  }

  .section-heading>*, .form-heading, .contact-choice, .form-row, .form-submit, .delivery-note, .form-status {
    grid-column: 1;
  }

  .service-card, .policy-card, .process-list article {
    min-height: 300px;
  }

  .map-frame {
    min-height: 380px;
  }

  /* Footer
   ========================================================================== */

.site-footer {
    justify-content: center;
  }

}

/* Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  /* Document and base elements
   ========================================================================== */

html {
    scroll-behavior: auto;
  }

}
/* Interactive service imagery
   ========================================================================== */

.work-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  margin-top: clamp(50px, 8vw, 100px);
  border: solid var(--ink);
  border-width: 1px 0 0 1px;
}

.work-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: solid var(--ink);
  border-width: 0 1px 1px 0;
  background: var(--ink);
}

.work-shot img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .4s ease;
}

.work-shot:hover img {
  transform: scale(1.025);
}

.work-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .92));
}

.work-shot figcaption span,
.work-shot figcaption strong {
  display: block;
}

.work-shot figcaption span {
  margin-bottom: 5px;
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-shot figcaption strong {
  font-family: "Courier New", Courier, monospace;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .work-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .work-shot-featured {
    grid-column: 1 / -1;
  }
}

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

  .work-shot-featured {
    grid-column: auto;
  }

  .work-shot img {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-shot img {
    transition: none;
  }
}
/* Animated header logo
   ========================================================================== */

.site-header .brand-mark {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.site-header .brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .18s ease;
}

.site-header .brand-logo-animated {
  opacity: 0;
}

.site-header .brand-mark:hover .brand-logo-static,
.site-header .brand-mark:focus-within .brand-logo-static {
  opacity: 0;
}

.site-header .brand-mark:hover .brand-logo-animated,
.site-header .brand-mark:focus-within .brand-logo-animated {
  opacity: 1;
}
/* Form validation hint
   ========================================================================== */

.field-hint {
  display: block;
  margin-top: 8px;
  color: #aaa;
  font-size: 11px;
  line-height: 1.45;
}

.field-hint.is-valid {
  color: var(--signal);
}

.field-hint.is-invalid {
  color: #ff806b;
}
/* Responsive stabilization
   ========================================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
}

main,
section,
header,
footer,
nav,
form,
article,
div {
  min-width: 0;
}

iframe,
input,
select,
textarea,
button {
  max-width: 100%;
}

h1,
h2,
h3,
p,
span,
strong,
a,
label {
  overflow-wrap: anywhere;
}

.hero-media {
  display: block;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .brand {
    padding-inline: 24px;
  }

  .site-nav a {
    padding-inline: 12px;
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .brand {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding: 9px 16px;
  }

  .brand-mark {
    flex: 0 0 52px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 72px;
    place-items: center;
    width: 72px;
    margin-left: 0;
    border: 0;
    border-left: 1px solid #333;
  }

  .site-nav {
    z-index: 30;
    width: 100%;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(360px, 58dvh) auto;
    min-height: 0;
  }

  .hero-media {
    grid-area: 1 / 1;
    width: 100%;
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
    justify-self: stretch;
    object-fit: cover;
    object-position: center 58%;
  }

  .hero-content {
    grid-area: 2 / 1;
    width: 100%;
  }

  .section,
  .hero-content {
    padding-inline: clamp(22px, 6vw, 64px);
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-panel,
  .map-frame {
    width: 100%;
  }

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

@media (max-width: 700px) {
  .trust-strip,
  .price-section,
  .service-grid,
  .policy-grid,
  .process-list,
  .contact-form,
  .work-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-shot-featured {
    grid-column: auto;
  }

  .price-card + .price-card {
    border-width: 1px 0 0;
  }

  .form-heading,
  .contact-choice,
  .form-row,
  .form-submit,
  .delivery-note,
  .form-status {
    grid-column: 1;
  }

  .contact-choice {
    grid-template-columns: max-content max-content;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-services {
    display: block;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    flex-basis: 46px;
    width: 46px;
  }

  .nav-toggle {
    flex-basis: 62px;
    width: 62px;
  }

  .hero {
    grid-template-rows: minmax(300px, 52dvh) auto;
  }

  .hero-content {
    padding-block: 54px;
  }

  .hero-content::before {
    width: auto;
    max-width: 100%;
    margin-bottom: 42px;
  }

  h1 {
    font-size: clamp(40px, 15vw, 62px);
  }

  h2,
  .location-copy h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .price-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-choice {
    grid-template-columns: minmax(0, 1fr);
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .map-frame {
    min-height: 320px;
  }

  .site-footer {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 1800px) {
  .hero-content {
    padding-left: max(7vw, calc((100vw - 1600px) / 2 + 72px));
  }
}
/* About section
   ========================================================================== */

/* Extras carousel
   ========================================================================== */
.extras-section { overflow: hidden; color: #fff; background: var(--ink); }
.extras-heading { display: flex; gap: 32px; align-items: end; justify-content: space-between; margin-bottom: clamp(36px, 6vw, 72px); }
.extras-heading .section-heading { flex: 1; margin-bottom: 0; }
.extras-heading .section-heading > p:last-child, .extra-card > div > p { color: #b9b9b3; }
.carousel-controls { display: flex; flex: 0 0 auto; align-items: center; border: 1px solid #4a4a46; }
.carousel-button { display: grid; width: 52px; height: 52px; padding: 0; place-items: center; color: #fff; border: 0; background: transparent; cursor: pointer; transition: color .2s ease, background .2s ease; }
.carousel-button:hover, .carousel-button:focus-visible { color: var(--ink); background: var(--signal); outline: none; }
.carousel-button:disabled { color: #666; cursor: default; background: transparent; }
.carousel-status { min-width: 68px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.extras-carousel { display: grid; grid-auto-columns: minmax(320px, calc((100% - 24px) / 2)); grid-auto-flow: column; gap: 24px; overflow-x: auto; padding: 3px 3px 20px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-color: var(--signal) #333; scrollbar-width: thin; }
.extra-card { position: relative; display: flex; min-height: 430px; padding: clamp(28px, 4vw, 48px); flex-direction: column; justify-content: space-between; border: 1px solid #4a4a46; background: #151515; scroll-snap-align: start; }
.extra-card:nth-child(even) { background: #20201e; }
.extra-number { position: absolute; top: 24px; right: 28px; color: #70706b; font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.extra-card .service-icon { color: var(--ink); background: var(--signal); }
.extra-kicker { margin: 32px 0 12px; color: var(--signal) !important; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.extra-card h3 { max-width: 520px; margin: 0 0 18px; font-size: clamp(25px, 3vw, 38px); line-height: 1.05; }
.extra-card > div > p:last-child { max-width: 580px; line-height: 1.65; }
.extra-price { display: flex; margin: 36px 0 0; padding-top: 22px; align-items: baseline; justify-content: space-between; border-top: 1px solid #4a4a46; }
.extra-price span { color: #aaa; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.extra-price strong { color: var(--signal); font-size: clamp(24px, 3vw, 36px); }
@media (max-width: 700px) {
  .extras-heading { align-items: flex-start; flex-direction: column; }
  .extras-carousel { grid-auto-columns: 92%; }
  .extra-card { min-height: 450px; }
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  background: #fff;
}

.about-portrait {
  position: relative;
  width: min(100%, 350px);
  margin: 0;
  justify-self: start;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.about-portrait::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: var(--signal);
  border: 1px solid var(--ink);
}

.about-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(.88) contrast(1.04);
}

.about-portrait figcaption {
  padding: 14px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 760px;
}

.about-copy .eyebrow {
  color: var(--signal);
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy > p {
  color: #4f4f4a;
  font-size: clamp(15px, 1.4vw, 18px);
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 44px 0 0;
  border: solid var(--ink);
  border-width: 1px 0 0 1px;
}

.about-facts div {
  min-width: 0;
  padding: 18px;
  border: solid var(--ink);
  border-width: 0 1px 1px 0;
}

.about-facts dt {
  margin-bottom: 10px;
  color: #666;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .about-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-portrait {
    width: min(100%, 330px);
  }

  .about-copy {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .about-section {
    gap: 42px;
  }

  .about-portrait::before {
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
  }

  .about-facts {
    grid-template-columns: minmax(0, 1fr);
  }
}
