* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper: #f4efe7;
  --ink: #14213d;
  --soft: rgba(20, 33, 61, 0.68);
  --faint: rgba(20, 33, 61, 0.12);
  --line: rgba(20, 33, 61, 0.2);
  --cream: #fbf8f2;
  --clay: #a96f4c;
  --green: #536b5b;
  --max: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 7%;
}

.logo {
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  margin-left: 8px;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 20px;
}

.site-nav a,
.button-link,
.tag-row,
.kicker,
.home-copy p,
.intro-text,
.body-copy,
.service-list,
.package-card,
.portfolio-meta,
.site-footer,
.booking-panel {
  font-family: "Inter", Arial, sans-serif;
}

.site-nav a {
  color: var(--ink);
  font-size: 13px;
  opacity: 0.72;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  opacity: 1;
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 7%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 68px;
}

.hero-image {
  width: min(100%, 520px);
  justify-self: start;
}

.hero-image img {
  height: 430px;
  border-radius: 230px 230px 10px 10px;
  background: transparent;
  object-fit: cover;
  object-position: center 50%;
}

.home-copy {
  padding-bottom: 34px;
}

.home-copy h1,
.page-title {
  max-width: 820px;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

.home-copy p {
  max-width: 490px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.tag-row span:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(20, 33, 61, 0.28);
}

.kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rule {
  width: 60px;
  height: 1px;
  margin: 28px 0;
  background: var(--ink);
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.section-grid h2,
.section-heading h2,
.cta-panel h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 0.96;
}

.intro-text,
.body-copy {
  max-width: 580px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.85;
}

.service-list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.service-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 15px;
  line-height: 1.75;
}

.service-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.home-feature {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding: 0 0 96px;
}

.home-feature img {
  height: auto;
  border-radius: 3px;
  background: transparent;
  box-shadow: 0 22px 50px rgba(20, 33, 61, 0.12);
}

.home-feature .stack {
  display: contents;
}

.home-feature > img {
  grid-column: 5 / -1;
  grid-row: 1 / span 2;
  z-index: 2;
  width: 100%;
  margin-top: 42px;
}

.home-feature .stack img {
  height: auto;
}

.home-feature .stack img:first-child {
  grid-column: 1 / span 4;
  grid-row: 1;
  z-index: 3;
  width: 100%;
  margin-top: 8px;
  transform: rotate(-0.8deg);
}

.home-feature .stack img:last-child {
  grid-column: 2 / span 5;
  grid-row: 2;
  z-index: 1;
  width: 100%;
  margin-top: 8px;
  transform: rotate(0.8deg);
}

.work-range {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding: 20px 0 104px;
}

.work-range figure {
  min-width: 0;
  background: transparent;
}

.work-range img {
  height: auto;
  border-radius: 3px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.13);
}

.work-range figure:nth-child(1) {
  grid-column: 1 / span 4;
  margin-top: 58px;
  z-index: 2;
  transform: rotate(-0.8deg);
}

.work-range figure:nth-child(2) {
  grid-column: 5 / span 3;
  z-index: 5;
  transform: rotate(0.8deg);
}

.work-range figure:nth-child(3) {
  grid-column: 8 / -1;
  margin-top: 38px;
  z-index: 3;
  transform: rotate(-0.6deg);
}

.work-range figure:nth-child(4) {
  grid-column: 1 / span 5;
  margin-top: 18px;
  z-index: 4;
  transform: rotate(0.7deg);
}

.work-range figure:nth-child(5) {
  grid-column: 6 / span 4;
  margin-top: 56px;
  z-index: 1;
  transform: rotate(-0.8deg);
}

.work-range figure:nth-child(6) {
  grid-column: 10 / -1;
  margin-top: 10px;
  z-index: 6;
  transform: rotate(0.9deg);
}

.work-range figcaption {
  padding: 10px 0 0;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.portfolio-preview {
  padding-bottom: 96px;
}

.sample-work {
  padding: 22px 0 74px;
}

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

.sample-grid figure {
  min-width: 0;
}

.sample-grid .sample-large {
  grid-row: span 2;
}

.sample-grid img {
  height: 260px;
  border-radius: 3px;
  background: transparent;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.11);
}

.sample-grid figcaption,
.compact-list {
  font-family: "Inter", Arial, sans-serif;
}

.sample-grid figcaption {
  padding-top: 10px;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.support-panel-text {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: start;
}

.support-list-panel {
  padding: 26px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-list-panel .compact-list {
  margin-bottom: 0;
}

.support-panel img {
  height: auto;
  border-radius: 3px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.1);
}

.support-panel h2 {
  max-width: 720px;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 0.96;
}

.support-panel p {
  max-width: 620px;
  margin: 22px 0;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
}

.compact-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.compact-section {
  padding: 54px 0 34px;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.book-feature img {
  width: min(100%, 440px);
  height: auto;
  max-height: 620px;
  background: transparent;
  object-position: center;
}

.book-feature h2 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
}

.book-feature p {
  max-width: 540px;
  margin: 20px 0 28px;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.book-price {
  display: block;
  margin: 24px 0 4px;
  color: var(--clay);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.portfolio-strip {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 8px;
}

.portfolio-strip img {
  flex: 0 0 auto;
  height: auto;
  border-radius: 3px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.11);
}

.portfolio-strip img:nth-child(1) {
  width: 23%;
  margin-top: 44px;
  transform: rotate(-1.1deg);
}

.portfolio-strip img:nth-child(2) {
  width: 20%;
  transform: rotate(1deg);
}

.portfolio-strip img:nth-child(3) {
  width: 28%;
  margin-top: 92px;
  transform: rotate(-0.8deg);
}

.portfolio-strip img:nth-child(4) {
  width: 25%;
  margin-top: 20px;
  transform: rotate(1.3deg);
}

.packages-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.package-card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-card h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.price {
  display: block;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  list-style: none;
}

.package-card li,
.package-card p {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.note-block {
  padding: 28px 0 88px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.note-block strong {
  color: var(--ink);
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 60px;
  align-items: end;
  padding: 62px 0 64px;
  border-bottom: 1px solid var(--line);
}

.project-hero {
  grid-template-columns: minmax(0, 0.9fr);
  max-width: 980px;
}

.page-hero img {
  height: 460px;
  border-radius: 220px 220px 10px 10px;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.page-hero .body-copy {
  margin-top: 24px;
}

.project-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 74px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-flow article {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-flow h3 {
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.project-flow p {
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.portfolio-section {
  padding: 62px 0 86px;
}

.portfolio-group {
  margin-bottom: 74px;
}

.portfolio-group header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 0;
}

.portfolio-group h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.portfolio-meta {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.masonry {
  column-count: 3;
  column-gap: 14px;
}

.masonry figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  background: transparent;
}

.masonry img {
  border-radius: 2px;
  background: transparent;
}

.masonry figcaption {
  padding: 10px 0 0;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  grid-auto-flow: dense;
}

.portfolio-gallery figure {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  background: transparent;
}

.portfolio-gallery .span-3 {
  grid-column: span 3;
}

.portfolio-gallery .span-4 {
  grid-column: span 4;
}

.portfolio-gallery .span-5 {
  grid-column: span 5;
}

.portfolio-gallery .span-6 {
  grid-column: span 6;
}

.portfolio-gallery .span-7 {
  grid-column: span 7;
}

.portfolio-gallery img {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 2px;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.portfolio-gallery figcaption {
  flex: 0 0 auto;
  padding: 10px 0 0;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.portfolio-gallery .ratio-square img {
  aspect-ratio: 1;
}

.portfolio-gallery .ratio-landscape img {
  aspect-ratio: 16 / 10;
}

.portfolio-gallery .ratio-portrait img,
.portfolio-gallery figure:not([class*="ratio-"]) img {
  aspect-ratio: 3 / 4;
}

.film-add-on {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.32fr);
  gap: 28px;
  align-items: end;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.film-add-on h3 {
  margin: 4px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.film-add-on p {
  max-width: 560px;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.film-add-on figure {
  min-width: 0;
  margin: 0;
}

.film-add-on img {
  width: 100%;
  max-height: 360px;
  border-radius: 2px;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.film-add-on figcaption {
  padding-top: 9px;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
}

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

.wide-grid img {
  height: auto;
  border-radius: 2px;
  background: transparent;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 24px 0 86px;
}

.cta-panel img {
  height: 390px;
  border-radius: 175px 175px 10px 10px;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.cta-panel p {
  max-width: 560px;
  margin: 22px 0 30px;
  color: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.booking-panel {
  max-width: 720px;
  margin: 46px 0 96px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-panel p {
  margin-bottom: 24px;
  color: var(--soft);
  line-height: 1.8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 7%;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .page-hero,
  .cta-panel,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(100%, 620px);
    justify-self: center;
  }

  .page-hero img,
  .cta-panel img {
    height: 500px;
    border-radius: 170px 170px 10px 10px;
  }

  .hero-image img {
    height: 460px;
    border-radius: 210px 210px 10px 10px;
  }

  .home-copy {
    padding-bottom: 0;
  }

  .home-copy h1 {
    font-size: 58px;
  }

  .home-feature,
  .book-feature,
  .sample-grid,
  .packages-grid,
  .projects-grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .book-feature img {
    width: min(100%, 420px);
    max-height: none;
  }

  .work-range,
  .home-feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
    padding-bottom: 80px;
  }

  .work-range figure,
  .work-range figure:nth-child(1),
  .work-range figure:nth-child(2),
  .work-range figure:nth-child(3),
  .work-range figure:nth-child(4),
  .work-range figure:nth-child(5),
  .work-range figure:nth-child(6),
  .home-feature > img,
  .home-feature .stack img,
  .home-feature .stack img:first-child,
  .home-feature .stack img:last-child {
    position: static;
    width: 100%;
    transform: none;
  }

  .home-feature .stack {
    display: contents;
  }

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

  .portfolio-strip img,
  .portfolio-strip img:nth-child(1),
  .portfolio-strip img:nth-child(2),
  .portfolio-strip img:nth-child(3),
  .portfolio-strip img:nth-child(4) {
    width: 100%;
    margin-top: 0;
    transform: none;
  }

  .masonry {
    column-count: 2;
  }

  .portfolio-gallery .span-3,
  .portfolio-gallery .span-4,
  .portfolio-gallery .span-5,
  .portfolio-gallery .span-6,
  .portfolio-gallery .span-7,
  .portfolio-gallery figure {
    grid-column: span 6;
  }

  .sample-grid .sample-large {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .section-heading,
  .portfolio-group header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-nav {
    justify-content: center;
  }

  .logo {
    font-size: 36px;
  }

  .logo span {
    display: block;
    margin: 6px 0 0;
    font-size: 12px;
  }

  .page-shell {
    padding: 0 6%;
  }

  .hero {
    gap: 34px;
    padding-top: 28px;
  }

  .page-hero img,
  .cta-panel img {
    height: 430px;
    border-radius: 150px 150px 10px 10px;
  }

  .hero-image img {
    height: 370px;
    border-radius: 165px 165px 10px 10px;
  }

  .home-copy h1,
  .page-title {
    font-size: 46px;
  }

  .masonry {
    column-count: 1;
  }

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

  .portfolio-gallery .span-3,
  .portfolio-gallery .span-4,
  .portfolio-gallery .span-5,
  .portfolio-gallery .span-6,
  .portfolio-gallery .span-7,
  .portfolio-gallery figure {
    grid-column: 1 / -1;
  }

  .portfolio-gallery img,
  .portfolio-gallery .ratio-square img,
  .portfolio-gallery .ratio-landscape img,
  .portfolio-gallery .ratio-portrait img,
  .portfolio-gallery .ratio-film img,
  .portfolio-gallery figure:not([class*="ratio-"]) img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .work-range {
    grid-template-columns: 1fr;
  }

  .home-feature,
  .portfolio-strip,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 24px;
  }
}
