@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340..480;1,9..144,340..480&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #201a14;
  --ink-soft: #4a4038;
  --paper: #f6f1ea;
  --panel: #efe7db;
  --line: rgba(32, 26, 20, 0.14);
  --accent: #6b4a30;
  --clay: #b5623a;
  --moss: #5f6b4f;
  --white: #fffdfa;
  --radius: 3px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.wrap {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

/* ---- announcement ---- */
.announce {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 480;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  color: var(--ink-soft);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 260ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
}

/* ---- hero ---- */
.hero-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 0;
  min-height: 88vh;
}

.hero-copy-col {
  padding: 40px 56px 40px 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero-split h1 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.04;
  max-width: 560px;
}

.hero-split .lede {
  max-width: 460px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.btn:hover {
  background: transparent;
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
}

.hero-image-col {
  position: relative;
  height: 88vh;
}

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

.hero-float-card {
  position: absolute;
  left: -1px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(32, 26, 20, 0.16);
  border-radius: var(--radius);
  max-width: 280px;
}

.hero-float-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 2px;
}

.hero-float-card .name {
  font-weight: 700;
  font-size: 13.5px;
}

.hero-float-card .price {
  font-size: 12.5px;
  color: var(--clay);
  font-weight: 700;
}

/* ---- marquee ---- */
.material-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: var(--panel);
}

.material-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.material-track span::after {
  content: "•";
  margin-left: 48px;
  color: var(--clay);
  font-style: normal;
}

@keyframes scroll-left {
  to {
    transform: translateX(-50%);
  }
}

/* ---- section scaffolding ---- */
.section {
  padding: 116px 0;
}

.section.tight {
  padding: 70px 0;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
}

.section-intro .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--clay);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 3.4vw, 46px);
  max-width: 620px;
  line-height: 1.08;
}

.section-intro p {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

/* ---- bento collection ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 22px;
}

.bento-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item {
  grid-column: span 2;
}

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.product-tile .shot {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.product-tile .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

.product-tile:hover .shot img {
  transform: scale(1.06);
}

.product-tile .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.product-tile .info h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
}

.product-tile .info p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.product-tile .info .price {
  font-weight: 700;
  color: var(--clay);
  white-space: nowrap;
}

.add-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 16px;
}

.add-btn {
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.add-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ---- horizontal room rail ---- */
.room-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.room-rail::-webkit-scrollbar {
  height: 5px;
}

.room-rail::-webkit-scrollbar-thumb {
  background: var(--line);
}

.room-card {
  position: relative;
  flex: 0 0 min(78vw, 420px);
  height: 460px;
  scroll-snap-align: start;
  overflow: hidden;
}

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

.room-card .tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
}

/* ---- appointment (dark) ---- */
.appointment {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.appointment h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  margin: 0 0 20px;
  max-width: 460px;
}

.appointment p.lede {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
  max-width: 420px;
  line-height: 1.65;
  margin: 0 0 32px;
}

.appointment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.appointment-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: color-mix(in srgb, var(--paper) 88%, transparent);
  font-size: 14.5px;
  line-height: 1.5;
}

.appointment-list li span.n {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clay);
}

.form-underline {
  display: grid;
  gap: 22px;
}

.field-line {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(246, 241, 234, 0.28);
  padding-bottom: 12px;
}

.field-line label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.55);
}

.field-line input,
.field-line select,
.field-line textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  padding: 4px 0;
  font-size: 15.5px;
}

.field-line select option {
  color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.appointment-status {
  margin-top: 18px;
  font-size: 13.5px;
  color: color-mix(in srgb, var(--paper) 70%, transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.appointment-status.in {
  opacity: 1;
  transform: none;
}

/* ---- process ---- */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-card .step-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  color: var(--clay);
  display: block;
  margin-bottom: 18px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 21px;
}

.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* ---- quote ---- */
.pull-quote {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pull-quote blockquote {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
}

.pull-quote cite {
  display: block;
  margin-top: 26px;
  text-align: center;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---- footer ---- */
.site-footer {
  background: var(--panel);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-top h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 20px;
  max-width: 320px;
}

.newsletter-row {
  display: flex;
  border-bottom: 1px solid var(--ink);
  max-width: 380px;
  padding-bottom: 6px;
}

.newsletter-row input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14.5px;
  padding: 8px 0;
}

.newsletter-row button {
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-col a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-col {
    height: 60vh;
    order: -1;
  }

  .hero-copy-col {
    padding: 44px 24px;
  }

  .main-nav {
    display: none;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .bento-feature {
    grid-column: span 2;
    grid-row: span 1;
    height: 320px;
  }

  .appointment-grid,
  .footer-top,
  .process-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .section-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .wrap {
    width: min(100% - 40px, 640px);
  }
}
