:root {
  --navy: #082a58;
  --navy-deep: #051d42;
  --blue: #0d3a74;
  --cream: #fff2e4;
  --cream-light: #fff8f0;
  --orange: #ff7621;
  --orange-dark: #ec5d12;
  --ink: #092453;
  --text: #1e3158;
  --muted: #5f6c84;
  --line: rgba(9, 36, 83, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 54, 92, 0.13);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff2e4 url("assets/bg-cream.png") center top / 100% auto repeat-y;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

.shell {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 26px 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(1160px, calc(100% - 48px));
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  color: var(--white);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--white);
}

.brand img {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-style: italic;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.brand-mark::after {
  position: absolute;
  width: 48px;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: rotate(-26deg);
}

.brand-mark span {
  position: absolute;
  top: 8px;
  left: 23px;
  color: #f6e9d9;
}

.brand-text {
  color: #ffb15f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  transform: translate(-20px, 13px);
}

.brand--small {
  transform: none;
}

.brand--small img {
  width: 64px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.92;
}

.main-nav a:hover {
  color: #ffd3ac;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 26px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #ff8a28, var(--orange));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(255, 118, 33, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-outline {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.section-dark {
  color: var(--white);
  background: #082a58 url("assets/bg-dark.png") center bottom / cover no-repeat;
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 530px);
  gap: 56px;
  align-items: center;
  padding: 106px max(48px, calc((100vw - 1160px) / 2)) 62px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 29, 66, 0.16));
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.8;
}

.chips {
  display: flex;
  max-width: 570px;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chips span {
  border: 1px solid rgba(255, 139, 60, 0.85);
  border-radius: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero__photo {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 15px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero__photo img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(135deg, rgba(255, 196, 142, 0.24), rgba(8, 42, 88, 0.14));
}

.section-heading {
  max-width: 660px;
  margin-bottom: 24px;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.packages > .section-heading p {
  margin: 10px 0 0;
  color: var(--text);
  font-weight: 700;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.value-card,
.package-card,
.about-text,
.project-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.service-card {
  display: grid;
  min-height: 244px;
  grid-template-rows: auto auto 1fr auto;
  padding: 24px 20px;
}

.service-icon,
.value-card span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 118, 33, 0.24);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 34px;
  font-weight: 900;
}

.service-card h3,
.value-card h3,
.package-card h3,
.project-card h3,
.process-line h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.12;
}

.service-card p,
.value-card p,
.package-card p,
.process-line p {
  margin: 14px 0 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.55;
}

.service-card a {
  justify-self: end;
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}

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

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card a {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 328px;
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
}

.project-card--dark {
  background: #0f0f10;
}

.project-card--dark h3 {
  color: var(--white);
}

.project-card--dark .project-arrow {
  color: var(--orange);
}

.project-card h3 {
  margin: 0;
  padding: 19px 56px 22px 20px;
}

.project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(8, 42, 88, 0.86);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.project-card a {
  position: relative;
}

.project-card a::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 250px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 20, 43, 0.4));
  content: "";
  opacity: 0;
}

.project-card--dark a::before,
.project-card--interior a::before {
  opacity: 1;
}

.project-copy {
  position: absolute;
  z-index: 2;
  top: 68px;
  left: 20px;
  display: grid;
  max-width: 58%;
  gap: 4px;
  color: var(--white);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.project-copy strong {
  font-size: 26px;
  line-height: 1.08;
}

.project-copy small {
  font-size: 15px;
  font-weight: 800;
}

.project-card--interior .project-copy {
  top: 74px;
  max-width: 52%;
}

.project-card--interior .project-copy strong {
  font-size: 30px;
}

.project-card--interior img {
  object-position: center center;
}

.project-card--dark .project-tag,
.project-card--interior .project-tag {
  z-index: 3;
}

.project-card--dark h3,
.project-card--interior h3 {
  position: relative;
  z-index: 3;
}

.project-arrow {
  position: absolute;
  right: 20px;
  bottom: 17px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
}

.about h2,
.process h2 {
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 1fr);
  gap: 12px;
}

.about-text {
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(229, 246, 255, 0.96), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(135deg, rgba(31, 126, 202, 0.1) 0 1px, transparent 1px 16px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.about-text p {
  margin: 0 0 12px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.value-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.value-card h3 {
  font-size: 16px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.value-card p {
  font-size: 13px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-line::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 118, 33, 0.55), transparent);
  content: "";
}

.process-line article {
  position: relative;
  z-index: 1;
}

.process-line span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.process-line h3 {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.process-line p {
  font-size: 14px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 438px;
  flex-direction: column;
  padding: 28px;
}

.package-card--featured {
  border-color: var(--orange);
  background: rgba(255, 249, 242, 0.88);
}

.badge {
  position: absolute;
  top: -1px;
  left: 50%;
  border-radius: 0 0 8px 8px;
  padding: 6px 22px;
  background: #ffe1cf;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
}

.package-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.package-title h3 {
  margin: 0;
  font-size: 30px;
}

.package-title strong {
  color: var(--orange-dark);
  white-space: nowrap;
  font-size: 18px;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.package-card li {
  display: flex;
  gap: 8px;
  align-items: start;
}

.package-card li::before {
  flex: 0 0 auto;
  color: var(--orange);
  content: "⊙";
  font-weight: 900;
}

.package-card .button {
  margin-top: auto;
}

.price-note {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 720px);
  gap: 28px;
  align-items: start;
  padding: 28px max(48px, calc((100vw - 1160px) / 2));
  background: rgba(255, 148, 54, 0.58);
  backdrop-filter: saturate(130%) blur(1px);
}

.contact-band__intro h2 {
  max-width: 310px;
  color: var(--ink);
  font-size: 36px;
}

.contact-band__intro p {
  color: var(--text);
  font-weight: 900;
}

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

.contact-widget {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(9, 36, 83, 0.14);
  border-radius: 12px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(95, 63, 30, 0.1);
}

.contact-widget span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.contact-widget--max span,
.contact-widget--phone span,
.footer-max {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.contact-widget strong {
  font-size: 13px;
  line-height: 1.2;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 42px rgba(95, 63, 30, 0.12);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 36, 83, 0.16);
  border-radius: 9px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 118, 33, 0.12);
}

.policy-check {
  display: flex !important;
  grid-template-columns: none;
  gap: 10px !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 13px;
}

.policy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.policy-check a {
  color: var(--ink);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 900;
}

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

.form-status--error {
  color: #be3a20;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 14px max(36px, calc((100vw - 1160px) / 2));
  background: var(--navy-deep);
  color: var(--white);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
  opacity: 0.86;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

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

.policy-shell {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.policy-shell h1 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
}

.policy-shell p {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero__photo {
    max-width: 620px;
  }

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

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

  .about-text {
    grid-column: 1 / -1;
  }

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

  .process-line::before {
    display: none;
  }

  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 480px);
  }

  .section {
    padding: 22px 0;
  }

  .site-header {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 36px;
    font-size: 32px;
  }

  .brand-text {
    font-size: 20px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding: 98px 14px 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__photo img {
    height: 420px;
    object-position: 58% 50%;
  }

  .section-heading--row,
  .form-row {
    display: grid;
  }

  .service-grid,
  .project-grid,
  .about-grid,
  .process-line,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .project-card a {
    min-height: 292px;
  }

  .project-card img {
    height: 220px;
  }

  .project-card a::before {
    height: 220px;
  }

  .brand img {
    width: 72px;
  }

  .contact-band {
    padding: 26px 14px;
  }

  .contact-band__intro h2 {
    max-width: none;
  }

  .site-footer {
    padding: 18px 14px;
  }
}

/* July portfolio refinements */
.hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 575px);
  align-items: stretch;
}

.hero__content {
  align-self: center;
}

.hero__photo {
  align-self: stretch;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.hero__photo img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
  background: none;
}

.project-card--bloom .project-copy {
  top: 42px;
  left: 22px;
  max-width: 52%;
  color: #2b1d2a;
  text-transform: uppercase;
  text-shadow: none;
}

.project-card--bloom .project-copy strong {
  color: #221622;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  letter-spacing: 0;
}

.project-card--bloom .project-copy small {
  color: #2b1d2a;
  font-size: 13px;
  line-height: 1.2;
}

.project-card--bloom img {
  object-position: center center;
}

.project-card--family img,
.project-card--lawyers img {
  object-position: center top;
}

.project-card--dark .project-copy {
  top: 112px;
  max-width: 70%;
}

.project-card--dark .project-copy small {
  font-size: 17px;
  line-height: 1.18;
}

.project-card--interior .project-copy {
  top: 76px;
  max-width: 60%;
}

.project-card--interior .project-copy strong {
  font-size: 34px;
}

.project-card--dark h3,
.project-card--interior h3,
.project-arrow {
  z-index: 3;
}

.value-card {
  justify-content: flex-start;
  padding-top: 46px;
}

.value-card span {
  flex: 0 0 auto;
  margin-bottom: 28px;
}

.value-card h3 {
  min-height: 42px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.value-card p {
  margin-top: 14px;
}

.contact-band {
  grid-template-columns: minmax(0, 1fr);
  padding-top: 44px;
  padding-bottom: 34px;
}

.contact-band__intro {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
}

.contact-band__intro h2 {
  max-width: 390px;
  font-size: 46px;
}

.contact-widgets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.contact-widget {
  min-height: 96px;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 16px 18px;
}

.contact-widget span {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  font-size: 22px;
}

.contact-widget strong {
  font-size: 20px;
  line-height: 1.18;
}

.lead-form {
  width: min(860px, 100%);
  justify-self: center;
}

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

  .hero__photo {
    max-width: none;
  }

  .hero__photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .contact-band__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .hero__photo img {
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: center center;
  }

  .project-card--dark .project-copy {
    top: 92px;
  }

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

  .contact-widget {
    width: 100%;
  }

  .contact-band__intro h2 {
    font-size: 38px;
  }
}

/* July portfolio correction pass */
.hero {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
}

.hero__photo {
  align-self: center;
}

.hero__photo img {
  height: clamp(600px, 42vw, 850px);
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.project-card--aura img {
  object-position: center top;
}

.project-card--aura .project-tag,
.project-card--bloom .project-tag {
  z-index: 4;
}

.project-card--bloom .project-copy {
  top: 86px;
  max-width: 48%;
}

.project-card--bloom .project-copy strong {
  font-size: 34px;
}

.project-card--bloom .project-copy small {
  font-size: 15px;
}

.contact-band {
  grid-template-columns: minmax(300px, 390px) minmax(0, 860px);
  gap: 36px;
  align-items: start;
}

.contact-band__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.contact-band__intro h2 {
  max-width: 390px;
  font-size: clamp(42px, 5vw, 72px);
}

.contact-band__intro p {
  max-width: 780px;
}

.contact-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 18px;
}

.contact-widget {
  min-height: 104px;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 22px;
}

.contact-widget span {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  font-size: 24px;
}

.contact-widget strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 22px;
}

.lead-form {
  width: 100%;
  justify-self: stretch;
}

.contact-widget--phone strong {
  white-space: nowrap;
  font-size: 20px;
}

@media (max-width: 420px) {
  .contact-widget--phone strong {
    white-space: normal;
  }
}


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

  .hero__photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

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

@media (max-width: 640px) {
  .hero__photo img {
    aspect-ratio: 3 / 4;
  }

  .project-card--bloom .project-copy {
    top: 78px;
  }

  .contact-widget {
    min-height: 96px;
  }
}

/* July portfolio final alignment */
.hero {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.hero__photo {
  align-self: center;
  max-width: 520px;
}

.hero__photo img {
  width: 100%;
  height: clamp(540px, 35vw, 720px);
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.contact-band {
  grid-template-columns: minmax(260px, 340px) minmax(0, 940px);
  gap: 42px;
  align-items: start;
  padding-top: 38px;
}

.contact-band__intro {
  gap: 18px;
}

.contact-band__intro h2 {
  max-width: 330px;
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 1.03;
}

.contact-band__intro p {
  max-width: 330px;
  font-size: 16px;
  line-height: 1.45;
}

.contact-widgets {
  gap: 16px;
  margin-top: 16px;
}

.contact-widget {
  min-height: 78px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 16px;
}

.contact-widget span {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  font-size: 18px;
}

.contact-widget strong,
.contact-widget--phone strong {
  font-size: 16px;
  line-height: 1.2;
}

.lead-form {
  width: 100%;
  max-width: 940px;
  padding: 24px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  font-size: 16px;
}

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

  .hero__photo {
    max-width: 620px;
  }

  .hero__photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

  .contact-band__intro h2,
  .contact-band__intro p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero__photo img {
    aspect-ratio: 3 / 4;
  }

  .contact-widget {
    min-height: 74px;
  }
}

/* July portfolio contact nudge */
.contact-band__intro {
  transform: translateY(-18px);
}

@media (max-width: 980px) {
  .contact-band__intro {
    transform: none;
  }
}

/* Mobile polish pass - 2026-07-10 */
@media (max-width: 820px) {
  body {
    background-size: 1600px auto;
  }

  .shell {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    width: calc(100% - 32px);
    grid-template-columns: auto auto;
    gap: 14px;
    padding-top: 14px;
  }

  .brand img {
    width: 68px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 104px 16px 34px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(38px, 10.5vw, 58px);
    line-height: 1.12;
  }

  .hero p {
    max-width: 560px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .chips {
    gap: 10px;
    margin-top: 22px;
  }

  .chips span {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .hero__actions .button {
    flex: 1 1 210px;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero__photo {
    width: min(100%, 520px);
    max-width: 520px;
    justify-self: center;
    border-radius: 14px;
  }

  .hero__photo img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
  }

  .section-heading--row {
    align-items: start;
  }

  .service-grid,
  .project-grid,
  .package-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-text {
    grid-column: 1 / -1;
  }

  .contact-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 16px 28px;
  }

  .contact-band__intro {
    transform: none;
  }

  .contact-band__intro h2,
  .contact-band__intro p {
    max-width: none;
  }

  .contact-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-widget {
    min-height: 76px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .contact-widget span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }

  .contact-widget strong,
  .contact-widget--phone strong {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 560px) {
  body {
    background-size: 1200px auto;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 24px 0;
  }

  .site-header {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 58px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    gap: 24px;
    padding: 88px 14px 30px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 46px);
    line-height: 1.11;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.58;
  }

  .chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .chips span {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button,
  .package-card .button {
    width: 100%;
  }

  .hero__photo img {
    aspect-ratio: 1 / 1.08;
    object-position: 52% center;
  }

  h2 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .section-heading--row {
    display: grid;
    gap: 10px;
  }

  .service-grid,
  .project-grid,
  .about-grid,
  .package-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-icon,
  .value-card span {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }

  .project-card a {
    min-height: 300px;
  }

  .project-card img,
  .project-card a::before {
    height: 230px;
  }

  .project-card h3 {
    padding: 17px 54px 20px 18px;
    font-size: 22px;
  }

  .project-tag {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    white-space: normal;
  }

  .project-card--bloom .project-copy {
    top: 72px;
    left: 18px;
    max-width: 52%;
  }

  .project-card--bloom .project-copy strong {
    font-size: 29px;
  }

  .project-card--dark .project-copy,
  .project-card--interior .project-copy {
    top: 78px;
    left: 18px;
    max-width: 68%;
  }

  .project-card--dark .project-copy strong,
  .project-card--interior .project-copy strong {
    font-size: 25px;
  }

  .about-text {
    padding: 20px;
    font-size: 14px;
  }

  .value-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .value-card span {
    margin-bottom: 16px;
  }

  .value-card h3 {
    min-height: 0;
  }

  .process-line article,
  .package-card {
    min-height: auto;
  }

  .package-title {
    display: grid;
    gap: 8px;
  }

  .package-title strong {
    white-space: normal;
  }

  .contact-band {
    padding: 28px 14px 24px;
  }

  .contact-band__intro h2 {
    font-size: clamp(34px, 12vw, 44px);
  }

  .contact-widgets {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-widget {
    min-height: 68px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .lead-form {
    padding: 16px;
    gap: 12px;
  }

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

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 13px 12px;
    font-size: 15px;
  }

  .policy-check {
    font-size: 12px;
    line-height: 1.35;
  }

  .site-footer {
    justify-items: center;
    gap: 14px;
    padding: 18px 14px;
    text-align: center;
  }

  .brand--small img {
    width: 54px;
  }

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

@media (max-width: 380px) {
  .chips {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .project-card img,
  .project-card a::before {
    height: 214px;
  }

  .contact-widget strong,
  .contact-widget--phone strong {
    font-size: 13px;
  }
}
