:root {
  color-scheme: light;
  --evergreen: #10231b;
  --evergreen-2: #17372a;
  --leaf: #5f7f46;
  --moss: #a7b673;
  --stone: #e8e2d6;
  --paper: #fbfaf6;
  --ink: #18211b;
  --muted: #5d665e;
  --line: rgba(16, 35, 27, 0.14);
  --gold: #d9a95d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(17, 29, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 19, 14, 0.82), rgba(8, 19, 14, 0.18));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

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

.nav-links a:hover,
.header-cta:hover {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 152px 32px 84px;
  color: var(--white);
}

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

.hero-media {
  background-image: url("/assets/instagram-lighting-1.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.92) 0%, rgba(7, 18, 13, 0.68) 42%, rgba(7, 18, 13, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 18, 13, 0.2) 0%, rgba(7, 18, 13, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #1d170d;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--evergreen);
  color: var(--white);
}

.trust-strip div {
  min-height: 136px;
  padding: 30px 32px;
  background: var(--evergreen-2);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 88px 32px;
}

.intro,
.services,
.team,
.shine365,
.process {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid,
.section-heading,
.shine365,
.process {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

.intro p,
.section-heading p,
.contact-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  border-bottom: 2px solid rgba(16, 35, 27, 0.22);
  color: var(--evergreen);
  font-weight: 900;
  text-decoration: none;
}

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

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

.service-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 29, 22, 0.06);
}

.feature-card {
  min-height: 360px;
}

.service-number {
  display: block;
  margin-bottom: 72px;
  color: var(--leaf);
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card ul,
.team-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.team-card,
.shine-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 29, 22, 0.06);
}

.team-card {
  padding: 28px;
}

.team-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.shine365 {
  align-items: center;
}

.shine-panel {
  padding: 32px;
}

.shine-panel strong {
  display: block;
  margin-bottom: 18px;
  color: var(--evergreen);
  font-size: 28px;
  line-height: 1.15;
}

.shine-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--evergreen);
}

.image-band figure {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  border-radius: 8px;
  background: rgba(16, 35, 27, 0.82);
  color: var(--white);
  font-weight: 700;
}

.process {
  align-items: center;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list strong {
  color: var(--evergreen);
}

.process-list span {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
  padding: 82px 32px;
  background:
    linear-gradient(90deg, rgba(16, 35, 27, 0.95), rgba(16, 35, 27, 0.84)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.contact-copy {
  width: min(680px, 100%);
  justify-self: end;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.email-link {
  display: block;
  overflow-wrap: anywhere;
  margin-bottom: 18px;
  color: var(--evergreen);
  font-size: 24px;
  font-weight: 900;
  text-decoration-color: rgba(16, 35, 27, 0.3);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  background: #08130e;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

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

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .trust-strip,
  .intro-grid,
  .section-heading,
  .shine365,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-grid.split,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    gap: 14px;
    padding: 14px 18px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand small {
    max-width: 116px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 126px 20px 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 18, 13, 0.94), rgba(7, 18, 13, 0.62)),
      linear-gradient(180deg, rgba(7, 18, 13, 0.12), rgba(7, 18, 13, 0.82));
  }

  h1 {
    max-width: 330px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-content {
    max-width: 350px;
  }

  .hero-copy,
  .hero-actions {
    max-width: 350px;
  }

  .hero-copy,
  .intro p,
  .section-heading p,
  .contact-copy p,
  .contact-panel p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .trust-strip div {
    min-height: 0;
    padding: 22px 20px;
  }

  .section,
  .contact {
    padding: 58px 20px;
  }

  .service-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 34px;
  }

  .image-band figure {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .email-link {
    font-size: 20px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }
}
