/* =============================================
   CUT⚡BUZZ — Ghost Theme Stylesheet
   Warm, community-focused, neighborhood feel
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:      #EEF2F9;
  --warm-white: #F5F8FC;
  --bark:       #0B1F3A;
  --espresso:   #071528;
  --copper:     #E07020;
  --copper-lt:  #F08C42;
  --sage:       #4A6FA5;
  --sage-lt:    #7A9DC8;
  --charcoal:   #2D3E55;
  --mid-gray:   #6B7E96;
  --rule:       #C8D4E4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 14px;
  --max-w:     1160px;
  --gap:       clamp(1.5rem, 4vw, 3rem);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--copper); text-decoration: none; transition: color .2s; }
a:hover { color: var(--copper-lt); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--espresso);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-lt);
  border-color: var(--copper-lt);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,118,58,.3);
}

.btn-outline {
  background: transparent;
  color: var(--bark);
  border-color: var(--rule);
}
.btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
}

.section-title {
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--copper);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 244, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

.site-logo img { height: 44px; width: auto; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--espresso);
  letter-spacing: -.02em;
}
.site-logo-text span { color: var(--copper); }

.site-nav { display: flex; align-items: center; gap: 2rem; }

.site-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.nav-book-btn {
  font-size: .85rem !important;
  padding: .55rem 1.2rem;
  background: var(--copper);
  color: #fff !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  transition: all .2s !important;
}
.nav-book-btn:hover {
  background: var(--copper-lt) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(224,112,32,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(74,111,165,.25);
  color: var(--sage-lt);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(122,157,200,.3);
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-title .highlight {
  color: var(--copper);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--sage-lt);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .85rem;
  color: var(--sage-lt);
}

.hero-trust-dots { display: flex; gap: 4px; }
.hero-trust-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--copper);
  opacity: .6;
}
.hero-trust-dots span:first-child { opacity: 1; }

.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--rule);
  position: relative;
}

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

.hero-image-frame .no-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--mid-gray);
  font-size: 4rem;
}

.hero-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--copper);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(224,112,32,.35);
  text-align: center;
}

.hero-image-badge .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-image-badge .label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: .25rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--warm-white);
}
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,42,26,.1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-icon-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: .4rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.service-desc {
  font-size: .88rem;
  color: var(--mid-gray);
  line-height: 1.5;
  margin-bottom: .5rem;
  flex: 1;
}

.service-price {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--copper);
  margin-top: .25rem;
}

/* =============================================
   BOOKING BANNER
   ============================================= */
.booking-banner {
  background: var(--bark);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--copper);
}

.booking-banner::before {
  content: '✂';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  font-size: clamp(6rem, 15vw, 14rem);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
}

.booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.booking-text h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .5rem;
}

.booking-text p {
  color: var(--sage-lt);
  font-size: 1rem;
}

.booking-text .lightning {
  color: var(--copper-lt);
}

.btn-book {
  background: var(--copper);
  color: #fff !important;
  border-color: var(--copper);
  font-size: 1rem;
  padding: 1rem 2.2rem;
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--copper-lt);
  border-color: var(--copper-lt);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,118,58,.4);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--espresso);
}

.gallery-header {
  margin-bottom: 2rem;
}

.gallery-header .section-label { color: var(--copper-lt); }
.gallery-header .section-title { color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* First item spans 2 columns for visual interest */
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  color: var(--mid-gray);
  background: rgba(255,255,255,.05);
}

/* =============================================
   BLOG / POSTS
   ============================================= */
.blog {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--warm-white);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,42,26,.1);
  border-color: var(--copper);
}

.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--rule);
}

.post-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.05); }

.post-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--mid-gray);
  margin-bottom: .75rem;
}

.post-tag {
  background: var(--cream);
  color: var(--bark);
  padding: .15rem .6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .05em;
}

.post-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: .6rem;
}

.post-excerpt {
  font-size: .88rem;
  color: var(--charcoal);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.post-read-more:hover { color: var(--copper-lt); }

/* =============================================
   ABOUT / STORY STRIP
   ============================================= */
.about-strip {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--rule);
  position: relative;
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--copper);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(196,118,58,.4);
  max-width: 180px;
  text-align: center;
  line-height: 1.3;
}

.about-content blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--espresso);
  border-left: 3px solid var(--copper);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}

.about-content p {
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-size: .95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  border-top: 4px solid var(--copper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo-text { color: var(--cream); }
.footer-brand .site-logo-text span { color: var(--copper-lt); }

.footer-tagline {
  font-size: .9rem;
  color: var(--sage-lt);
  margin-top: .75rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream) !important;
  font-size: .85rem;
  transition: all .2s;
}
.social-link:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: var(--sage-lt);
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--copper-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: var(--copper-lt); }

/* =============================================
   GHOST KOENIG EDITOR CARD WIDTHS (required)
   ============================================= */
.gh-content .kg-width-wide {
  margin-inline: calc(50% - 50vw + 2.5rem);
  max-width: calc(100vw - 5rem);
}

.gh-content .kg-width-full {
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
}

.gh-content .kg-width-full img,
.gh-content .kg-width-wide img {
  width: 100%;
}

/* =============================================
   POST / PAGE CONTENT
   ============================================= */
.post-header {
  background: var(--espresso);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.post-header h1 { color: #fff; }

.post-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: var(--sage-lt);
}

.post-header h1 {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.post-header .post-excerpt {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.1rem;
  color: var(--charcoal);
  -webkit-line-clamp: unset;
}

.post-feature-image {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  margin-top: 2rem;
}

.post-feature-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/7;
  object-fit: cover;
}

.post-content-wrap {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem);
}

.post-content-wrap p   { margin-bottom: 1.4rem; font-size: 1rem; color: var(--charcoal); }
.post-content-wrap h2  { margin: 2.5rem 0 1rem; }
.post-content-wrap h3  { margin: 2rem 0 .75rem; }
.post-content-wrap ul,
.post-content-wrap ol  { margin: 0 0 1.4rem 1.5rem; }
.post-content-wrap li  { margin-bottom: .5rem; }
.post-content-wrap blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  border-left: 3px solid var(--copper);
  padding-left: 1.2rem;
  margin: 2rem 0;
  color: var(--espresso);
}
.post-content-wrap img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.post-content-wrap a   { border-bottom: 1px solid var(--copper); }

/* =============================================
   MOBILE NAV
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--rule);
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(59,42,26,.08);
  }

  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; }
  .nav-book-btn { text-align: center; padding: .75rem 1.5rem !important; }

  .hero-inner         { grid-template-columns: 1fr; }
  .hero-image-wrap    { order: -1; }
  .hero-image-badge   { left: 1rem; bottom: -1rem; }

  .about-inner        { grid-template-columns: 1fr; }
  .about-image-wrap   { aspect-ratio: 4/3; }
  .about-accent       { right: 1rem; }

  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }

  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .booking-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; aspect-ratio: 1 !important; }
  .posts-grid   { grid-template-columns: 1fr; }
}
