/* ---- Fonts (same as parkandeve.com) ---- */
@font-face {
  font-family: 'Architype Tschichold';
  src: url('../fonts/Architype-Tschichold.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-var-italic.woff2') format('woff2');
  font-weight: 100 900; font-style: italic; font-display: swap;
}

:root {
  --black:  #111111;   /* header + footer background */
  --white:  #FFFFFF;   /* text on black */
  --cream:  #F5F2EE;   /* body background */
  --ink:    #111111;   /* text on cream */
  --gold:   #E0B24A;   /* sparkle gold accent */
  --line:   rgba(0,0,0,0.14);
  --display: 'Architype Tschichold', Georgia, serif;  /* headings + logo */
  --serif:   'Fraunces', Georgia, serif;              /* body copy */
  --container: 1080px;
  --gutter: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.1; margin: 0 0 .5em; letter-spacing: .01em; }

a { color: inherit; }

/* ---- Top bar (dogs link) ---- */
.topbar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 14px; letter-spacing: .02em;
  padding: 11px 16px;
}
.topbar a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: #f0c766; }

/* ---- Header (black) ---- */
.site-header {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-header .wrap {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding-top: 34px; padding-bottom: 30px;
}
.logo { display: inline-flex; }
.logo img { height: clamp(74px, 12vw, 128px); width: auto; display: block; }
.site-header nav { display: flex; gap: clamp(20px, 4vw, 44px); }
.site-header nav a {
  font-family: var(--serif);
  font-size: 15px; letter-spacing: .04em;
  text-decoration: none; color: var(--white); opacity: .85;
}
.site-header nav a:hover { opacity: 1; }

/* ---- Hero ---- */
.hero { padding: clamp(70px, 12vw, 140px) 0 clamp(50px, 8vw, 90px); text-align: center; }
.hero .eyebrow {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: #6b6b6b; margin: 0 0 18px;
}
.hero h1 { font-size: clamp(40px, 8vw, 82px); }
.hero p.lead { max-width: 620px; margin: 22px auto 0; font-size: 18px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; font-family: var(--serif); font-size: 16px; letter-spacing: .04em;
  padding: 15px 34px; border: 1px solid var(--black); border-radius: 2px;
  text-decoration: none; cursor: pointer; transition: background .25s ease, color .25s ease;
}
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: #000; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn-row { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Sections ---- */
section.block { padding: clamp(48px, 8vw, 90px) 0; border-top: 1px solid var(--line); }
section.block h2 { font-size: clamp(28px, 5vw, 44px); text-align: center; }
.prose { max-width: 640px; margin: 0 auto; text-align: center; }

/* ---- Details grid (hours / location / contact) ---- */
.details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; text-align: center; }
.details h3 { font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.details p { margin: 0; line-height: 1.7; }
@media (max-width: 700px){ .details { grid-template-columns: 1fr; gap: 30px; } }

/* ---- Dog photo ---- */
.dog-photo { margin: 20px auto 0; max-width: 360px; }
.dog-photo img { width: 100%; height: auto; border-radius: 4px; display: block; }

/* ---- Dog page: tightened spacing so the Text button is reachable fast ---- */
.page-dogs .hero { padding: clamp(34px, 6vw, 60px) 0 clamp(14px, 3vw, 28px); }
.page-dogs section.block { padding: clamp(20px, 3vw, 34px) 0 clamp(28px, 4vw, 48px); }
.page-dogs .hero p.lead { margin-top: 14px; }
.page-dogs .prose { margin-top: 22px !important; }
.photo-placeholder {
  margin: 32px auto 0; max-width: 460px; aspect-ratio: 4 / 3;
  border: 1px dashed rgba(0,0,0,.25); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #9a9a9a; font-style: italic;
}

/* ---- Dog note above the booking widget ---- */
.book-note {
  max-width: 560px; margin: 40px auto 24px;
  background: var(--black); border: 1px solid rgba(224,178,74,0.55); border-radius: 4px;
  padding: 16px 24px; text-align: center;
}
.book-note a {
  color: var(--gold); font-size: 17px; font-weight: 500; letter-spacing: .02em;
  text-decoration: underline; text-underline-offset: 3px;
}
.book-note a:hover { color: #f0c766; }

/* ---- Booking embed ---- */
.embed-slot {
  margin-top: 4px;
  display: flex; align-items: center; justify-content: center;
}

/* ---- Footer (black) ---- */
.site-footer {
  background: var(--black); color: var(--white);
  padding: 48px 0; text-align: center; margin-top: 20px;
}
.site-footer .logo { display: inline-block; margin-bottom: 14px; }
.site-footer p { margin: 6px 0; font-size: 14px; opacity: .8; }
.site-footer a { color: var(--white); }
