/* --------- PALETTE & TYPOGRAPHY --------- */
:root {
  /* --bg-body: #f3eee6;
  --bg-surface: #ffffff; */

  --bg-body: #fdfbf8;
  --bg-surface: #d4eef1;
  --ink-main: #2f2b26;
  --ink-muted: #7b746a;
  --accent: #4e5a4b;
  --border-soft: #e0d8cc;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
    Helvetica, Arial, sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;

  --max-width: 1120px;
  --section-pad-y: 6.5rem;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--ink-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.7;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 2.4rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 0.98rem;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
}

.kicker {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

section {
  padding: var(--section-pad-y) 0;
}

/* --------- FADE-IN ON SCROLL --------- */

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------- HEADER / NAV --------- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 238, 230, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav ul li {
  position: relative;
}

.nav-cta {
  white-space: nowrap; /* prevents text from breaking */
  padding: 0.45rem 1.6rem; /* slight extra padding */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #2f2b26;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  /* padding: 0.45rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #2f2b26;
  font-size: 0.72rem;
  letter-spacing: 0.16em; */
}

.menu-toggle {
  display: none;
  font-size: 1.7rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-main);
  margin-left: auto;
}

/* --------- MOBILE FULLSCREEN MENU --------- */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #111010;
  color: #f8f3ea;
  z-index: 200;
  padding: 5rem 2.2rem 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  width: 100%;
}

.mobile-menu li {
  width: 100%;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(248, 243, 234, 0.18);
  padding: 0.9rem 0;
}

.mobile-menu li:first-child {
  border-top: 1px solid rgba(248, 243, 234, 0.18);
}

.mobile-menu li:last-child {
  border-bottom: none;
  margin-top: 1.6rem;
}

.mobile-menu .nav-cta {
  border-color: #f8f3ea;
  padding: 0.65rem 1.6rem;
}

.mobile-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: #f8f3ea;
  font-size: 1.9rem;
  cursor: pointer;
  line-height: 1;
}

/* --------- HERO WITH OVERLAY TEXT --------- */

#home {
  padding: 0;
  background-color: #fdfbf8;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: min(75vh, 640px);
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 1.75rem;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-size: clamp(2.8rem, 4.4vw, 3.8rem);
  letter-spacing: 0.04em;
}

.hero-tagline {
  margin-top: 0.7rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text-shell {
  padding: 4rem 0 4.5rem;
}

.hero-text-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-sub-heading {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 1.6rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 2.2rem;
}

.hero-meta span {
  display: block;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(47, 43, 38, 0.5);
  padding-bottom: 5px;
}

.hero-link::after {
  margin-left: 0.4rem;
  font-size: 0.9rem;
}

/* --------- ABOUT --------- */

#about {
  background-color: var(--bg-surface);
  padding-top: 5rem;
}

#about .container {
  max-width: 760px;
  text-align: center;
}

/* --------- SERVICES / PRICING --------- */

#services {
  background-color: var(--bg-body);
}

#services h2 {
  margin-bottom: 1.3rem;
}

.services-sub {
  max-width: 620px;
  margin: 0 auto 1.4rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.menu-cta {
  text-align: center;
  margin-bottom: 3.4rem;
}

.menu-cta a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(47, 43, 38, 0.6);
  padding-bottom: 5px;
}

.menu-cta a::after {
  margin-left: 0.4rem;
  font-size: 0.9rem;
}

.services-grid-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2rem;
}

.service-card {
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover .service-image {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.service-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  flex: 1; /* makes descriptions equal height so prices align */
}

.price-list {
  font-size: 0.9rem;
  color: var(--ink-main);
  margin-bottom: 0;
}

.payment-note {
  margin-top: 3.2rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  text-align: center;
  color: var(--ink-muted);
}

.menu-bottom-cta {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.82rem;
}

.menu-bottom-cta a {
  border-bottom: 1px solid rgba(47, 43, 38, 0.6);
  padding-bottom: 4px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* --------- LOCATION --------- */

#location {
  background-color: var(--bg-surface);
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 3.8rem;
  align-items: flex-start;
}

.info-block {
  margin-bottom: 1.8rem;
}

.info-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.map-frame {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  border: none;
  background: #d5cec2;
}

/* --------- JOURNAL / BLOG --------- */

#journal {
  background-color: var(--bg-body);
  padding-top: 6rem;
  padding-bottom: 6.5rem;
}

#journal h2 {
  margin-bottom: 1.2rem;
}

.journal-intro {
  max-width: 560px;
  margin: 0 auto 3.4rem;
  text-align: center;
}

.journal-grid-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2rem;
}

.post-card {
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.post-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.post-body {
  padding: 0;
}

.post-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.post-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  min-height: 3.3rem; /* keeps excerpts starting on same line */
}

.post-body p {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.post-link {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(47, 43, 38, 0.7);
  padding-bottom: 4px;
}

/* --------- FOOTER --------- */

footer {
  padding: 3rem 1.75rem 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--border-soft);
}

/* --------- MOBILE CALL BUTTON --------- */

.mobile-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 150;
}

body.menu-open .mobile-fab {
  display: none !important;
}

/* --------- RESPONSIVE --------- */

@media (max-width: 900px) {
  .location-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 1.2rem;
  }

  .logo {
    font-size: 0.8rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-text-shell {
    padding: 3.2rem 0 3.5rem;
  }

  .hero-image {
    height: 60vh;
  }

  .mobile-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
