/* =========================================================
   THE QUIET HOURS
   Styling notes:
   - Soft stone palette
   - Elegant serif headings
   - Clean, airy layout
   ========================================================= */

:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --bg-stone: #ece3d8;
  --panel: #ffffff;
  --text: #3f3a34;
  --muted: #7a7269;
  --line: #ddd1c4;
  --accent: #5d5043;
  --accent-dark: #3f3429;
  --shadow: 0 18px 50px rgba(61, 47, 37, 0.08);
  --radius: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 234, 0.82);
  border-bottom: 1px solid rgba(93, 80, 67, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent-dark);
}

.site-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent-dark);
}

.hero-text {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--accent-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #30271f;
}

.btn-light {
  background: transparent;
  border-color: var(--line);
  color: var(--accent-dark);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.65);
}

.full-width {
  width: 100%;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-stone {
  background: var(--bg-stone);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.section-intro h2,
.feature-copy h2,
.contact-block h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 500;
  color: var(--accent-dark);
}

.section-subtext,
.contact-copy {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.narrow-copy {
  max-width: 720px;
}

.narrow-copy p,
.feature-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

/* =========================================================
   COLLECTION CARDS
   ========================================================= */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  background: var(--panel);
  border: 1px solid rgba(93, 80, 67, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-card img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.card-copy {
  padding: 24px 22px 26px;
}

.card-copy h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-dark);
}

.card-notes {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   FEATURE SPLITS
   ========================================================= */

.two-column-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.two-column-feature.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.feature-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-box {
  margin-top: 30px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(93, 80, 67, 0.08);
}

.feature-box h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--accent-dark);
}

/* =========================================================
   FORM
   ========================================================= */

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.9rem;
  color: var(--accent-dark);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #b7a591;
  box-shadow: 0 0 0 4px rgba(183, 165, 145, 0.14);
}

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */

.contact-block {
  text-align: center;
}

.contact-links {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  color: var(--accent-dark);
}

.contact-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(93, 80, 67, 0.08);
  background: var(--bg);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
  .hero-grid,
  .split-layout,
  .two-column-feature,
  .two-column-feature.reverse,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-image {
    aspect-ratio: 16 / 12;
  }

  .feature-image {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .feature-box {
    padding: 22px;
  }
}