/* ----- Tokens ---------------------------------------------------- */
:root {
  --cream:        #F5EFE3;
  --cream-soft:   #FBF7EE;
  --paper:        #FDFBF6;
  --ink:          #1B1816;
  --ink-soft:     #4A4541;
  --rule:         #1B1816;
  --tomato:       #C8392B;
  --tomato-deep:  #A22D22;
  --money:        #2E5C4A;
  --money-deep:   #1F4032;
  --gold:         #C39446;
  --shadow-1:     0 1px 0 rgba(27, 24, 22, 0.08);
  --shadow-2:     0 22px 60px -28px rgba(27, 24, 22, 0.32);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Faint paper grain to keep cream from looking flat. */
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(200,57,43,0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(46,92,74,0.08), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

/* ----- Layout shells -------------------------------------------- */
.wrap {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.wrap--tight {
  width: min(960px, 92vw);
}

section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }

/* ----- Top bar -------------------------------------------------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 18px;
  border-bottom: 1px solid rgba(27, 24, 22, 0.12);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.topbar__brand-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1.5px solid var(--ink);
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-1);
}

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

.topbar__brand-name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.topbar__brand-name small {
  display: block;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.topbar__nav a:hover::after { transform: scaleX(1); }

.topbar__nav .cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease;
}

.topbar__nav .cta:hover {
  background: var(--tomato);
  transform: translateY(-1px);
}

.topbar__nav .cta::after { display: none; }

@media (max-width: 760px) {
  .topbar__nav a:not(.cta) { display: none; }
}

/* ----- Hero ----------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: var(--paper);
  animation: rise 700ms 80ms backwards cubic-bezier(.2,.7,.2,1);
}

.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--tomato);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-size: clamp(48px, 7.6vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  animation: rise 800ms 160ms backwards cubic-bezier(.2,.7,.2,1);
}

.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--tomato);
  position: relative;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.18em;
  background: var(--gold);
  opacity: 0.55;
  z-index: -1;
  transform: skewX(-9deg);
}

.hero__lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 36px;
  animation: rise 800ms 260ms backwards cubic-bezier(.2,.7,.2,1);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  animation: rise 800ms 360ms backwards cubic-bezier(.2,.7,.2,1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.btn:hover { transform: translateY(-2px); background: var(--tomato); border-color: var(--tomato); }

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

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

.btn .arrow {
  width: 14px; height: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.hero__meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: rise 800ms 460ms backwards cubic-bezier(.2,.7,.2,1);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__meta span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--money);
}

/* Hero photo column — scrapbook layout */
.hero__media {
  position: relative;
  animation: rise 900ms 200ms backwards cubic-bezier(.2,.7,.2,1);
  padding: 20px 18px 56px 12px;
}

.hero__scrap {
  position: relative;
  aspect-ratio: 5 / 6;
}

.hero__scrap-photo {
  position: absolute;
  margin: 0;
  background: var(--paper);
  padding: 14px 14px 36px;
  border: 1px solid rgba(27, 24, 22, 0.92);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}

.hero__scrap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* photos are sourced from FB at 206x206 — clean up the inevitable
     soft edges so the scrapbook reads as intentional. */
  filter: contrast(1.04) saturate(1.05);
  image-rendering: auto;
}

.hero__scrap-photo--a {
  top: 0;
  left: 4%;
  width: 56%;
  aspect-ratio: 1 / 1;
  transform: rotate(-3.4deg);
  z-index: 2;
}

.hero__scrap-photo--b {
  top: 32%;
  right: 0;
  width: 52%;
  aspect-ratio: 1 / 1;
  transform: rotate(3deg);
  z-index: 3;
}

.hero__scrap-photo--c {
  bottom: 2%;
  left: 18%;
  width: 36%;
  aspect-ratio: 1 / 1;
  transform: rotate(-5deg);
  z-index: 4;
  animation: floatPolaroid 4.2s ease-in-out infinite alternate;
}

@keyframes floatPolaroid {
  from { transform: translateY(0)    rotate(-5deg); }
  to   { transform: translateY(-6px) rotate(-3deg); }
}

.hero__scrap-photo:hover { transform: rotate(0deg) translateY(-4px); z-index: 5; }

.hero__caption {
  position: absolute;
  bottom: 8px;
  left: 24px;
  background: var(--paper);
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-1);
  max-width: 70%;
  z-index: 3;
}

.hero__caption strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0;
  margin-bottom: 2px;
  color: var(--tomato);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; padding-bottom: 64px; }
  .hero__scrap-photo--a { width: 58%; }
  .hero__scrap-photo--b { width: 54%; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  from { transform: translateY(0) rotate(-6deg); }
  to   { transform: translateY(-8px) rotate(-3deg); }
}

/* ----- Section heading --------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.section-h {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 22ch;
}

.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* ----- Services -------------------------------------------- */
.services {
  border-top: 1px solid rgba(27, 24, 22, 0.12);
  border-bottom: 1px solid rgba(27, 24, 22, 0.12);
}

.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

@media (max-width: 760px) {
  .services__head { grid-template-columns: 1fr; }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(27, 24, 22, 0.16);
  border: 1px solid rgba(27, 24, 22, 0.16);
}

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.service {
  background: var(--cream);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 220px;
  transition: background 240ms ease;
}

.service:hover { background: var(--paper); }

.service__num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--tomato);
  margin-bottom: 16px;
}

.service__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.service__copy {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
  flex: 1;
}

.service__rule {
  margin-top: 24px;
  height: 1px;
  background: rgba(27, 24, 22, 0.18);
  position: relative;
  overflow: hidden;
}

.service__rule::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}

.service:hover .service__rule::after { transform: scaleX(1); }

.service--badge { padding-right: 88px; }

.service__badge {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--paper);
  padding: 4px;
  box-shadow: var(--shadow-1);
  transform: rotate(6deg);
  transition: transform 320ms ease;
}

.service--badge:hover .service__badge { transform: rotate(0deg) scale(1.04); }

/* ----- About / portrait -------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }

.about__photo-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding: 28px 0;
}

.about__photo {
  position: relative;
  width: clamp(220px, 26vw, 280px);
  aspect-ratio: 1 / 1;
  background: var(--paper);
  padding: 14px 14px 36px;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-2);
  transform: rotate(-3deg);
  animation: floatPolaroid 5s ease-in-out infinite alternate;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}

.about__photo:hover { transform: rotate(0deg) translateY(-4px); }

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
}

.about__photo-tag {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.about__quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 28px 0 16px;
}

.about__quote em { color: var(--tomato); font-style: italic; }

.about__sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.about__sig::before {
  content: "";
  width: 36px; height: 1px; background: var(--ink);
}

.about__name {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* ----- Testimonials ------------------------------------------ */
.reviews {
  background: var(--ink);
  color: var(--cream);
}

.reviews .eyebrow { color: rgba(245, 239, 227, 0.7); }
.reviews .eyebrow::before { background: var(--cream); }

.reviews .section-h { color: var(--cream); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

.review {
  border-top: 1px solid rgba(245, 239, 227, 0.18);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review__stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.review__quote {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
  flex: 1;
}

.review__author {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(245, 239, 227, 0.78);
}

.review__author strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  font-size: 15px;
}

/* ----- Hours / contact ---------------------------------------- */
.contact {
  background: var(--cream-soft);
  border-top: 1px solid rgba(27, 24, 22, 0.1);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
}

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.hours {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 32px;
}

.hours__h {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.hours__h span {
  font-family: "Onest", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--money);
  font-weight: 500;
}

.hours__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dashed rgba(27, 24, 22, 0.3);
}

.hours__list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(27, 24, 22, 0.2);
  font-size: 15px;
}

.hours__list li:last-child { border-bottom: 0; }
.hours__list strong { font-weight: 500; }
.hours__list .open { color: var(--money); }

.amenities {
  margin-top: 20px;
  padding: 24px;
  border: 1px dashed rgba(27, 24, 22, 0.3);
  background: var(--cream);
}

.amenities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.amenities li::before {
  content: "+";
  color: var(--tomato);
  margin-right: 8px;
  font-family: "Fraunces", serif;
  font-weight: 600;
}

.contact__panel { padding-top: 8px; }

.contact__lines {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact__line {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 24, 22, 0.18);
}

.contact__line:last-child { border-bottom: 0; }

.contact__line dt {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--money);
  letter-spacing: 0.02em;
}

.contact__line dd {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.contact__line dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--tomato);
  padding-bottom: 1px;
}

.contact__line dd a:hover { color: var(--tomato); }

.contact__cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ----- Footer ------------------------------------------------- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 28px;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

@media (max-width: 700px) { .foot__grid { grid-template-columns: 1fr; } }

.foot__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.foot__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1.5px solid var(--cream);
  padding: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(245, 239, 227, 0.15);
}

.foot__logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.foot__mark {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.foot__tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--tomato);
  font-size: 18px;
  margin: 0;
}

.foot__meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 227, 0.7);
  text-align: right;
}

.foot__meta a { color: var(--cream); border-bottom: 1px solid var(--tomato); text-decoration: none; padding-bottom: 1px; }

@media (max-width: 700px) { .foot__meta { text-align: left; } }

.foot__rule {
  height: 1px;
  background: rgba(245, 239, 227, 0.16);
  margin: 36px 0 18px;
}

.foot__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.6);
}

@media (max-width: 700px) {
  .foot__bottom { flex-direction: column; gap: 8px; }
}

/* The .reveal class is left in markup for future hooks but is a
   no-op visually so screenshots, crawlers, and reduced-motion users
   all see the full page on first paint. */
.reveal { opacity: 1; transform: none; }
