:root {
  --ink: #0c0f10;
  --charcoal: #1d2528;
  --muted: #5f6f76;
  --paper: #f4f8f9;
  --stone: #d9e7eb;
  --white: #ffffff;
  --teal: #5890a0;
  --teal-dark: #2d5f6d;
  --copper: #0c0f10;
  --copper-dark: #000000;
  --line: rgba(12, 15, 16, 0.13);
  --shadow: 0 22px 50px rgba(9, 31, 38, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 80px;
  padding: 0.65rem max(1rem, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(88, 144, 160, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: clamp(148px, 17vw, 190px);
  height: clamp(46px, 5.4vw, 60px);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 49%;
  border-radius: 8px;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  color: rgba(12, 15, 16, 0.76);
  font-size: 0.92rem;
}

.nav a,
.header-cta,
.button {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.contact-list a:hover,
.footer-meta a:hover {
  color: var(--teal-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.1;
}

.header-cta {
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.9rem;
}

.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(9, 31, 38, 0.24);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--teal-dark);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.19);
}

.hero {
  min-height: 84svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 11, 13, 0.87), rgba(13, 40, 47, 0.64) 46%, rgba(13, 40, 47, 0.22)),
    linear-gradient(0deg, rgba(12, 15, 16, 0.42), rgba(12, 15, 16, 0)),
    url("assets/hero-property-shoot.png") center / cover no-repeat;
}

.hero__inner {
  padding: 5rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b7dbe4;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 680px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(12, 15, 16, 0.42);
  backdrop-filter: blur(10px);
}

.hero__facts div {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero__facts dt {
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section--intro,
.section--faq {
  background: var(--white);
}

.split,
.about,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.split p,
.section__header p,
.about__copy,
.service-card p,
.pricing-card p,
.portfolio-categories p,
.process-list p,
.faq-grid p,
.contact-panel p,
.form-note,
.site-footer p {
  color: var(--muted);
}

.section__header {
  max-width: 720px;
  margin-bottom: 2rem;
}

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

.service-card,
.pricing-card,
.portfolio-categories article,
.process-list li,
.faq-grid details,
.contact-panel,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 230px;
  padding: 1.25rem;
}

.service-card__number,
.process-list span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.section--pricing,
.section--process,
.contact-section {
  background: #eaf3f5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  padding: 1.35rem;
  box-shadow: 0 16px 36px rgba(12, 15, 16, 0.06);
}

.pricing-card--featured {
  border-color: rgba(88, 144, 160, 0.52);
  box-shadow: var(--shadow);
}

.pricing-card__head {
  min-height: 128px;
}

.price-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.price-list strong,
.big-price {
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.pricing-card hr {
  margin: 1.35rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1rem;
}

.portfolio-feature {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.portfolio-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.portfolio-feature figcaption {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.portfolio-categories {
  display: grid;
  gap: 1rem;
}

.portfolio-categories article {
  padding: 1.2rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  padding: 1.25rem;
}

.about {
  align-items: start;
}

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

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

.faq-grid details {
  padding: 1.1rem 1.2rem;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 0.8rem 0 0;
}

.contact-layout {
  align-items: stretch;
}

.contact-panel,
.inquiry-form {
  padding: 1.35rem;
}

.contact-list {
  display: grid;
  gap: 0.45rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.footer-meta a {
  color: var(--teal-dark);
  font-weight: 800;
}

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

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 15, 16, 0.18);
  border-radius: 6px;
  background: #fbfdfe;
  color: var(--ink);
  padding: 0.82rem 0.85rem;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.button:focus-visible,
.header-cta:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(88, 144, 160, 0.3);
  outline-offset: 3px;
}

.span-2 {
  grid-column: span 2;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 2.4rem 0;
  background: var(--ink);
  color: var(--white);
}

.brand--footer .brand__mark {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.brand--footer small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  margin: 0;
}

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

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 1.85rem;
  }

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

  .split,
  .about,
  .contact-layout,
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0.65rem 1rem;
  }

  .brand__mark {
    width: 136px;
    height: 43px;
  }

  .header-cta {
    padding: 0.68rem 0.75rem;
    font-size: 0.82rem;
  }

  .nav {
    gap: 1rem;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 82svh;
    background-position: 58% center;
  }

  .hero__inner {
    padding: 3.3rem 0 2.2rem;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .hero__facts,
  .service-grid,
  .pricing-grid,
  .process-list,
  .faq-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .section {
    padding: 3.6rem 0;
  }

  .pricing-card__head {
    min-height: auto;
  }

  .span-2 {
    grid-column: span 1;
  }
}
