:root {
  --ink: #151515;
  --charcoal: #1f1f1f;
  --soft-black: #101010;
  --paper: #f7f4ee;
  --white: #ffffff;
  --gold: #c39d5b;
  --gold-dark: #99763c;
  --mist: #e8ece9;
  --sage: #677c70;
  --terracotta: #a95f3f;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 22px 70px rgba(16, 16, 16, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(16, 16, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  width: clamp(128px, 12vw, 164px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(195, 157, 91, 0.7);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.burger-button,
.mobile-menu {
  display: none;
}

.menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.burger-button {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(195, 157, 91, 0.7);
  cursor: pointer;
}

.burger-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-menu {
  grid-column: 1 / -1;
  padding: 8px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .mobile-menu-cta {
  justify-content: center;
  width: max-content;
  min-height: 40px;
  margin-top: 10px;
  padding: 0 16px;
  color: var(--soft-black);
  background: var(--gold);
}

.menu-toggle:checked ~ .mobile-menu {
  display: grid;
}

.menu-toggle:checked + .burger-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle:checked + .burger-button span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .burger-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 74px) 78px;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/renovation-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.97) 0%, rgba(247, 244, 238, 0.86) 38%, rgba(247, 244, 238, 0.16) 72%),
    linear-gradient(0deg, rgba(16, 16, 16, 0.16), rgba(16, 16, 16, 0.02));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 10ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(21, 21, 21, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.6;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--soft-black);
  background: var(--gold);
}

.button.primary:hover {
  background: #d4b06d;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(21, 21, 21, 0.2);
}

.button.compact,
.contact-section > .button {
  width: max-content;
  min-height: 44px;
  align-self: center;
  justify-self: start;
  padding: 0 18px;
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--soft-black);
  color: var(--white);
  border-top: 4px solid var(--gold);
}

.trust-strip div {
  min-height: 132px;
  padding: 30px clamp(20px, 4vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  max-width: 26ch;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.promotions-section {
  background: var(--paper);
}

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

.promotion-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 16, 16, 0.96), rgba(31, 31, 31, 0.88)),
    var(--soft-black);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.promotion-card span {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promotion-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.promotion-card h3 {
  color: var(--gold);
}

.promotion-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.promotion-card small {
  display: block;
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.promotion-card a {
  display: inline-flex;
  width: max-content;
  min-height: 42px;
  align-items: center;
  margin-top: auto;
  padding: 0 16px;
  color: var(--soft-black);
  background: var(--gold);
  font-weight: 900;
}

.promotion-empty {
  grid-column: 1 / -1;
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 74px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.4fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  margin-bottom: clamp(34px, 6vw, 76px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 92px);
  background: var(--white);
}

.about .section-heading {
  display: block;
  margin-bottom: 0;
}

.about-copy {
  align-self: end;
  color: rgba(21, 21, 21, 0.72);
  font-size: 1.06rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--sage);
}

.services {
  background: #eeeeee;
}

.services-heading {
  margin-bottom: clamp(56px, 9vw, 124px);
}

.services-heading h2 {
  max-width: none;
  font-size: clamp(5rem, 11vw, 11.6rem);
  line-height: 0.76;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 64px);
}

.service-card {
  position: relative;
  min-height: clamp(470px, 43vw, 670px);
  display: grid;
  align-content: start;
  padding: clamp(34px, 4.2vw, 66px);
  background: var(--white);
  border: 2px solid rgba(21, 21, 21, 0.34);
  box-shadow: none;
  overflow: hidden;
}

.service-number {
  color: rgba(21, 21, 21, 0.12);
  font-size: clamp(5rem, 8vw, 8.6rem);
  line-height: 1;
  font-weight: 950;
}

.service-icon {
  position: absolute;
  top: clamp(78px, 8vw, 112px);
  right: clamp(38px, 5vw, 74px);
  width: clamp(122px, 11vw, 180px);
  height: clamp(122px, 11vw, 180px);
  opacity: 0.92;
}

.floor-icon {
  background:
    linear-gradient(90deg, transparent 17%, var(--charcoal) 18% 20%, transparent 21% 42%, var(--charcoal) 43% 45%, transparent 46% 67%, var(--charcoal) 68% 70%, transparent 71%),
    linear-gradient(38deg, transparent 0 47%, var(--charcoal) 48% 50%, transparent 51%),
    linear-gradient(145deg, transparent 0 48%, var(--gold) 49% 52%, transparent 53%);
  border: 2px solid rgba(31, 31, 31, 0.35);
}

.paint-icon {
  border: 3px solid var(--charcoal);
  border-radius: 28px 28px 8px 8px;
}

.paint-icon::before,
.paint-icon::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
}

.paint-icon::before {
  left: -12px;
  top: 12px;
  width: 52px;
  height: 12px;
}

.paint-icon::after {
  left: 28px;
  bottom: -28px;
  width: 12px;
  height: 32px;
}

.finish-icon {
  border: 4px solid var(--charcoal);
}

.finish-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--gold);
}

.service-card h3 {
  max-width: 8ch;
  margin-top: clamp(46px, 6vw, 74px);
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4vw, 4rem);
  line-height: 1.05;
}

.service-card p {
  min-height: 112px;
  color: rgba(21, 21, 21, 0.68);
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  width: max-content;
  min-width: 176px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid rgba(195, 157, 91, 0.9);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 900;
}

.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-steps div {
  min-height: 250px;
  padding: 32px;
  background: var(--white);
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: var(--white);
  background: var(--terracotta);
  font-weight: 950;
}

.process-steps p {
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 74px);
  color: var(--white);
  background: var(--soft-black);
}

.contact-copy p:last-child {
  max-width: 58ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21, 21, 21, 0.2);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(20px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.75);
  background: #070707;
}

.site-footer img {
  width: 160px;
}

.site-footer p {
  margin: 0;
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 74px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.36)),
    url("assets/renovation-hero.png") center / cover;
}

.page-hero > div {
  width: min(820px, 100%);
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero p:last-child {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}

.page-hero .button {
  margin-top: 18px;
}

.about-standard {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  background: var(--white);
}

.about-standard p {
  color: rgba(21, 21, 21, 0.68);
  font-size: 1.08rem;
  line-height: 1.78;
}

.center-heading {
  max-width: 840px;
  margin: 0 auto clamp(34px, 6vw, 70px);
  text-align: center;
}

.center-heading p:last-child {
  max-width: 62ch;
  margin: 18px auto 0;
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.7;
}

.values-section {
  background: var(--mist);
}

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

.value-grid article,
.team-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.value-grid p,
.team-grid p {
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.65;
}

.team-section {
  background: var(--white);
}

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

.team-photo,
.service-thumb,
.finish-photo,
.contact-intro-photo {
  background-image: url("assets/renovation-hero.png");
  background-size: cover;
  box-shadow: var(--shadow);
}

.team-photo {
  height: 260px;
  margin-bottom: 18px;
}

.floor-team,
.floor-thumb,
.floor-detail {
  background-position: center bottom;
}

.paint-team,
.paint-thumb,
.paint-detail {
  background-position: left center;
}

.lead-team,
.finish-thumb {
  background-position: right center;
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.85fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.project-photo,
.gallery-photo {
  min-height: 520px;
  background-image: url("assets/renovation-hero.png");
  background-size: cover;
  box-shadow: var(--shadow);
}

.project-photo {
  background-position: center;
}

.featured-work p {
  color: rgba(21, 21, 21, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.work-list article {
  min-height: 330px;
  padding: 34px;
  background: var(--paper);
}

.work-list span {
  display: block;
  margin-bottom: 32px;
  color: rgba(21, 21, 21, 0.14);
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
}

.work-list h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.work-list p {
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.7;
}

.core-services {
  background: var(--mist);
}

.service-grid-gold article {
  display: grid;
  justify-items: center;
  min-height: 320px;
  padding: 28px;
  text-align: center;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  box-shadow: none;
}

.service-grid-gold p {
  color: rgba(16, 16, 16, 0.74);
  line-height: 1.55;
}

.service-grid-gold a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  align-self: end;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
}

.service-thumb {
  width: 92px;
  height: 82px;
  margin-bottom: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.86fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.service-detail.reverse {
  background: var(--paper);
}

.service-detail p {
  color: rgba(21, 21, 21, 0.68);
  font-size: 1.06rem;
  line-height: 1.75;
}

.service-detail .button {
  margin-top: 18px;
}

.finishing-section {
  background: var(--white);
}

.finish-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 840px;
  margin: 0 auto;
}

.finish-photo {
  min-height: 330px;
}

.finish-photo.one {
  background-position: right center;
}

.finish-photo.two {
  background-position: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: clamp(18px, 2.2vw, 28px);
  background: var(--white);
}

.gallery-item {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(21, 21, 21, 0.16);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.08);
}

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

.gallery-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: inherit;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.gallery-item.feature .gallery-media {
  aspect-ratio: 16 / 10;
}

.gallery-photo,
.gallery-image {
  width: 100%;
  height: 100%;
}

.gallery-image {
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-media:hover .gallery-image {
  transform: scale(1.035);
}

.photo-one {
  background-position: center bottom;
}

.photo-two {
  background-position: left center;
}

.photo-three {
  background-position: right center;
}

.photo-four {
  background-position: 58% center;
}

.photo-five {
  background-position: right bottom;
}

.gallery-caption {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 30px);
}

.gallery-caption span {
  color: rgba(21, 21, 21, 0.26);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.86;
}

.gallery-item h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.gallery-item p {
  margin: 0;
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.6;
}

.contact-page-form {
  padding-top: clamp(70px, 9vw, 116px);
}

.quote-banner {
  display: grid;
  justify-items: center;
  padding: 150px clamp(20px, 5vw, 74px) 70px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quote-banner h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.quote-banner p {
  max-width: 58ch;
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.7;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 74px);
  background: var(--paper);
}

.contact-intro h1 {
  max-width: 10ch;
}

.contact-intro p:last-child {
  max-width: 48ch;
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.7;
}

.contact-intro-photo {
  min-height: 420px;
  background-position: center;
}

.contact-form span {
  color: #8a261d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  color: #1f5135;
  background: #dff1e6;
  font-weight: 900;
}

.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 20px;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.88), rgba(16, 16, 16, 0.56)),
    url("assets/renovation-hero.png") center / cover;
}

.login-panel {
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 48px);
  background: rgba(247, 244, 238, 0.96);
  box-shadow: var(--shadow);
}

.login-logo {
  display: block;
  width: 190px;
  margin-bottom: 36px;
  padding: 14px;
  background: var(--soft-black);
}

.login-panel h1,
.dashboard-hero h1 {
  max-width: none;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(21, 21, 21, 0.22);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 650;
}

.admin-form textarea {
  resize: vertical;
  min-height: 118px;
}

.admin-form span {
  color: #8a261d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

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

.remember-row {
  grid-template-columns: 18px 1fr;
  align-items: center;
  color: rgba(21, 21, 21, 0.72);
  text-transform: none;
}

.remember-row input {
  min-height: 18px;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  color: #7b2017;
  background: #f7ded9;
  font-weight: 800;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 74px);
  color: var(--white);
  background: var(--soft-black);
}

.admin-header .header-cta {
  background: transparent;
  cursor: pointer;
}

.admin-dashboard {
  min-height: calc(100vh - 84px);
  padding: clamp(56px, 8vw, 98px) clamp(20px, 5vw, 74px);
  background: var(--paper);
}

.dashboard-hero {
  max-width: 920px;
  margin-bottom: 42px;
}

.dashboard-hero p:last-child {
  max-width: 62ch;
  color: rgba(21, 21, 21, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.dashboard-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dashboard-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.dashboard-grid p {
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.65;
}

.dashboard-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(195, 157, 91, 0.75);
  color: var(--gold-dark);
  font-weight: 900;
}

.admin-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 5vw, 68px);
  margin-top: 36px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admin-panel h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.admin-panel p {
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.7;
}

.promotion-form {
  margin-top: 0;
}

.promotion-admin-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.promotion-admin-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.promotion-admin-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promotion-admin-list h3 {
  margin-bottom: 8px;
}

.promotion-admin-list p,
.promotion-admin-list small {
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.55;
}

.promotion-actions {
  display: flex;
  gap: 10px;
}

.header-cta.danger {
  border-color: rgba(169, 95, 63, 0.65);
  color: var(--terracotta);
}

.gallery-admin-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.gallery-admin-list article {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.gallery-admin-list img {
  width: 132px;
  height: 92px;
  object-fit: cover;
}

.gallery-admin-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-admin-list h3 {
  margin-bottom: 8px;
}

.gallery-admin-list p {
  margin-bottom: 0;
  color: rgba(21, 21, 21, 0.66);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: 74px;
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .burger-button {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding-top: 116px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(247, 244, 238, 0.98), rgba(247, 244, 238, 0.82)),
      linear-gradient(0deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.08));
  }

  .trust-strip,
  .service-grid,
  .process-steps,
  .about,
  .contact-section,
  .section-heading,
  .about-standard,
  .value-grid,
  .team-grid,
  .dashboard-grid,
  .featured-work,
  .work-list,
  .service-detail,
  .finish-gallery,
  .contact-intro,
  .promotion-grid,
  .admin-panel,
  .admin-form-row,
  .promotion-admin-list article,
  .gallery-admin-list article {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  }

  .promotion-actions {
    flex-wrap: wrap;
  }

  .gallery-item.feature {
    grid-column: auto;
  }

  .page-hero {
    min-height: 56vh;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    width: 118px;
  }

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

  .burger-button {
    width: 40px;
    height: 40px;
  }

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

  .gallery-caption {
    padding: 20px;
  }

  .mobile-menu {
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .hero,
  .page-hero,
  .quote-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .button {
    width: 100%;
  }

  .button.compact,
  .contact-section > .button {
    width: max-content;
    max-width: 100%;
  }

  .service-card,
  .process-steps div,
  .contact-form {
    padding: 24px;
  }

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

  .service-icon {
    width: 92px;
    height: 92px;
    right: 24px;
    top: 42px;
  }

  .services-heading h2 {
    font-size: clamp(4.5rem, 18vw, 7rem);
    line-height: 0.8;
  }

  .service-card h3 {
    margin-top: 42px;
    font-size: 2.25rem;
  }

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