:root {
  --ink: #102235;
  --navy: #17243a;
  --deep: #161b2b;
  --gold: #b78332;
  --gold-light: #eec16f;
  --paper: #ffffff;
  --soft: #f6f3ee;
  --line: #e1dacd;
  --muted: #66707c;
  --shadow: 0 16px 34px rgba(16, 34, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 190px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a,
.header-call,
.button,
.footer a {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.header-call {
  padding: 8px 12px;
  color: var(--navy);
  border: 1px solid var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-call:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px) clamp(18px, 5vw, 54px);
}

.hero-copy {
  display: grid;
  gap: 14px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 500px;
  font-size: clamp(2.45rem, 5.2vw, 4.2rem);
  line-height: 0.94;
}

h2 {
  max-width: 700px;
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 1.02;
}

h3 {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy > p:not(.kicker),
.section-heading p,
.service-card p,
.process-list span,
.contact-info p {
  color: var(--muted);
}

.hero-copy > p:not(.kicker) {
  max-width: 430px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 2px;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--gold);
  background: #fff;
}

.owner-chip {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  width: min(100%, 360px);
  margin-top: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.owner-chip img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.owner-chip span {
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: clamp(340px, 48vw, 520px);
  object-fit: cover;
  object-position: center;
}

.hero-photo figcaption,
.gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(23, 36, 58, 0.9);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar span {
  color: var(--muted);
  font-size: 0.84rem;
}

.services,
.work,
.process,
.contact {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px) clamp(18px, 5vw, 54px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-top: 3px solid var(--gold);
}

.service-card p {
  font-size: 0.84rem;
}

.work {
  padding-top: clamp(24px, 5vw, 46px);
}

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

.gallery figure {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.process {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 26px;
  background: var(--soft);
  max-width: none;
  padding-left: clamp(18px, 8vw, 92px);
  padding-right: clamp(18px, 8vw, 92px);
}

.process > div:first-child {
  display: grid;
  gap: 9px;
}

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

.process-list div {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.process-list strong {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list span {
  font-size: 0.84rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(340px, 1.24fr);
  gap: clamp(22px, 5vw, 54px);
  color: #fff;
  background: var(--deep);
  max-width: none;
  padding-left: clamp(18px, 8vw, 92px);
  padding-right: clamp(18px, 8vw, 92px);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-info h2 {
  color: #fff;
}

.contact-info p:not(.kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-link {
  width: fit-content;
  color: #fff;
  font-weight: 900;
}

.contact-link:hover {
  color: var(--gold-light);
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links {
  margin-top: 4px;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links a {
  color: #fff;
}

.social-links a:hover {
  color: var(--deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-social a {
  color: var(--navy);
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(238, 193, 111, 0.58);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

button {
  min-height: 40px;
  border: 0;
  color: var(--deep);
  background: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 16px;
  align-items: start;
  padding: 18px clamp(18px, 5vw, 54px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.footer div {
  display: grid;
  gap: 4px;
}

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

.thanks-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 32px 18px;
  text-align: center;
  background: var(--soft);
}

.thanks-page img {
  width: min(420px, 90vw);
}

.thanks-page p {
  max-width: 480px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .contact,
  .process {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery,
  .trust-bar,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-bar div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand img {
    width: min(175px, 100%);
  }

  .nav {
    gap: 14px;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
  }

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

  .service-grid,
  .gallery,
  .trust-bar,
  .process-list,
  .contact-form,
  .footer {
    grid-template-columns: 1fr;
  }
}
