@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proxima-nova-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proxima-nova-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proxima-nova-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #262626;
  --body: #545454;
  --hairline: #e5e5e5;
  --green: #747c57;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
  color: var(--body);
  font-family: "Merriweather", Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.62;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(calc(100% - 160px), 1120px);
  min-height: calc(100vh - 160px);
  margin: 80px auto;
  padding: 105px 100px 62px;
  border: 1px solid var(--hairline);
}

.site-header {
  text-align: center;
}

.brand {
  display: block;
  width: min(560px, 72%);
  margin: 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.tagline {
  margin: 20px 0 60px;
  color: #555;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-nav {
  display: grid;
  grid-template-columns: 130px repeat(6, max-content) 130px;
  align-items: center;
  justify-content: space-between;
  column-gap: 28px;
  margin-bottom: 96px;
}

.desktop-nav::before,
.desktop-nav::after {
  width: 130px;
  height: 1px;
  background: var(--hairline);
  content: "";
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
  color: #676767;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .55px;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-menu a.active {
  color: #202020;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  background: #202020;
}

.mobile-menu {
  display: none;
}

.home-landing {
  min-height: 0;
}

.page-shell.home-page-shell {
  padding-top: 70px;
}

.editorial-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.75;
  background: #9b7654;
}

.editorial-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.editorial-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 17, 9, .02) 42%, rgba(28, 17, 9, .31) 100%),
    linear-gradient(90deg, rgba(38, 23, 11, .08), transparent 26%, transparent 78%, rgba(38, 23, 11, .08));
}

.editorial-brand {
  position: absolute;
  right: clamp(26px, 6.5vw, 108px);
  bottom: clamp(50px, 7vw, 96px);
  left: clamp(26px, 6.5vw, 108px);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(24, 13, 5, .24);
}

.editorial-brand h1 {
  margin: 0;
  font-family: Baskerville, "Times New Roman", "Merriweather", serif;
  font-size: clamp(66px, 8.5vw, 104px);
  font-weight: 400;
  letter-spacing: .16em;
  line-height: .92;
  white-space: nowrap;
}

.editorial-brand p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.75vw, 30px);
  margin: clamp(25px, 3vw, 42px) 0 0;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 400;
  letter-spacing: .29em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-brand b {
  color: #889456;
  font-size: 1.35em;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: none;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.2vw, 68px);
  min-height: 78px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, .98);
}

.home-nav a {
  position: relative;
  color: #5f5f5f;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.home-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
}

.home-nav a:hover,
.home-nav a.active {
  color: #1f1f1f;
}

.home-nav a:hover::after,
.home-nav a.active::after {
  background: #1f1f1f;
}

.home-mobile-menu {
  margin: 0 22px;
}

.poster {
  position: relative;
  overflow: hidden;
}

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

.hero-home {
  aspect-ratio: 1.5;
}

.poster-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: white;
  font-family: "Proxima Nova", Arial, sans-serif;
  text-transform: uppercase;
}

.poster-title h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1;
}

.poster-title span {
  width: 46px;
  height: 2px;
  margin-top: 24px;
  background: white;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(100%, 640px);
  margin: 76px auto 0;
}

.home-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.home-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  gap: 72px;
  align-items: start;
  min-height: 700px;
}

.about-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
}

.about-layout article h1,
.investment-page h1 {
  margin: -2px 0 14px;
  color: #121111;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
}

.about-layout article p {
  margin: 0 0 26px;
}

.about-layout article strong {
  font-weight: 700;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.gallery-layout aside h1 {
  margin: 3px 0 41px;
  color: #262626;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
}

.gallery-layout aside span {
  display: block;
  width: 130px;
  height: 1px;
  background: var(--hairline);
}

.stacked-gallery {
  display: grid;
  gap: 12px;
}

.stacked-gallery img {
  width: 100%;
  height: auto;
}

.investment-page {
  text-align: center;
}

.investment-page h1 {
  margin-bottom: 13px;
}

.investment-intro {
  max-width: 650px;
  margin: 0 auto 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}

.pricing-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 22px;
}

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

.pricing-grid h2,
.contact-layout h2 {
  margin: 0 0 4px;
  color: #222;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing-grid p {
  margin: 0 0 20px;
}

.pricing-grid a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-hero {
  aspect-ratio: 2.4;
}

.contact-hero .poster-title h1 {
  font-size: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 72px;
  margin: 78px auto 0;
  padding: 0 138px;
}

.contact-layout h2 {
  text-transform: none;
}

.contact-layout p {
  margin: 8px 0 0;
}

.contact-form,
.contact-form label {
  display: grid;
}

.contact-form {
  position: relative;
  gap: 18px;
}

.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend,
.contact-form label span {
  display: block;
  margin-bottom: 1px;
  line-height: 1.35;
}

.contact-form small {
  color: #777;
  font-size: 11px;
  font-weight: 300;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 9px;
  border: 1px solid #bdbdbd;
  border-radius: 0;
  background: #fbfbfb;
  color: #222;
  font: inherit;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid #222;
  outline-offset: 1px;
}

.contact-form button {
  width: 130px;
  min-height: 52px;
  border: 2px solid #333;
  background: white;
  color: #111;
  cursor: pointer;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #222;
  color: white;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .6;
}

.form-success {
  color: var(--green);
  font-size: 12px;
}

.form-error {
  color: #8a2d2d;
  font-size: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 112px;
  padding-top: 54px;
  border-top: 1px solid var(--hairline);
  color: #444;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1.2px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #222;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .page-shell {
    width: min(calc(100% - 64px), 980px);
    margin: 32px auto;
    padding: 68px 54px 46px;
  }

  .page-shell.home-page-shell {
    padding-top: 54px;
  }

  .desktop-nav {
    grid-template-columns: 70px repeat(6, max-content) 70px;
    column-gap: 17px;
  }

  .desktop-nav::before,
  .desktop-nav::after {
    width: 70px;
  }

  .gallery-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 54px;
  }

  .contact-layout {
    padding: 0 52px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }

  .page-shell {
    width: 100%;
    margin: 0;
    padding: 38px 22px 30px;
    border: 0;
  }

  .page-shell.home-page-shell {
    padding-top: 22px;
  }

  .brand {
    width: 95%;
  }

  .tagline {
    margin: 8px 0 24px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .desktop-nav {
    display: none;
  }

  .editorial-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1.08;
  }

  .editorial-hero > img {
    object-position: 45% center;
  }

  .editorial-brand {
    right: 15px;
    bottom: clamp(44px, 10vw, 66px);
    left: 15px;
  }

  .editorial-brand h1 {
    font-size: clamp(49px, 14.2vw, 78px);
    letter-spacing: .1em;
  }

  .editorial-brand p {
    gap: 8px;
    margin-top: 20px;
    font-size: clamp(8px, 2.35vw, 11px);
    letter-spacing: .16em;
  }

  .home-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-bottom: 34px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    font-family: "Proxima Nova", Arial, sans-serif;
  }

  .mobile-menu summary {
    padding: 14px 0;
    color: #444;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1.3px;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
    gap: 18px;
    padding: 5px 0 20px;
  }

  .mobile-menu a {
    font-size: 12px;
  }

  .hero-home {
    aspect-ratio: 1.08;
  }

  .poster-title h1,
  .contact-hero .poster-title h1 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 34px;
  }

  .about-layout,
  .gallery-layout,
  .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 34px;
  }

  .about-image {
    max-height: 520px;
    overflow: hidden;
  }

  .about-layout article h1,
  .investment-page h1 {
    font-size: 36px;
  }

  .gallery-layout {
    gap: 30px;
  }

  .gallery-layout aside h1 {
    margin-bottom: 20px;
  }

  .stacked-gallery {
    gap: 8px;
  }

  .investment-page {
    text-align: left;
  }

  .investment-intro {
    margin-bottom: 30px;
  }

  .pricing-grid {
    gap: 36px;
  }

  .contact-hero {
    aspect-ratio: 1.35;
  }

  .contact-layout {
    gap: 32px;
    margin-top: 42px;
    padding: 0;
  }

  .name-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer {
    margin-top: 70px;
    padding-top: 30px;
    font-size: 12px;
  }
}


.form-success[hidden],
.form-error[hidden] {
  display: none;
}
