:root {
  --ink: #171717;
  --muted: #6f7c78;
  --teal: #5fa8a8;
  --sea: #6ba8a4;
  --line: #dde5e1;
  --paper: #ffffff;
  --mist: #f4f8f7;
  --warm: #f7f2ed;
  --serif: Didot, "Bodoni 72", "Bodoni 72 Display", "Bodoni 72 Smallcaps", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  padding: 26px clamp(28px, 9vw, 142px);
  background: var(--paper);
}

.brand img {
  width: clamp(220px, 22vw, 350px);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover {
  border-color: currentColor;
}

.nav-group {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 7;
  min-width: 210px;
  padding: 18px 22px;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(38, 54, 53, .08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown a {
  color: var(--ink);
  padding: 7px 0;
  white-space: nowrap;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  display: block;
  width: 42px;
  height: 42px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: var(--sea);
  opacity: 0;
  transition: opacity .2s ease;
}

.site-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(28px, 6vw, 68px) 24px;
  transform: translateY(-12px);
  transition: transform .22s ease;
  background: var(--sea);
  box-shadow: none;
  overflow-y: auto;
}

.site-menu.is-open .menu-panel {
  transform: translateY(0);
}

.menu-close {
  display: block;
  align-self: flex-end;
  margin: 0 clamp(18px, 5vw, 70px) 18px 0;
  font-size: 24px;
  color: var(--paper);
}

.menu-panel a,
.menu-primary {
  display: block;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(22px, 2.55vw, 34px);
  line-height: 1.1;
  padding: 9px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
}

.menu-primary span {
  display: inline-block;
  margin-left: 14px;
  color: var(--paper);
}

.menu-submenu {
  display: none;
  padding: 4px 0 12px;
  text-align: center;
}

.menu-submenu.is-open {
  display: block;
}

.menu-submenu a {
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: .2em;
  line-height: 1.4;
  padding: 10px 0;
}

.hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.18fr .78fr;
  min-height: clamp(330px, 28vw, 520px);
  overflow: hidden;
}

.hero-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: opacity .45s ease, transform .45s ease;
}

.hero-strip img.is-side {
  opacity: .82;
}

.hero-strip img.is-center {
  opacity: 1;
  transform: scale(1.015);
  z-index: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 72px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .88);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-arrow:hover {
  color: var(--paper);
}

.home-intro,
.page-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 78px) 24px;
  text-align: center;
}

.page-intro {
  padding-bottom: clamp(30px, 4.5vw, 48px);
}

.home-intro p,
.home-intro span,
.page-intro span,
.small-about span,
.home-links span,
.collection-card span,
.gallery-card span,
.contact-panel span,
.site-footer-panel span,
.form-field label {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 500;
}

.script-line {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px) !important;
  font-style: italic;
  font-weight: 400 !important;
  line-height: 1.08;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.home-intro .script-line {
  max-width: 980px;
  margin: 0 auto 8px;
  font-size: clamp(16px, 1.25vw, 20px) !important;
}

.home-intro p:not(.script-line) {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  margin: 24px 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-intro h1 {
  max-width: 980px;
  margin: 58px auto 28px;
  color: #000;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.06;
}

.home-intro span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: .56em;
  text-align: center;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.14;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.text-link,
.button-link,
.collection-card a,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
}

.text-link {
  min-width: 218px;
  min-height: 62px;
  border: 1px solid currentColor;
  padding: 0 28px;
}

.button-link,
.collection-card a,
.form-button {
  min-width: 160px;
  border: 1px solid currentColor;
  padding: 0 22px;
}

.form-button {
  width: 100%;
  border-color: var(--sea);
  background: var(--sea);
  color: var(--paper);
}

.button-link:hover,
.collection-card a:hover,
.form-button:hover {
  background: var(--ink);
  color: var(--paper);
}

.home-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 6vw, 90px);
  padding: 0 clamp(22px, 7vw, 100px) clamp(56px, 8vw, 86px);
}

.home-links a {
  display: grid;
  min-height: 154px;
  align-content: center;
  justify-items: center;
  border: 0;
  background: var(--paper);
  text-align: center;
}

.home-links a:hover {
  border-color: var(--teal);
}

.home-links span {
  color: #000;
  font-family: var(--serif);
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-links strong {
  margin-top: 16px;
  color: #000;
  font-family: var(--serif);
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: .5em;
  text-transform: uppercase;
}

.home-links .button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  margin-top: 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .36em;
  text-transform: uppercase;
}

.small-about {
  display: grid;
  grid-template-columns: minmax(240px, 390px) minmax(0, 620px);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(76px, 10vw, 120px) clamp(22px, 8vw, 120px);
  background: var(--mist);
}

.small-about img {
  width: 100%;
  aspect-ratio: 4 / 5.5;
  object-fit: cover;
}

.portfolio-categories,
.gallery-grid,
.collections-grid,
.contact-layout,
.about-layout,
.testimonial-grid {
  display: grid;
  gap: 22px;
  padding: 0 clamp(22px, 7vw, 100px) clamp(76px, 10vw, 120px);
}

.portfolio-categories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editable-content {
  max-width: 820px;
  margin: 0 auto clamp(48px, 7vw, 78px);
  padding: 0 24px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.72;
  text-align: center;
}

.editable-content h2,
.editable-content h3 {
  margin: 34px 0 14px;
  color: var(--ink);
}

.editable-content p {
  margin-bottom: 18px;
}

.editable-content p:last-child {
  margin-bottom: 0;
}

.editable-content ul,
.editable-content ol {
  display: inline-block;
  margin: 0 auto 18px;
  padding-left: 22px;
  text-align: left;
}

.editable-content a {
  border-bottom: 1px solid currentColor;
}

.category-card,
.gallery-card {
  display: block;
}

.category-card img,
.gallery-card img,
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-placeholder {
  display: block;
  border: 1px solid var(--line);
  background: var(--mist);
}

.category-card div,
.gallery-card div {
  padding: 18px 0 0;
  text-align: center;
}

.category-card h2,
.gallery-card h2 {
  margin-bottom: 2px;
  font-size: clamp(22px, 2.1vw, 32px);
}

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

.gallery-card p {
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--serif);
}

.gallery-card span {
  display: block;
  margin-top: 4px;
}

.single-gallery {
  padding: 0 clamp(22px, 7vw, 100px) clamp(76px, 10vw, 120px);
}

.single-gallery-cover {
  max-width: 1040px;
  margin: 0 auto clamp(34px, 6vw, 72px);
}

.single-gallery-cover img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.single-gallery-content {
  max-width: 1180px;
  margin: 0 auto;
}

.single-gallery-content > p,
.single-gallery-content > h2,
.single-gallery-content > h3 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.single-gallery-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.single-gallery-content .wp-block-image,
.single-gallery-content .wp-block-gallery figure {
  margin: 0;
}

.single-gallery-content .wp-block-image img,
.single-gallery-content .wp-block-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.wedding-grid .custom-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 760px);
  min-height: 360px;
}

.lifestyle-intro {
  padding-top: clamp(88px, 12vw, 140px);
}

.lifestyle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: clamp(80px, 10vw, 130px);
}

.collection-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(107, 168, 164, .42);
  background: rgba(255, 255, 255, .94);
  text-align: center;
}

.collection-card.teal {
  background: var(--sea);
  color: var(--paper);
}

.collection-card.teal p,
.collection-card.teal li,
.collection-card.teal span {
  color: rgba(255, 255, 255, .92);
}

.collection-card.teal a {
  color: var(--paper);
}

.collection-card ul {
  margin: 10px auto 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.65;
}

.collection-card li + li {
  margin-top: 6px;
}

.collection-card li::before {
  content: "* ";
}

.collection-card a {
  align-self: center;
  margin-top: auto;
}

.investment-backdrop {
  padding-top: clamp(36px, 7vw, 70px);
  background:
    linear-gradient(rgba(255, 255, 255, .88), rgba(255, 255, 255, .92)),
    url("https://images-pw.pixieset.com/site/B9apEx/QyP8zb/60FD3A72-7719-43F1-8155-28DDF785EAAC-f4ed92fe-1500.jpeg") center / cover fixed;
}

.about-layout {
  grid-template-columns: minmax(240px, 430px) minmax(0, 700px);
  align-items: start;
}

.about-layout img {
  width: 100%;
  aspect-ratio: 4 / 5.5;
  object-fit: cover;
}

.about-copy {
  max-width: 700px;
}

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

.testimonial-grid article {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  text-align: center;
}

.testimonial-grid p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.45;
}

.testimonial-grid span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 600;
}

blockquote {
  margin: 28px 0 0;
  border-left: 1px solid var(--teal);
  padding-left: 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 27px);
  font-style: italic;
  line-height: 1.3;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: start;
}

.contact-copy {
  padding: clamp(34px, 5vw, 56px);
  background: var(--sea);
  color: var(--paper);
}

.contact-copy h2,
.contact-copy p,
.contact-copy a,
.contact-copy span {
  color: var(--paper);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
}

.form-success {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid rgba(107, 168, 164, .42);
  background: var(--mist);
  color: var(--ink);
}

.contact-panel {
  width: min(86vw, 1816px);
  margin: clamp(54px, 8vw, 88px) auto 0;
  padding: clamp(46px, 6vw, 70px) 24px;
  background: var(--sea);
  color: var(--paper);
  text-align: center;
}

.contact-panel span {
  color: var(--paper);
  letter-spacing: .28em;
}

.contact-panel h2 {
  margin: 20px 0 24px;
  color: var(--paper);
  font-size: clamp(22px, 2.1vw, 30px);
  text-transform: uppercase;
}

.panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  border: 2px solid rgba(255, 255, 255, .86);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 13px;
}

.panel-button:hover {
  background: var(--paper);
  color: var(--sea);
}

.site-footer-panel {
  display: grid;
  grid-template-columns: 1.45fr .8fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  width: min(86vw, 1816px);
  margin: clamp(48px, 7vw, 76px) auto clamp(34px, 5vw, 58px);
  padding: clamp(28px, 4vw, 42px);
  background: var(--sea);
  color: var(--paper);
}

.site-footer-panel span {
  display: block;
  margin-bottom: 20px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 19px);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer-panel p,
.site-footer-panel a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
}

.site-footer-panel div:not(.footer-about) {
  text-align: center;
}

@media (max-width: 960px) {
  .hero-strip {
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .hero-strip img {
    min-height: 300px;
  }

  .hero-strip img.is-side {
    display: none;
  }

  .hero-strip img.is-center {
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .home-links,
  .small-about,
  .portfolio-categories,
  .gallery-grid,
  .single-gallery-content .wp-block-gallery,
  .collections-grid,
  .lifestyle-grid,
  .contact-layout,
  .about-layout,
  .testimonial-grid,
  .site-footer-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 104px;
    padding: 22px;
  }

  .brand img {
    width: 205px;
  }

  .home-intro,
  .page-intro {
    padding-top: 58px;
  }

  .menu-panel {
    justify-content: flex-start;
    padding-top: 34px;
  }

  .menu-panel a,
  .menu-primary {
    font-size: clamp(24px, 8vw, 34px);
    letter-spacing: .05em;
  }

  .menu-submenu a {
    font-size: clamp(14px, 4.4vw, 17px);
    letter-spacing: .18em;
  }

  .home-intro .script-line,
  .home-intro p:not(.script-line) {
    font-size: clamp(16px, 5vw, 20px) !important;
  }

  .home-intro h1 {
    font-size: clamp(34px, 11vw, 46px);
    max-width: 92vw;
  }

  .portfolio-categories,
  .gallery-grid,
  .collections-grid,
  .contact-layout,
  .about-layout,
  .small-about {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-panel,
  .site-footer-panel {
    width: calc(100% - 36px);
  }

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

  .contact-panel span {
    letter-spacing: .22em;
  }

  .panel-button {
    min-width: 205px;
    min-height: 62px;
    letter-spacing: .2em;
  }

  .site-footer-panel {
    padding: 32px 24px;
  }

  .site-footer-panel div,
  .site-footer-panel div:not(.footer-about) {
    text-align: left;
  }
}
