*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background: #0b0b0b;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

html,
body {
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*! NAV */
.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
}

.nav-logo {
  justify-self: start;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 18px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);

  position: relative;
  display: inline-block;
  overflow: hidden;
}

.nav-logo::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -40%;
  width: 40%;
  height: 140%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(214, 173, 134, 0.5),
    transparent
  );
  transform: skewX(-18deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.nav-logo:hover::after {
  opacity: 1;
  animation: logoShimmer 650ms ease forwards;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0.92;
  transition: opacity 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: #d6ad86;
  font-weight: bold;
}

#top { 
    height: 0;
}


.nav-cta {
  justify-self: end;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: 14px;
  color: #d6ad86;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-cta:hover {
  color: rgba(214, 173, 134, 0.95);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  width: 52px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none; /* hidden by default (desktop) */
  place-items: center;
  gap: 6px;
}

.nav-mobile {
  display: none;
}

.logo {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.logo-text {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.logo-accent {
  color: #d6ad86;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

/*! HERO */
.hero {
  min-height: 100vh;
  position: relative;

  background-image: url('assets/background-image.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 45%;

  display: grid;
  place-items: center;
  padding-top: 86px;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: radial-gradient(
      900px 500px at 50% 40%,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.68)
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 22px;
  width: min(980px, 100%);
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(42px, 6vw, 72px);
  margin: 0 0 6px;
  color: #d6ad86;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 92px);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 14px;
  opacity: 0.95;
}

.orn-line {
  width: 170px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.orn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(214, 173, 134, 0.95);
  box-shadow: 0 0 0 6px rgba(214, 173, 134, 0.14);
}

.hero-subline {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.92;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 48px;
  opacity: 0.9;
  animation: floatDown 1s ease-in-out infinite;
}

.hero-scroll:hover {
  opacity: 1;
}

/*! OUR STORY SECTION */
.story {
  background: #ffffff;
  color: #1a1a1a;
  padding: 90px 0;
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.story-kicker {
  margin: 0 0 14px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.55);
}

.story-title {
  margin: 0 0 14px;
  line-height: 1;
}

.story-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(46px, 5vw, 74px);
  color: #d6ad86;
  margin-bottom: 6px;
}

.story-title-strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(42px, 4.3vw, 66px);
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.01em;
}

.story-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 22px;
  opacity: 0.9;
}

.story-ornament .orn-line {
  width: 170px;
  height: 1px;
  background: rgba(0, 0, 0, 0.22);
}

.story-ornament .orn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6ad86;
  box-shadow: 0 0 0 6px rgba(214, 173, 134, 0.18);
}

.story-text {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.72);
  max-width: 55ch;
}

.story-link {
  display: inline-block;
  font-family: 'Montserrat', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 14px;
  color: #d6ad86;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(214, 173, 134, 0.65);
}

.story-link:hover {
  border-bottom-color: rgba(214, 173, 134, 1);
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.story-photo {
  width: 100%;
  height: clamp(320px, 38vw, 480px);
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  filter: blur(3px);
  will-change: transform, opacity;

  transition: transform 1900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1100ms ease, filter 1100ms ease;
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo.photo-left {
  transform: translateX(-140px) translateY(18px);
}

.story-photo.photo-right {
  transform: translateX(140px) translateY(18px);
}

.story.is-revealed .story-photo {
  opacity: 1;
  transform: translateX(0) translateY(0);
  filter: blur(0);
}

.story.is-revealed .story-photo.photo-right {
  transition-delay: 260ms;
}

/*! MENU */
.menu {
  background: #0b0b0b;
  padding: 96px 0;
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.menu-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), 
              url('assets/img2-optimized.jpg');
  
  background-size: cover;
  background-position: center;
}

.menu-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the image is the bottom-most layer */
  z-index: -1; 
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* Sits between image and text */
  z-index: 0; 
}

.menu-copy {
  z-index: 1; 
  width: min(680px, 92%);
  text-align: center;
  padding: 28px 18px;
  color: white;
}

.menu-kicker {
  margin: 0 0 10px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
}

.menu-title {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: 1.05;
}

.menu-sub {
  margin: 0 auto 18px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 52ch;
  opacity: 0.92;
}

.menu-btn {
  display: inline-block;
  font-family: 'Montserrat', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 13px;
  color: #0b0b0d;
  background: #d6ad86;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(214, 173, 134, 0.35);
}

@media (max-width: 700px) {
  .menu {
    padding: 72px 0;
  }
  .menu-card {
    min-height: 460px;
  }
  .menu-sub {
    font-size: 16px;
  }
}


/*! Story section flipped */
.story-flipped {
  background: #ffffff;
  color: #1a1a1a;
  padding: 90px 0;
}

.story-flipped .story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}

.story-flipped .story-copy {
  grid-column: 2 / 3;
  position: relative;
  z-index: 2;
}

.story-flipped .story-media {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}

.story-flipped .story-photo {
  width: 100%;
  height: clamp(320px, 38vw, 480px);
  overflow: hidden;
  border-radius: 6px;

  transform: translateY(18px);
  opacity: 0;
  filter: none;
  will-change: transform, opacity;

  transition: transform 1900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1100ms ease, filter 1100ms ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.story-flipped .story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-flipped .story-photo.photo-left {
  transform: translate3d(-80px, 18px, 0);
}

.story-flipped .story-photo.photo-right {
  transform: translate3d(80px, 18px, 0);
}

.story-flipped.is-revealed .story-photo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/*! MEET DAVE SECTION (inverse of story) */
.meet-dave {
  background: #0b0b0d;
  color: rgba(255, 255, 255, 0.92);
  padding: 90px 0;
}

.meet-dave-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}

.meet-dave-kicker {
  margin: 0 0 14px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.62);
}

.meet-dave-title {
  margin: 0 0 14px;
  line-height: 1;
}

.meet-dave-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(46px, 5vw, 74px);
  color: #d6ad86;
  margin-bottom: 6px;
}

.meet-dave-title-strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(42px, 4.3vw, 66px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

.meet-dave-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 22px;
  opacity: 0.95;
}

.meet-dave-ornament .orn-line {
  width: 170px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.meet-dave-ornament .orn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6ad86;
  box-shadow: 0 0 0 6px rgba(214, 173, 134, 0.16);
}

.meet-dave-text {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 55ch;
}

.meet-dave-link {
  display: inline-block;
  font-family: 'Montserrat', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 14px;
  color: #d6ad86;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(214, 173, 134, 0.65);
}

.meet-dave-link:hover {
  border-bottom-color: rgba(214, 173, 134, 1);
}

.meet-dave-media {
  display: grid;
  align-items: center;
}

.meet-dave-photo {
  margin: 0;
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.meet-dave-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-dave .meet-dave-photo,
.meet-dave .meet-dave-copy > * {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(2px);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), opacity 600ms ease,
    filter 600ms ease;
  will-change: transform, opacity;
}

.meet-dave .meet-dave-photo {
  transform: translateY(22px);
  transition-duration: 1000ms, 700ms, 700ms;
}

.meet-dave.is-revealed .meet-dave-photo,
.meet-dave.is-revealed .meet-dave-copy > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.meet-dave.is-revealed .meet-dave-kicker {
  transition-delay: 60ms;
}
.meet-dave.is-revealed .meet-dave-title {
  transition-delay: 140ms;
}
.meet-dave.is-revealed .meet-dave-ornament {
  transition-delay: 220ms;
}
.meet-dave.is-revealed .meet-dave-text {
  transition-delay: 300ms;
}
.meet-dave.is-revealed .meet-dave-link {
  transition-delay: 380ms;
}
.meet-dave.is-revealed .meet-dave-photo {
  transition-delay: 120ms;
}

/*! CONTACT FORM SECTION */
.contact {
  background: #f6f1ea;
  color: #1a1a1a;
  padding: 100px 0 100px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-kicker {
  margin: 0 0 14px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.55);
}

.contact-title {
  margin: 0 0 16px;
  line-height: 1;
}

.contact-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(42px, 5vw, 68px);
  color: #d6ad86;
  margin-bottom: 6px;
}

.contact-title-strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  color: rgba(0, 0, 0, 0.82);
}

.contact-text {
  max-width: 45ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.form-field input,
.form-field textarea {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #1a1a1a;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(214, 173, 134, 0.8);
  box-shadow: 0 0 0 3px rgba(214, 173, 134, 0.25);
}

.form-submit {
  margin-top: 8px;
  font-family: 'Montserrat', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #0b0b0d;
  background: #d6ad86;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(214, 173, 134, 0.45);
}

.form-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/*! FOOTER */
.site-footer {
  background: #0b0b0d;
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.footer-logo span {
  font-weight: 400;
}

.footer-tagline {
  max-width: 42ch;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-info p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-info a:hover {
  color: #d6ad86;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover {
  color: #d6ad86;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/*! Media */
@media (prefers-reduced-motion: reduce) {
  .story-photo,
  .story.is-revealed .story-photo,
  .meet-dave .meet-dave-photo,
  .meet-dave .meet-dave-copy > * {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/*! Keyframes*/
@keyframes floatDown {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes logoShimmer {
  to {
    transform: skewX(-18deg) translateX(320%);
  }
}

/*! Mobile */
@media (max-width: 980px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .story-photo img {
    height: 420px;
  }

  .nav-bar {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-mobile {
    display: grid;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 260ms ease, opacity 200ms ease, padding 200ms ease;
  }
  .nav-mobile a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .nav-mobile a:hover {
    color: #d6ad86;
    background: rgba(255, 255, 255, 0.08);
  }
  .nav-mobile-cta {
    color: #d6ad86 !important;
    border: 1px solid rgba(214, 173, 134, 0.55);
  }
  .story-flipped {
    padding: 72px 0;
  }
  .story-flipped .story-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-flipped .story-copy,
  .story-flipped .story-media {
    grid-column: auto;
  }
  .story-flipped .story-media {
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
  }

  .story-flipped .story-photo {
    height: 360px;
    transform: none;
  }

  .story-flipped .story-photo.photo-left,
  .story-flipped .story-photo.photo-right {
    transform: none;
  }

  .story-flipped.is-revealed .story-photo {
    transform: none;
  }

  .site-header.is-open .nav-mobile {
    max-height: 360px;
    opacity: 1;
    padding: 14px 18px 18px;
  }
  .meet-dave-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .meet-dave-photo {
    height: 420px;
  }
}

@media (max-width: 900px) {
  .nav-bar {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .nav-center {
    display: none;
  }
  
    .nav-logo,
  .nav-right {
    min-width: 0;
  }

  .nav-logo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
  }


  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .story-flipped {
    padding: 72px 0;
  }

  .story-flipped .story-text {
    max-width: 60ch;
  }

  /*.story-flipped .story-media {*/
  /*  display: none;*/
  /*}*/

  .story-flipped .story-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-flipped .story-copy {
    grid-column: auto;
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .orn-line {
    width: 110px;
  }

  .hero {
    padding-top: 96px;
    background-position: 50% 35%;
  }

  .hero-center {
    padding: 0 16px;
  }

  .hero-script {
    font-size: clamp(34px, 8vw, 52px);
  }

  .hero-name {
    font-size: clamp(38px, 10vw, 64px);
  }

  .hero-subline {
    letter-spacing: 0.22em;
    font-size: 12px;
  }
  .nav-bar {
    padding: 12px 16px;
  }

  .nav-logo {
    font-size: 16px;
    letter-spacing: 0.06em;
    padding-bottom: 5px;
  }

  .nav-toggle {
    width: 48px;
    height: 40px;
  }

  .nav-toggle span {
    width: 26px;
  }

 @media (max-width: 520px) {
    .nav-mobile {
      gap: 6px;
    }

    .nav-mobile a {
      font-size: 13px;
      padding: 8px 10px;
    }

    .site-header.is-open .nav-mobile {
      max-height: 260px;
    }
    .story-flipped .story-photo {
      height: 300px;
    }
  }
}
