/* MD Spangler Concrete — standalone landing page */
:root {
  --charcoal: #171816;
  --charcoal-soft: #22231f;
  --ink: #25251f;
  --concrete: #dedbd2;
  --paper: #f3f0e8;
  --white: #fbfaf6;
  --brass: #c99b58;
  --brass-light: #e4c18c;
  --line: rgba(35, 35, 30, 0.18);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: Arial, Helvetica, sans-serif;
}

::selection {
  background: var(--brass);
  color: var(--charcoal);
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

em {
  color: var(--brass-light);
  font-weight: 400;
}

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

.section-pad {
  padding: 120px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #8b622b;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.button--primary {
  background: var(--brass);
  color: var(--charcoal);
}

.button--primary:hover {
  background: var(--brass-light);
}

/* Brand */
.brand__logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--brass-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: -0.08em;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand__name b {
  display: block;
  color: var(--brass-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 155, 88, 0.18), transparent 31%),
    linear-gradient(115deg, #11120f 0%, #1d1e1a 56%, #10110f 100%);
  color: var(--white);
  isolation: isolate;
}

.hero__texture,
.contact__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,0.035) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 29% 100%, 100% 5px;
}

.hero__frame {
  position: absolute;
  top: 0;
  right: -9vw;
  z-index: -1;
  width: 49vw;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(139deg, transparent 0 45%, rgba(201,155,88,0.13) 45.1% 45.3%, transparent 45.4%),
    linear-gradient(49deg, transparent 0 64%, rgba(255,255,255,0.06) 64.1% 64.25%, transparent 64.4%),
    linear-gradient(138deg, transparent 0 45%, rgba(255,255,255,0.05) 45.1% 70%, transparent 70.1%);
  transform: skewX(-10deg);
}

.hero__topline {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--shell);
  height: 98px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.hero__topline > p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__topline > p span {
  margin: 0 7px;
  color: var(--brass-light);
}

.hero__content {
  position: absolute;
  top: 52%;
  left: 50%;
  display: grid;
  width: var(--shell);
  grid-template-columns: minmax(0, 1fr) clamp(300px, 27vw, 380px);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  transform: translate(-50%, -46%);
}

.hero__copy {
  min-width: 0;
}

.hero__logo {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  aspect-ratio: 1;
  justify-self: end;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,0.4))
    drop-shadow(0 0 20px rgba(201,155,88,0.08));
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 5.4vw, 5.6rem);
  letter-spacing: -0.055em;
}

.hero__lead {
  margin-bottom: 9px;
  color: rgba(255,255,255,0.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
  font-style: italic;
}

.hero__area {
  margin-bottom: 15px;
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__services {
  max-width: 820px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  line-height: 1.7;
}

.hero__services span {
  margin: 0 5px;
  color: var(--brass);
}

.hero__actions {
  display: flex;
}

.hero__stat {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 52px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.hero__stat strong {
  color: var(--brass-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.hero__stat strong span {
  font-size: 1.6rem;
  vertical-align: top;
}

.hero__stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Why homeowners choose */
.why {
  background: var(--concrete);
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.why h2,
.services h2,
.project-gallery h2,
.service-area h2,
.faq h2 {
  margin-bottom: 32px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

.why h2 em,
.services h2 em,
.project-gallery h2 em,
.service-area h2 em,
.faq h2 em {
  color: #8b622b;
}

.why__copy .lead {
  color: #33332e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.17rem, 1.8vw, 1.4rem);
  line-height: 1.62;
}

.why__copy > p:not(.eyebrow):not(.lead) {
  color: #55554d;
}

.why__copy .why__statement {
  margin: 35px 0 0;
  padding: 23px 25px;
  border-left: 3px solid #9a6f35;
  background: rgba(255,255,255,0.38);
  color: #31312c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
}

.why__image {
  position: relative;
  margin: 0;
  border: 1px solid rgba(35,35,30,0.22);
  background: #c9c4b8;
}

.why__image::before {
  position: absolute;
  top: -17px;
  right: -17px;
  width: 42%;
  height: 42%;
  border-top: 3px solid #9a6f35;
  border-right: 3px solid #9a6f35;
  content: "";
}

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

.why__image figcaption,
.standard__visual figcaption {
  padding: 12px 15px;
  color: #5b5a51;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

/* Services */
.services {
  background: var(--paper);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading__lead {
  max-width: 700px;
  margin: -45px auto 0;
  color: #5c5b52;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services__grid article {
  min-height: 245px;
  padding: 35px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.services__grid article:hover {
  background: rgba(201, 155, 88, 0.11);
  transform: translateY(-2px);
}

.services__grid article:last-child {
  grid-column: 1 / -1;
}

.services__grid span {
  display: block;
  margin-bottom: 25px;
  color: #8b622b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.services__grid h3 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
}

.services__grid p {
  max-width: 470px;
  margin-bottom: 0;
  color: #5c5b52;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.work-strip figure {
  margin: 0;
  overflow: hidden;
  background: #d8d4ca;
}

.work-strip img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease;
}

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

/* Standard */
.standard {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.standard__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(60px, 8vw, 115px);
}

.standard__visual {
  position: relative;
}

.standard__visual figure {
  margin: 0;
  border: 1px solid rgba(255,255,255,0.13);
  background: #252621;
}

.standard__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.standard__visual figcaption {
  color: rgba(255,255,255,0.53);
}

.standard h2 {
  margin-bottom: 35px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.05em;
}

.standard__copy > p:not(.eyebrow):not(.standard__closing) {
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 25px;
  margin: 25px 0 35px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.82);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brass-light);
  content: "✓";
  font-weight: 700;
}

.standard__closing {
  margin: 0;
  padding: 22px 0 22px 26px;
  border-left: 2px solid var(--brass);
  color: var(--brass-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

/* Project gallery */
.project-gallery {
  background: var(--paper);
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.project-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #c9c4b8;
}

.project-gallery__item--wide {
  grid-column: span 2;
}

.project-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 350ms ease;
}

.project-gallery__item--wide img {
  aspect-ratio: 8 / 3;
}

.project-gallery__item--portrait {
  grid-row: span 2;
}

.project-gallery__item--portrait img {
  aspect-ratio: 3 / 4;
}

.project-gallery__item:hover img {
  transform: scale(1.025);
}

.project-gallery__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 18px 15px;
  background: linear-gradient(transparent, rgba(20, 20, 17, 0.82));
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

/* Service area */
.service-area {
  background:
    linear-gradient(rgba(222,219,210,0.94), rgba(222,219,210,0.94)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(139,98,43,0.12) 14px 15px);
}

.service-area__inner {
  max-width: 980px;
  text-align: center;
}

.service-area__inner > .eyebrow {
  justify-content: center;
}

.service-area__label {
  margin-bottom: 17px;
  color: #66645b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.city-list li {
  padding: 10px 17px;
  border: 1px solid rgba(35,35,30,0.2);
  background: rgba(255,255,255,0.34);
  color: #45453e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-area__closing {
  max-width: 760px;
  margin: 0 auto;
  color: #34342f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
}

.service-area__map {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(35,35,30,0.22);
  background: #c9c4b8;
  box-shadow: 0 18px 40px rgba(35,35,30,0.08);
}

.service-area__map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

/* Reviews */
.reviews {
  background: var(--concrete);
}

.reviews h2 {
  max-width: 820px;
  margin-bottom: 52px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.reviews h2 em {
  color: #8b622b;
}

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

.review-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  padding: 38px 34px;
  border-top: 3px solid var(--brass);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(35, 35, 30, 0.08);
}

.review-card__customer {
  margin-bottom: 20px;
}

.review-card__customer strong,
.review-card__customer span {
  display: block;
}

.review-card__customer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.review-card__customer span,
.review-card__project,
.review-card__source {
  color: #66645b;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.review-card__project {
  margin: 0 0 18px;
}

.review-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.65;
}

.review-card__source {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 135px);
}

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

.faq__list {
  border-top: 1px solid rgba(35,35,30,0.25);
}

.faq details {
  border-bottom: 1px solid rgba(35,35,30,0.25);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 28px 45px 28px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.45;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 28px;
  right: 5px;
  color: #8b622b;
  content: "+";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq summary span {
  padding-top: 4px;
  color: #8b622b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.faq__answer {
  padding: 0 30px 26px 60px;
}

.faq__answer p {
  max-width: 620px;
  margin: 0;
  color: #5a5951;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(201,155,88,0.16), transparent 31%),
    var(--charcoal);
  color: var(--white);
  isolation: isolate;
}

.contact__inner {
  padding-top: 125px;
  text-align: center;
}

.contact__inner > .eyebrow {
  justify-content: center;
}

.contact h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.05em;
}

.contact__lead {
  max-width: 660px;
  margin: 0 auto 38px;
  color: rgba(255,255,255,0.64);
  font-size: 1.08rem;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1020px;
  margin: 72px auto 30px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.contact__details > div {
  padding: 30px;
}

.contact__details > div + div {
  border-left: 1px solid rgba(255,255,255,0.16);
}

.contact__details p {
  margin-bottom: 5px;
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__details a,
.contact__details address {
  color: rgba(255,255,255,0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-style: normal;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact__details a:hover,
.contact__facts a:hover {
  color: var(--brass-light);
}

.contact__service-area {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.49);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1.5;
}

.contact__facts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto 70px;
  text-align: left;
}

.contact__facts p {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.68);
  font-size: 0.8rem;
}

.contact__facts strong {
  margin-bottom: 7px;
  color: var(--brass-light);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__facts a {
  margin-top: 5px;
  color: rgba(255,255,255,0.54);
}

.contact footer {
  display: flex;
  flex-wrap: wrap;
  min-height: 125px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.contact footer > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.43);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-align: right;
  text-transform: uppercase;
}

.footer-trust {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.58);
  font-size: 0.68rem;
  line-height: 1.5;
  list-style: none;
  text-align: left;
}

.footer-trust li {
  position: relative;
  padding-left: 20px;
}

.footer-trust li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brass-light);
  content: "✓";
  font-weight: 700;
}

.footer-credit {
  width: 100%;
  margin: -12px 0 24px;
  text-align: center;
}

.contact footer .footer-attribution {
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  text-transform: none;
}

.footer-attribution a {
  color: rgba(255,255,255,0.46);
  text-decoration-color: rgba(255,255,255,0.24);
  text-underline-offset: 3px;
}

.footer-attribution a:hover,
.footer-attribution a:focus-visible {
  color: rgba(255,255,255,0.7);
}

.footer-attribution span {
  margin: 0 0.35em;
  color: rgba(255,255,255,0.2);
}

.footer-logo-link {
  display: inline-block;
  margin-top: 10px;
  line-height: 0;
}

.footer-logo {
  display: block;
  width: clamp(72px, 7vw, 92px);
  max-width: 100%;
  height: auto;
}

.privacy-page {
  min-height: 100vh;
  background: var(--paper);
}

.privacy-header {
  padding: 22px 0;
  background: var(--charcoal);
  color: var(--white);
}

.privacy-header__inner {
  display: flex;
  width: var(--shell);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.privacy-header__back {
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.privacy-header__back:hover {
  color: var(--brass-light);
}

.privacy-content {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  padding: 88px 0 100px;
}

.privacy-content h1 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  letter-spacing: -0.045em;
}

.privacy-content h2 {
  margin: 46px 0 14px;
  color: var(--charcoal);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.privacy-content p,
.privacy-content li {
  color: #55554d;
}

.privacy-content ul {
  padding-left: 1.25rem;
}

.privacy-content a {
  color: #76501f;
  text-underline-offset: 3px;
}

.privacy-effective {
  margin-bottom: 44px;
  color: #77766d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-note {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

.brand--footer .brand__name {
  font-size: 1rem;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .section-pad {
    padding: 90px 0;
  }

  .hero {
    min-height: 900px;
  }

  .hero__topline > p,
  .hero__stat {
    display: none;
  }

  .hero__content {
    top: 54%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__logo {
    order: -1;
    width: 200px;
    justify-self: start;
  }

  .why__grid,
  .standard__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .why__grid,
  .standard__grid,
  .faq__grid {
    gap: 55px;
  }

  .why__image,
  .standard__visual {
    max-width: 580px;
  }

  .why__image img,
  .standard__visual img {
    aspect-ratio: 4 / 3;
  }

  .standard__visual {
    order: 2;
  }

  .standard__copy {
    order: 1;
  }

  .faq__intro {
    position: relative;
    top: auto;
  }

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

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

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

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

  .contact__details > div + div {
    border-top: 1px solid rgba(255,255,255,0.16);
    border-left: 0;
  }
}

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

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: 850px;
    height: 100svh;
  }

  .hero__topline {
    height: 82px;
  }

  .hero__frame {
    right: -24vw;
    width: 90vw;
  }

  .hero__content {
    top: 52%;
    transform: translate(-50%, -46%);
  }

  .hero__logo {
    width: clamp(155px, 42vw, 185px);
    justify-self: center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 9.8vw, 3rem);
  }

  .hero__lead {
    font-size: 1.13rem;
  }

  .hero__area {
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .hero__services {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .button {
    width: 100%;
  }

  .why h2,
  .services h2,
  .standard h2,
  .project-gallery h2,
  .service-area h2,
  .reviews h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.55rem, 12.5vw, 3.8rem);
  }

  .why__image::before {
    display: none;
  }

  /* Preserve the complete project photographs on narrow phone screens. */
  .why__image img,
  .standard__visual img,
  .work-strip img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

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

  .services__grid article,
  .services__grid article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 30px 27px;
  }

  .work-strip {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .city-list {
    gap: 8px;
  }

  .city-list li {
    padding: 8px 11px;
    font-size: 0.66rem;
  }

  .service-area__map iframe {
    height: 330px;
  }

  .project-gallery__grid {
    grid-template-columns: 1fr;
  }

  .project-gallery__item--wide {
    grid-column: auto;
  }

  .project-gallery__item--portrait {
    grid-row: auto;
  }

  .project-gallery__item img,
  .project-gallery__item--wide img,
  .project-gallery__item--portrait img {
    aspect-ratio: 4 / 3;
  }

  .faq summary {
    grid-template-columns: 34px 1fr;
    padding-right: 34px;
    font-size: 1.02rem;
  }

  .faq__answer {
    padding-left: 46px;
  }

  .contact__inner {
    padding-top: 85px;
  }

  .contact__details {
    margin-top: 58px;
  }

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

  .contact footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0;
  }

  .contact footer > p {
    text-align: left;
  }

  .contact footer > .footer-credit {
    margin: -6px 0 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .privacy-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .privacy-content {
    width: min(100% - 36px, 760px);
    padding: 64px 0 76px;
  }
}

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

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