:root {
  --color-blue: #1b7fad;
  --color-blue-dark: #195874;
  --color-yellow: #eeee22;
  --color-sky: #6ec1e4;
  --color-text: #333333;
  --color-muted: #696969;
  --color-line: #d9d9d0;
  --color-paper: #ffffff;
  --color-soft: #f6f7f4;
  --color-ink: #161616;
  --shadow: 0 24px 80px rgba(25, 88, 116, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--color-paper);
  background: rgba(22, 22, 22, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-solid {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 2px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-blue-dark);
  background: var(--color-yellow);
}

.site-nav .nav-cta {
  color: var(--color-paper);
  background: var(--color-blue);
}

.site-nav .nav-cta.is-active {
  color: var(--color-ink);
  background: var(--color-yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 80px) 74px;
  overflow: hidden;
  color: var(--color-paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 80px);
  right: clamp(20px, 6vw, 80px);
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-yellow), var(--color-sky));
  z-index: 2;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 8vw, 8.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.7rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.hero-lede {
  margin: 20px 0 34px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--color-paper);
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--color-ink);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.button-secondary {
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border-color: currentColor;
}

.intro-section,
.services-section,
.instagram-section,
.contact-section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 70px);
}

.page-main {
  padding-top: 82px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 70px);
  background: var(--color-soft);
}

.page-hero > div {
  width: min(100%, 760px);
  margin-left: auto;
}

.page-hero h1 {
  color: var(--color-text);
}

.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero-blue {
  color: var(--color-paper);
  background: var(--color-blue-dark);
}

.page-hero-blue h1,
.page-hero-blue p {
  color: inherit;
}

.page-hero img.about-hero-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  object-position: center 18%;
}

.intro-section,
.instagram-section {
  background: var(--color-soft);
}

.section-grid,
.contact-panel,
.section-heading,
.service-block {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.section-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--color-blue-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.portrait-wrap {
  position: relative;
  margin: 0;
  padding: 18px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 42%;
  background: var(--color-yellow);
  z-index: -1;
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.portrait-wrap figcaption {
  padding: 16px 4px 2px;
  color: var(--color-text);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.portrait-wrap span {
  color: var(--color-blue-dark);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(44px, 7vw, 76px);
}

.section-heading h2 {
  max-width: 840px;
}

.feature-links,
.collection-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

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

.feature-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 14px;
  color: inherit;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(25, 88, 116, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.feature-card span {
  color: var(--color-blue-dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.feature-card p {
  margin: -8px 0 4px;
  color: var(--color-muted);
}

.service-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(44px, 8vw, 92px);
}

.service-block:first-of-type {
  margin-top: 0;
}

.service-block-reverse {
  grid-template-columns: 1fr 1.1fr;
}

.service-block-reverse .service-copy {
  order: 2;
}

.service-copy {
  border-left: 6px solid var(--color-blue);
  padding-left: 26px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-blue-dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.service-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.feature-image {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: clamp(28px, 5vw, 54px);
  color: var(--color-paper);
  background: var(--color-blue-dark);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.22;
}

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

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img,
.word-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-item img {
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.word-grid img {
  background: var(--color-soft);
  border: 1px solid var(--color-line);
}

.phone-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
}

.phone-stack img {
  width: 100%;
  border: 10px solid var(--color-paper);
  box-shadow: var(--shadow);
}

.phone-stack img:nth-child(2) {
  transform: translateY(-28px);
}

.standalone {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.standalone h1 {
  color: var(--color-text);
}

.standalone a:not(.button) {
  color: var(--color-blue-dark);
  font-weight: 700;
}

.collection-grid {
  display: grid;
  gap: 24px;
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 60px rgba(25, 88, 116, 0.08);
}

.collection-card:nth-child(even) {
  background: var(--color-soft);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.collection-card p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--color-muted);
}

.contact-section {
  background: var(--color-blue-dark);
  color: var(--color-paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
}

.contact-panel p {
  max-width: 560px;
}

.contact-photo {
  width: min(100%, 340px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.contact-intro h1 {
  max-width: 720px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.contact-intro > p:not(.contact-role) {
  max-width: 520px;
  font-size: 1.08rem;
}

.contact-portrait {
  position: relative;
  margin: 0;
  justify-self: end;
}

.contact-portrait::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 64%;
  height: 64%;
  background: var(--color-yellow);
  z-index: -1;
}

.contact-section.full {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.contact-role {
  color: var(--color-yellow);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-details p {
  margin: 0 0 12px;
}

.contact-actions {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-ink);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--color-paper);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-yellow);
}

.lightbox {
  width: min(92vw, 900px);
  padding: 0;
  color: var(--color-paper);
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: var(--color-ink);
}

.lightbox p {
  margin: 12px 0 0;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 42px;
  height: 42px;
  color: var(--color-paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section-grid,
  .service-block,
  .service-block-reverse,
  .contact-panel,
  .page-hero,
  .collection-card {
    grid-template-columns: 1fr;
  }

  .page-hero > div {
    margin-left: 0;
  }

  .feature-links {
    grid-template-columns: 1fr;
  }

  .service-block-reverse .service-copy {
    order: 0;
  }

  .image-grid,
  .word-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.7rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-stack {
    grid-template-columns: 1fr;
  }

  .phone-stack img:nth-child(2) {
    transform: none;
  }

  .contact-panel {
    padding: 28px 20px;
  }

  .contact-photo {
    max-width: 220px;
  }

  .page-main {
    padding-top: 72px;
  }

  .page-hero {
    padding-top: 42px;
  }
}
