@font-face {
  font-family: "Paperlane";
  src:
    local("Paperlane"),
    local("Paperlane Script"),
    url("../assets/fonts/Paperlane-BF65ae7124ab058.otf") format("opentype"),
    url("../assets/fonts/Paperlane.woff2") format("woff2"),
    url("../assets/fonts/Paperlane.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #9ac4fb;
  --surface: #f7f5ef;
  --text: #584b53;
  --muted: #584b53;
  --accent: #f7a9a8;
  --accent-soft: #f7a9a8;
  --border: #f7a9a8;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-3);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 3rem);
}

p {
  margin: 0 0 var(--space-3);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-spaced {
  padding: var(--space-7) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 94%, #ffffff);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex;
  gap: var(--space-4);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-nav a:hover {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.showcase-carousel {
  position: relative;
  background: #000;
}

.carousel-track {
  position: relative;
  height: min(68vh, 720px);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.8);
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  padding: var(--space-4);
}

.carousel-overlay-title {
  margin: 0;
  color: #f7f5ef;
  font-family: "Paperlane", "Brush Script MT", cursive;
  font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  transform: scaleX(1.22);
  transform-origin: center;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.carousel-overlay-subtitle {
  margin: 0;
  color: #f7f5ef;
  font-size: clamp(0.72rem, 0.95vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.carousel-overlay-subtitle-wrap {
  position: absolute;
  left: 50%;
  bottom: calc(var(--space-6) + 2.2rem);
  transform: translateX(-50%);
  z-index: 3;
  width: min(1120px, 92%);
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
}

.carousel-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--space-4);
  width: min(1120px, 92%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.carousel-button,
.carousel-dot {
  pointer-events: auto;
}

.carousel-button {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.carousel-dots {
  display: flex;
  gap: var(--space-2);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
}

.carousel-dot.is-active {
  background: #fff;
}

.hero {
  padding: var(--space-7) 0;
}

.hero-content {
  justify-self: start;
  transform: translateX(-1.1rem);
}

.hero-title {
  margin-bottom: var(--space-4);
  line-height: 0.95;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-word {
  display: inline-block;
  font-size: clamp(2rem, 5.2vw, 4.25rem);
  margin-right: 0.14em;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
}

.hero-title-bold {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-title-script {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.8rem, 6.7vw, 5.25rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-title-line .hero-title-word:last-child {
  margin-right: 0;
}

@keyframes hero-title-word-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-title-fade-1,
.hero-title-fade-2 {
  opacity: 0;
}

.hero.is-in-view .hero-title-fade-1,
.hero.is-in-view .hero-title-fade-2 {
  animation: hero-title-word-fade-in 0.85s ease forwards;
}

.hero.is-in-view .hero-title-fade-1 {
  animation-delay: 0s;
}

.hero.is-in-view .hero-title-fade-2 {
  animation-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-fade-1,
  .hero-title-fade-2 {
    animation: none;
    opacity: 1;
  }
}

.intro-collage {
  display: grid;
  gap: var(--space-5);
}

.intro-copy {
  max-width: 620px;
}

.intro-copy h2 {
  font-size: clamp(1.85rem, 2.9vw, 2.35rem);
}

.intro-copy p {
  font-size: 1rem;
}

.intro-visuals {
  position: relative;
  min-height: 520px;
}

.intro-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.intro-photo-small {
  width: clamp(180px, 24vw, 280px);
  height: clamp(260px, 34vw, 390px);
}

.intro-photo-large {
  width: clamp(250px, 38vw, 460px);
  height: clamp(520px, 70vw, 760px);
}

.intro-photo-left {
  left: clamp(26px, 3.8vw, 66px);
  top: 28px;
  z-index: 2;
}

.intro-photo-mid {
  right: clamp(282px, 33vw, 420px);
  top: 28px;
  z-index: 4;
}

.intro-photo-right {
  right: 0;
  top: -230px;
  z-index: 1;
}

.hero-grid,
.intro-grid,
.featured-grid,
.about-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
}

.button-primary {
  color: #fff;
  background: var(--text);
  border: 1px solid var(--text);
}

.button-secondary {
  color: var(--text);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.placeholder-card {
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-content: center;
  color: var(--muted);
  text-align: center;
  padding: var(--space-4);
}

.hero-image {
  min-height: 530px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gallery-grid,
.testimonial-grid {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  min-height: 300px;
}

.quote-card {
  margin: 0;
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.05rem;
}

.featured-image,
.about-image {
  min-height: 400px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-6);
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0;
}

.contact-page .site-footer {
  padding: var(--space-3) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact-page {
  background: var(--bg);
}

.contact-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--surface);
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.contact-banner.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 15, 13, 0.28);
}

.contact-main {
  padding: 0 0 var(--space-4);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: -5rem;
}

.contact-panel {
  width: min(760px, 100%);
  background: color-mix(in srgb, var(--surface) 96%, #ffffff);
  border: 1px solid var(--border);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 26px 44px rgba(19, 16, 14, 0.1);
  margin-top: -1.25rem;
}

.contact-panel h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.contact-intro {
  color: var(--muted);
  margin-bottom: var(--space-5);
}

.inquiry-form {
  display: grid;
  gap: var(--space-4);
}

.form-field label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.inquiry-submit {
  margin-top: var(--space-2);
  justify-self: start;
  padding-inline: 2.2rem;
  color: var(--text);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.inquiry-submit:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.inquiry-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.inquiry-feedback {
  margin: 0;
  font-size: 0.95rem;
  color: var(--accent);
}

.inquiry-feedback.is-error {
  color: #8f3b3b;
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .featured-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 380px;
  }

  .carousel-track {
    height: 52vh;
  }

  .contact-banner {
    height: 220px;
  }

  .intro-visuals {
    min-height: 780px;
  }

  .intro-photo-small,
  .intro-photo-large {
    width: min(100%, 460px);
  }

  .intro-photo-small {
    height: 320px;
  }

  .intro-photo-large {
    height: 420px;
  }

  .intro-photo-left {
    left: 0;
    top: 0;
  }

  .intro-photo-mid {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 180px;
  }

  .intro-photo-right {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 360px;
  }
}

@media (max-width: 700px) {
  .about-heading span {
    display: block;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: var(--space-3) 4%;
    display: none;
    flex-direction: column;
    gap: var(--space-3);
  }

  .primary-nav.open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: var(--space-5);
  }

  .contact-banner {
    height: 170px;
  }

  .contact-main {
    padding: 0 0 var(--space-3);
  }

  .contact-shell {
    margin-top: -3rem;
  }

  .contact-panel {
    margin-top: -0.8rem;
  }

  .inquiry-submit {
    width: 100%;
    justify-self: stretch;
  }

  .carousel-track {
    height: 40vh;
  }

  .carousel-button {
    padding: 0.45rem 0.8rem;
    font-size: 0.62rem;
  }

  .carousel-overlay-title {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
    letter-spacing: 0;
    transform: scaleX(1.16);
  }

  .carousel-overlay-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .carousel-overlay-subtitle-wrap {
    bottom: calc(var(--space-5) + 1.8rem);
  }

  .hero-title-word {
    font-size: clamp(2.1rem, 10.5vw, 3.5rem);
  }

  .hero-title-script {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .hero-content {
    transform: none;
  }

  .intro-visuals {
    display: grid;
    gap: var(--space-3);
    min-height: 0;
  }

  .intro-photo {
    position: static;
    width: 100%;
    transform: none;
  }

  .intro-photo-small {
    width: 100%;
    height: 280px;
  }

  .intro-photo-large {
    width: 100%;
    height: 360px;
  }
}
