@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --cream: #f6f1ea;
  --warm-white: #fffdf9;
  --charcoal: #1f1d1a;
  --soft-brown: #9d8978;
  --line: #d8cec3;
  --taupe: #e8dfd5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}


/* HEADER */

.site-header {
  width: 100%;

  padding: 18px 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: absolute;
  top: 0;
  left: 0;

  z-index: 10;

  color: white;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 165px;
  height: 165px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 0.86rem;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.65;
}


/* GENERAL */

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  font-weight: 600;

  margin-bottom: 22px;
}

.button {
  display: inline-block;

  border: none;

  padding: 15px 24px;

  background: var(--charcoal);
  color: white;

  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


/* HERO */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 165px 8vw 80px;

  background:
    linear-gradient(
      rgba(25, 22, 18, 0.08),
      rgba(25, 22, 18, 0.15)
    ),
    url('images/hero.jpg');

  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;

  color: white;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(3.3rem, 6.5vw, 6.5rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.035em;

  margin-bottom: 30px;
}

.hero-text {
  max-width: 560px;

  font-size: 1.05rem;

  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
}


/* INTRO */

.intro {
  padding: 120px 8vw;

  max-width: 1200px;
}

.intro h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.03;

  max-width: 900px;

  margin-bottom: 30px;
}

.intro-text {
  max-width: 660px;

  font-size: 1.05rem;
}


/* EVENT TYPES */

.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-card {
  padding: 65px 4vw;

  min-height: 330px;
}

.event-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.event-card span {
  font-size: 0.72rem;

  color: var(--soft-brown);

  letter-spacing: 0.12em;
}

.event-card h3 {
  font-family: 'Playfair Display', serif;

  font-size: 2.2rem;
  font-weight: 500;

  margin: 28px 0 18px;
}

.event-card p {
  max-width: 330px;

  margin-bottom: 30px;
}

.event-card a {
  font-size: 0.82rem;

  border-bottom: 1px solid var(--charcoal);

  padding-bottom: 3px;
}


/* SELECTED WORK */

.work {
  padding: 120px 5vw 130px;

  background: var(--warm-white);
}

.section-heading {
  max-width: 780px;

  margin-bottom: 60px;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 500;

  margin-bottom: 22px;
}

.section-heading > p:last-child {
  max-width: 620px;
}


/* GALLERY */

.gallery {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  column-gap: 28px;
  row-gap: 65px;

  align-items: start;
}

.gallery-item {
  margin: 0;

  min-width: 0;
}

.gallery-image {
  width: 100%;

  overflow: hidden;

  background: var(--cream);
}

.gallery-image img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
}


/* GALLERY CAPTIONS */

.gallery-item figcaption {
  display: grid;

  grid-template-columns: 38px 1fr;

  gap: 12px;

  padding-top: 16px;
}

.gallery-number {
  font-size: 0.68rem;

  letter-spacing: 0.1em;

  color: var(--soft-brown);
}

.gallery-label {
  font-size: 0.72rem;

  letter-spacing: 0.13em;

  font-weight: 600;

  margin-bottom: 3px;
}

.gallery-description {
  color: #746b63;

  font-family: 'Playfair Display', serif;

  font-size: 1rem;
  line-height: 1.35;
}


/* EDITORIAL GALLERY STAGGER */

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  margin-top: 85px;
}


/* SERVICES */

.services {
  padding: 105px 8vw 95px;
}

.services-heading {
  max-width: 900px;

  margin-bottom: 55px;
}

.services h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 500;
}

.primary-services {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.primary-service {
  padding: 42px 32px 42px 0;
}

.primary-service:not(:last-child) {
  border-right: 1px solid var(--line);

  margin-right: 32px;
}

.primary-service span {
  display: block;

  font-size: 0.72rem;

  letter-spacing: 0.12em;

  color: var(--soft-brown);

  margin-bottom: 16px;
}

.primary-service h3 {
  font-family: 'Playfair Display', serif;

  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 500;

  margin-bottom: 14px;
}

.primary-service p {
  max-width: 340px;

  font-size: 0.92rem;
  line-height: 1.7;
}

.supporting-services {
  padding-top: 28px;
}

.supporting-services p {
  color: #73675c;

  font-size: 0.86rem;

  letter-spacing: 0.04em;
}


/* IMAGE BREAK */

.image-break {
  min-height: 560px;

  background:
    linear-gradient(
      rgba(25, 22, 18, 0.2),
      rgba(25, 22, 18, 0.35)
    ),
    url('images/work-4.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;

  padding: 80px 8vw;

  color: white;
}

.image-break-inner {
  max-width: 760px;
}

.image-break h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1;

  font-weight: 500;
}


/* APPROACH */

.approach {
  padding: 110px 8vw;

  background: var(--taupe);
}

.approach h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 500;

  margin-bottom: 55px;
}

.approach-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.approach-grid span {
  font-size: 0.72rem;

  color: var(--soft-brown);

  letter-spacing: 0.12em;
}

.approach-grid h3 {
  font-family: 'Playfair Display', serif;

  font-size: 1.5rem;
  font-weight: 500;

  margin: 18px 0 12px;
}

.approach-grid p {
  font-size: 0.92rem;
}


/* ABOUT */

.about {
  padding: 110px 8vw;

  background: var(--charcoal);

  color: white;
}

.about-content {
  max-width: 820px;
}

.about h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 500;

  margin-bottom: 30px;
}

.about p {
  max-width: 680px;

  font-size: 1.05rem;

  margin-bottom: 18px;
}


/* INQUIRY */

.inquiry-section {
  display: grid;

  grid-template-columns: 0.72fr 1.28fr;

  gap: 7vw;

  padding: 120px 8vw 130px;

  background: var(--warm-white);
}

.inquiry-intro {
  align-self: start;
}

.inquiry-intro h2 {
  font-family: 'Playfair Display', serif;

  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 500;

  margin-bottom: 28px;
}

.inquiry-intro > p {
  max-width: 420px;

  margin-bottom: 22px;
}

.inquiry-email {
  font-size: 0.9rem;
}

.inquiry-email a {
  border-bottom: 1px solid var(--charcoal);

  padding-bottom: 2px;
}


/* FORM */

.inquiry-form {
  width: 100%;

  max-width: 760px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 28px;
}

.form-group {
  margin-bottom: 32px;
}

.form-group > label {
  display: block;

  font-size: 0.72rem;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  font-weight: 600;

  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;

  width: 100%;

  border: 1px solid #cfc5ba;

  border-radius: 0;

  padding: 15px 16px;

  background: #fffdf9;

  color: var(--charcoal);

  outline: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 52px;
}

.form-group textarea {
  min-height: 130px;

  resize: vertical;

  line-height: 1.55;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--charcoal);

  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9a9188;
}

.form-group small {
  display: block;

  margin-top: 9px;

  color: #746b63;

  font-size: 0.78rem;
  line-height: 1.5;
}


/* FULL EVENT DESIGN NOTE */

.form-package-note {
  margin: 12px 0 38px;

  padding: 28px 30px;

  border: 1px solid var(--line);

  background: var(--cream);
}

.form-package-note .eyebrow {
  margin-bottom: 12px;
}

.form-package-note p:last-child {
  max-width: 650px;

  font-size: 0.9rem;
  line-height: 1.7;
}


/* HONEYPOT */

.hidden-field {
  position: absolute;

  overflow: hidden;

  clip: rect(0 0 0 0);
  clip-path: inset(50%);

  height: 1px;
  width: 1px;

  margin: -1px;

  padding: 0;

  border: 0;
}


/* SUBMIT */

.submit-button {
  margin-top: 6px;

  padding: 17px 30px;
}

.form-note {
  margin-top: 20px;

  max-width: 600px;

  color: #746b63;

  font-size: 0.78rem;
  line-height: 1.6;
}


/* FOOTER */

footer {
  border-top: 1px solid var(--line);

  padding: 32px 5vw;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;

  font-size: 0.78rem;
}

.footer-brand {
  letter-spacing: 0.12em;

  font-weight: 600;
}

.footer-links {
  display: flex;

  gap: 20px;
}


/* TABLET */

@media (max-width: 1000px) {

  .primary-services {
    grid-template-columns: 1fr;
  }

  .primary-service {
    padding: 38px 0;
  }

  .primary-service:not(:last-child) {
    border-right: none;

    border-bottom: 1px solid var(--line);

    margin-right: 0;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-section {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .inquiry-form {
    max-width: none;
  }

}


/* MOBILE */

@media (max-width: 800px) {

  .site-header {
    padding: 16px 6vw;
  }

  .site-logo {
    width: 120px;
    height: 120px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 90vh;

    padding: 145px 6vw 70px;

    background:
      linear-gradient(
        rgba(25, 22, 18, 0.20),
        rgba(25, 22, 18, 0.28)
      ),
      url('images/hero.jpg');

    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .intro,
  .services,
  .approach,
  .about,
  .inquiry-section {
    padding: 85px 6vw;
  }

  .event-types {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: auto;

    padding: 55px 6vw;
  }

  .event-card:not(:last-child) {
    border-right: none;

    border-bottom: 1px solid var(--line);
  }

  .work {
    padding: 85px 6vw 95px;
  }

  .gallery {
    grid-template-columns: 1fr;

    row-gap: 48px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4) {
    margin-top: 0;
  }

  .gallery-item figcaption {
    padding-top: 13px;
  }

  .image-break {
    min-height: 480px;

    padding: 65px 6vw;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .form-package-note {
    padding: 24px 22px;
  }

  footer {
    flex-direction: column;

    align-items: flex-start;
  }

}