:root {
  --ink: #15324a;
  --ink-deep: #0d273a;
  --blue: #2f6f8f;
  --blue-bright: #4e9eb3;
  --aqua: #99ced5;
  --aqua-pale: #dceef1;
  --foam: #f2f8f8;
  --warm: #f7f6f2;
  --white: #ffffff;
  --charcoal: #20292e;
  --muted: #5d6b72;
  --line: #cddde0;
  --coral: #dc806f;
  --gold: #d8b35e;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 22px 60px rgba(21, 50, 74, 0.12);
  --shell: min(1160px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--warm);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

.preview-bar {
  padding: 8px 20px;
  color: var(--white);
  background: var(--ink-deep);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.preview-bar p {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

.preview-bar strong {
  color: var(--aqua);
  text-transform: uppercase;
}

.preview-bar span {
  opacity: 0.82;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(247, 246, 242, 0.96);
  border-bottom: 1px solid rgba(21, 50, 74, 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
  place-content: center;
  width: 37px;
  height: 37px;
  background: var(--ink);
  border-radius: 50% 50% 50% 18%;
  transform: rotate(-6deg);
}

.brand-mark i {
  display: block;
  border-radius: 50%;
  background: var(--aqua-pale);
}

.brand-mark i:nth-child(2) {
  background: var(--aqua);
}

.brand-mark i:nth-child(3) {
  background: var(--gold);
}

.brand-mark i:nth-child(4) {
  background: var(--white);
}

.brand-name {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand-name strong {
  font-weight: 800;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  position: relative;
  padding: 29px 0 25px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(21, 50, 74, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.82rem;
}

.button-pale {
  color: var(--ink);
  background: var(--aqua-pale);
  border-color: var(--aqua-pale);
}

.button-pale:hover {
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 675px;
  padding-block: 74px 86px;
  gap: clamp(55px, 7vw, 100px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--blue-bright);
}

.eyebrow-light,
.section-kicker-light {
  color: var(--aqua);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(3.15rem, 6vw, 5.75rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  letter-spacing: -0.05em;
}

h3 {
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 570px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.text-link,
.arrow-link {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: var(--aqua);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link:hover,
.arrow-link:hover {
  color: var(--blue);
}

.text-link-light {
  color: var(--white);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  margin: 43px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
}

.hero-notes li + li::before {
  width: 5px;
  height: 5px;
  margin-inline: 14px;
  background: var(--blue-bright);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  padding: 14px;
  background: var(--white);
  border-radius: 46% 46% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}

.visual-frame > img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 46% 46% 19px 19px;
}

.visual-note {
  position: absolute;
  right: -20px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(260px, 62%);
  padding: 17px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 13px 30px rgba(21, 50, 74, 0.12);
}

.visual-note p {
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.45;
}

.visual-note strong {
  font-size: 0.86rem;
}

.visual-note-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue-bright);
  border-radius: 50%;
  place-items: center;
}

.orbit-dots {
  position: absolute;
  top: 18%;
  left: -24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.orbit-dots i {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.orbit-dots i:nth-child(2) {
  background: var(--gold);
}

.orbit-dots i:nth-child(3) {
  background: var(--blue-bright);
}

.intro-strip {
  background: var(--aqua-pale);
  border-block: 1px solid var(--line);
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr auto;
  align-items: center;
  gap: 30px;
  min-height: 117px;
}

.intro-strip p {
  margin-block: 0;
}

.intro-strip .section-kicker {
  color: var(--ink);
}

.intro-strip-inner > p:nth-child(2) {
  max-width: 630px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-block: 118px;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2,
.gallery-heading h2,
.centered-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
  padding: clamp(28px, 4vw, 50px);
  border-radius: var(--radius-lg);
}

.service-card-blue {
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue);
}

.service-card-light {
  background: var(--foam);
  border: 1px solid var(--line);
}

.service-number {
  margin-bottom: 70px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.service-card-blue .service-number {
  color: var(--aqua-pale);
}

.service-card-light .service-number {
  color: var(--blue);
}

.service-tag {
  margin: 0 0 13px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
}

.service-card-blue h3 {
  color: var(--white);
}

.service-card p:not(.service-tag) {
  max-width: 480px;
  margin: 0;
  font-size: 0.93rem;
}

.service-card a {
  width: max-content;
  margin-top: 44px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card a span {
  margin-left: 12px;
}

.service-card-blue a {
  color: var(--white);
}

.service-card-light a {
  color: var(--ink);
}

.care-section {
  padding-block: 120px;
  color: rgba(255, 255, 255, 0.77);
  background: var(--ink-deep);
}

.care-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(55px, 8vw, 120px);
}

.care-copy {
  position: sticky;
  top: 40px;
  align-self: start;
}

.care-copy h2 {
  color: var(--white);
}

.care-copy > p:not(.section-kicker) {
  max-width: 450px;
  margin-bottom: 30px;
}

.practice-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.practice-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding-block: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.practice-list h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.practice-list p {
  max-width: 590px;
  margin: 0;
  font-size: 0.88rem;
}

.cloth-dot {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border: 4px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-sizing: content-box;
}

.cloth-coral {
  background: var(--coral);
}

.cloth-teal {
  background: var(--aqua);
}

.cloth-gold {
  background: var(--gold);
}

.cloth-blue {
  background: var(--blue-bright);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.artwork-note {
  max-width: 640px;
  margin: -26px 0 38px;
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 275px);
  gap: 18px;
}

.preview-grid figure,
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--aqua-pale);
  border-radius: var(--radius-md);
}

.preview-grid .preview-tall {
  grid-row: span 2;
}

.preview-grid img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.preview-grid figure:hover img,
.gallery-item:hover img {
  transform: scale(1.025);
}

.preview-grid figcaption,
.gallery-item figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.preview-grid figcaption span,
.gallery-item figcaption span {
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-grid figcaption small,
.gallery-item figcaption small {
  color: var(--muted);
  font-size: 0.62rem;
}

.estimate-steps {
  padding-block: 120px;
  background: var(--foam);
  border-block: 1px solid var(--line);
}

.centered-heading {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-grid li {
  position: relative;
  padding: 12px 40px 24px;
  text-align: center;
}

.steps-grid li + li {
  border-left: 1px solid var(--line);
}

.steps-grid li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
  place-items: center;
}

.steps-grid h3 {
  margin-bottom: 10px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.centered-action {
  margin-top: 40px;
  text-align: center;
}

.contact-band {
  padding-block: 74px;
  color: var(--white);
  background: var(--blue);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.contact-band h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 18px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  text-decoration: none;
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-actions span {
  color: var(--aqua-pale);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.site-footer {
  padding-top: 72px;
  color: var(--muted);
  background: var(--warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 1fr;
  gap: 70px;
  padding-bottom: 60px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid > div:first-child > p {
  max-width: 320px;
  margin: 0;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.footer-links h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  padding-block: 18px 28px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: var(--ink);
}

.mobile-estimate {
  display: none;
}

/* Gallery page */
.page-hero {
  padding-block: 105px 86px;
  background: var(--aqua-pale);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero-grid > div:first-child > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.page-hero-aside {
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(21, 50, 74, 0.12);
  border-radius: var(--radius-md);
}

.micro-label {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero-aside p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery-page {
  padding-top: 85px;
}

.gallery-mosaic {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-callout {
  padding-block: 85px;
  background: var(--aqua-pale);
  border-block: 1px solid var(--line);
}

.gallery-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.gallery-callout h2 {
  max-width: 700px;
  margin: 0;
}

/* Contact page */
.contact-hero {
  padding-block: 100px 86px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink-deep);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
}

.contact-hero h1 {
  color: var(--white);
}

.contact-hero-grid > div:first-child > p:last-child {
  max-width: 640px;
  margin: 0;
}

.contact-card {
  padding: 27px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.contact-card .micro-label {
  color: var(--aqua);
}

.contact-card a {
  display: grid;
  gap: 2px;
  padding-block: 13px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-decoration: none;
}

.contact-card a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card a span {
  color: var(--aqua);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.estimate-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.estimate-intro {
  position: sticky;
  top: 40px;
}

.estimate-intro > p:not(.section-kicker) {
  color: var(--muted);
}

.privacy-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 28px;
  padding: 18px;
  background: var(--aqua-pale);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.privacy-card > span {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
  place-items: center;
}

.privacy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.privacy-card strong {
  color: var(--ink);
}

.contact-side-links {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}

.contact-side-links a {
  position: relative;
  display: grid;
  padding: 15px 48px 15px 17px;
  background: var(--white);
  text-decoration: none;
}

.contact-side-links a:hover {
  background: var(--foam);
}

.contact-side-links small {
  color: var(--muted);
  font-size: 0.65rem;
}

.contact-side-links strong {
  color: var(--ink);
  font-size: 0.8rem;
}

.contact-side-links a > span {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--blue);
  transform: translateY(-50%);
}

.estimate-form {
  padding: clamp(25px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
}

.field input,
.field select {
  min-height: 49px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(78, 158, 179, 0.18);
}

.field textarea::placeholder {
  color: #7a878c;
}

.form-button {
  width: 100%;
  margin-top: 28px;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
}

.form-status:not(:empty) {
  margin-top: 16px;
  padding: 13px 15px;
  background: var(--aqua-pale);
  border-radius: 9px;
}

.contact-next {
  padding-block: 76px;
  background: var(--blue);
}

.contact-next-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
}

.contact-next h2 {
  margin: 0;
  color: var(--white);
}

.contact-next-actions {
  display: grid;
  justify-items: start;
  gap: 19px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    justify-content: center;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 75px 95px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 25px;
  }

  .intro-strip .arrow-link {
    grid-column: 2;
  }

  .split-heading,
  .care-layout,
  .contact-band-inner,
  .page-hero-grid,
  .contact-hero-grid,
  .estimate-layout,
  .contact-next-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .contact-band-inner,
  .page-hero-grid,
  .contact-hero-grid,
  .contact-next-grid {
    gap: 32px;
  }

  .care-layout,
  .estimate-layout {
    gap: 60px;
  }

  .care-copy,
  .estimate-intro {
    position: static;
  }

  .service-card {
    min-height: 390px;
  }

  .contact-band h2,
  .contact-next h2 {
    max-width: 650px;
  }

  .contact-actions {
    max-width: 620px;
  }

  .page-hero-aside,
  .contact-card {
    max-width: 620px;
  }

  .gallery-callout-inner {
    align-items: start;
    flex-direction: column;
  }

  .contact-next-actions {
    grid-template-columns: auto auto;
    align-items: center;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 59px;
  }

  .preview-bar {
    padding-inline: 12px;
  }

  .preview-bar p {
    display: block;
  }

  .preview-bar span {
    display: none;
  }

  .site-header {
    padding-block: 13px 9px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 0;
    gap: 8px 16px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 25px;
    border-top: 1px solid var(--line);
  }

  .primary-nav a {
    padding: 10px 0 4px;
    font-size: 0.78rem;
  }

  .primary-nav a::after {
    bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .mobile-estimate {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 59px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -7px 24px rgba(13, 39, 58, 0.16);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero {
    padding-block: 62px 72px;
    gap: 60px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .hero-notes {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }

  .hero-notes li + li::before {
    display: none;
  }

  .visual-frame {
    padding: 9px;
    border-radius: 42% 42% 22px 22px;
  }

  .visual-frame > img {
    min-height: 390px;
    border-radius: 42% 42% 14px 14px;
  }

  .visual-note {
    right: 5px;
    bottom: -26px;
    width: min(260px, 82%);
  }

  .orbit-dots {
    left: -5px;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .intro-strip .arrow-link {
    grid-column: auto;
    margin-top: 8px;
  }

  .section,
  .care-section,
  .estimate-steps {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .service-card {
    min-height: 360px;
    padding: 30px 25px;
  }

  .service-number {
    margin-bottom: 50px;
  }

  .care-layout {
    gap: 52px;
  }

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

  .artwork-note {
    margin-top: -18px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 330px);
  }

  .preview-grid .preview-tall {
    grid-row: auto;
  }

  .preview-grid figcaption,
  .gallery-item figcaption {
    align-items: start;
    flex-direction: column;
    gap: 1px;
  }

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

  .steps-grid li {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 22px 0;
    gap: 3px 15px;
    text-align: left;
  }

  .steps-grid li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-grid li > span {
    grid-row: span 2;
    margin: 0;
  }

  .steps-grid h3,
  .steps-grid p {
    grid-column: 2;
  }

  .contact-band {
    padding-block: 64px;
  }

  .contact-actions a {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .page-hero,
  .contact-hero {
    padding-block: 72px 67px;
  }

  .gallery-page {
    padding-top: 55px;
  }

  .gallery-mosaic {
    grid-auto-rows: 340px;
    grid-template-columns: 1fr;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-callout {
    padding-block: 70px;
  }

  .contact-hero-grid,
  .estimate-layout {
    gap: 45px;
  }

  .form-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

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

  .field-full {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
