/*
 Theme Name:   GeneratePress Child – Princess Hall
 Theme URI:    http://princesshall.local
 Description:  Princess Hall child theme – editorial dark design
 Author:       Princess Hall
 Template:     generatepress
 Version:      2.0.0
*/

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* Brand */
  --ph-sage:        #4A6741;
  --ph-sage-dark:   #3a5333;
  --ph-sage-light:  #E8EDE6;

  /* Dark palette */
  --ph-ink:         #0E0E0E;
  --ph-ink-2:       #1A1A1A;

  /* Light palette */
  --ph-cream:       #FBF9F5;
  --ph-cream-2:     #F4F2EE;
  --ph-white:       #FFFFFF;

  /* Text */
  --ph-body:        #3E3E3E;
  --ph-muted:       #888;
  --ph-dim:         rgba(255,255,255,0.55);

  /* Legacy aliases (backward compat with templates) */
  --ph-dark:        #1A1A1A;
  --ph-surface:     #FBF9F6;
  --ph-surface-low: #F4F2EE;
  --ph-warm-gray:   #B5AFA7;
  --ph-gold:        #C9A84C;
  --ph-bg-sage:     #E8EDE6;

  /* Typography */
  --ph-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --ph-sans:  'Geist', 'Manrope', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --ph-section-pad:    120px;
  --ph-section-pad-sm: 80px;
  --ph-max-width:      1200px;
  --ph-text-max:       720px;

  /* Misc */
  --ph-radius-sm: 4px;
  --ph-radius-md: 8px;
  --ph-shadow:    0 24px 64px rgba(0,0,0,0.08);

  /* Transition */
  --ph-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════
   BASE RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ph-sans);
  font-size: 16px;
  color: var(--ph-body);
  background: var(--ph-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--ph-sans);
  font-weight: 400;
  color: var(--ph-ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}

/* Display headings use serif */
.ph-display, .ph-hero__title {
  font-family: var(--ph-serif);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(44px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: 18px; }

p { margin: 0 0 1em; color: var(--ph-body); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

a { color: var(--ph-sage); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }

/* ── Focus ring — synlig för alla tangentbordsanvändare ───────────────── */
:focus-visible {
  outline: 2px solid var(--ph-sage);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Knappar på mörk bakgrund: vit ring */
.ph-btn--dark:focus-visible,
.ph-btn--outline-light:focus-visible,
.ph-boka-type-card.is-active:focus-visible {
  outline-color: #fff;
}
/* Formulärfält: ring inuti fältet */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none; /* box-shadow-varianten hanteras per komponent nedan */
}
/* FAQ och accordion */
.ph-faq__question:focus-visible {
  outline: 2px solid var(--ph-sage);
  outline-offset: -2px;
  border-radius: 10px 10px 0 0;
}

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

/* ═══════════════════════════════════════════
   GENERATEPRESS OVERRIDES
═══════════════════════════════════════════ */
.site-content  { padding: 0 !important; }
.entry-content { padding: 0 !important; max-width: none !important; }
.page-header   { display: none !important; }
.nav-previous, .nav-next { display: none; }
.content-area  { width: 100% !important; float: none !important; }
.widget-area   { display: none !important; }

/* ═══════════════════════════════════════════
   HEADER & NAVIGATION  (GeneratePress structure)
   #masthead.site-header  → branding row
   nav#site-navigation    → nav row
   We combine them visually into one sticky bar
═══════════════════════════════════════════ */

/* ── Nav height token + announcement bar height ────────────── */
:root {
  --ph-nav-h:      72px;
  --ph-announce-h: 36px;
}

/* Hide the separate branding row; we show the brand inside the nav row */
.site-header {
  display: none;
}

/* ── Fixed navigation ───────────────────────────────────────── */
.main-navigation {
  position: fixed !important;
  top: var(--ph-announce-h) !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(251, 249, 245, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07) !important;
  box-shadow: 0 1px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.35s var(--ph-ease);
  transform: translateZ(0) !important;
}

/* Scrolled: slightly deeper shadow to lift nav */
.main-navigation.is-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}

/* ── Spacing compensation ───────────────────────────────────── */
/* Non-hero pages: push all content below announce bar + fixed nav */
body:not(.has-hero) {
  padding-top: calc(var(--ph-nav-h) + var(--ph-announce-h));
}

/* Hero pages: hero extends behind announce bar + nav (fills from y=0) */
body.has-hero .ph-hero {
  margin-top: calc(-1 * (var(--ph-nav-h) + var(--ph-announce-h)));
}

/* Hero content text starts below the announce bar + nav */
.ph-hero__content {
  padding-top: calc(var(--ph-nav-h) + var(--ph-announce-h));
}

/* ── Nav link colours ───────────────────────────────────────── */
/* Always dark links — nav always has cream background */
.main-navigation.toggled .main-nav li > a,
.main-navigation.toggled .main-nav ul li a {
  color: var(--ph-ink) !important;
}
/* Inside nav: flex row */
.main-navigation .inside-navigation {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px !important;
  max-width: none !important;
  min-height: 64px;
}
@media (max-width: 768px) {
  .main-navigation .inside-navigation { padding: 0 20px !important; }
}

/* Logo injected via generate_inside_navigation hook */
.ph-nav-logo {
  text-decoration: none !important;
  flex-shrink: 0;
  order: -1;
  display: flex;
  align-items: center;
}
.ph-nav-logo__img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.ph-nav-logo:hover .ph-nav-logo__img { opacity: 0.7; }

/* Footer logo */
.ph-footer__logo-link { display: inline-block; margin-bottom: 16px; }
.ph-footer__logo-img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

/* Nav links pushed to far right */
.main-navigation .main-nav { margin-left: auto; }

.main-navigation a {
  font-family: var(--ph-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ph-body) !important;
  letter-spacing: 0;
  padding: 8px 14px !important;
  text-decoration: none !important;
  transition: color 0.2s;
  background: none !important;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { color: var(--ph-ink) !important; }

/* Animated underline on active nav item */
.main-navigation .main-nav ul li > a {
  position: relative;
}
.main-navigation .main-nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--ph-ink);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ph-ease);
  transform-origin: left center;
}
.main-navigation .main-nav ul li.current-menu-item > a::after,
.main-navigation .main-nav ul li.current_page_item > a::after,
.main-navigation .main-nav ul li > a:hover::after {
  transform: scaleX(1);
}
/* CTA item uses the same underline as all other links — no special treatment */

/* Hide mobile toggle on desktop */
.main-navigation .menu-toggle { display: none; }

/* ── Mobile navigation ──────────────────────────────────────── */
@media (max-width: 768px) {

  /* Toggle button */
  .main-navigation .menu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none !important;
    border: none !important;
    font-family: var(--ph-sans) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--ph-ink) !important;
    padding: 0 !important;
    cursor: pointer;
    order: 2; /* sits to the right of logo */
    margin-left: auto;
  }

  /* ── When toggled/open: content panel (natural height, no full-screen) ── */
  .main-navigation.toggled {
    height: auto !important;
    background: rgba(251, 249, 245, 0.99) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    overflow-y: visible;
    display: flex !important;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }

  /* Top bar row inside open menu (logo + close btn) */
  .main-navigation.toggled .inside-navigation {
    width: 100%;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0 24px !important;
    min-height: calc(var(--ph-nav-h)) !important;
  }

  /* The nav list container — full width, scrollable area */
  .main-navigation.toggled .main-nav {
    width: 100%;
    margin: 0 !important;
    padding: 0 24px !important;
    flex: 1;
  }

  /* The UL */
  .main-navigation.toggled .main-nav > ul {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 48px !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* Each item */
  .main-navigation.toggled .main-nav li {
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  }

  .main-navigation.toggled .main-nav li:last-child {
    border-bottom: none !important;
  }

  /* Each link */
  .main-navigation.toggled .main-nav ul li a,
  .main-navigation.toggled .main-nav li > a {
    display: block !important;
    font-family: var(--ph-sans) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;         /* override GP's 60px line-height */
    padding: 16px 0 !important;
    white-space: nowrap !important;
    color: var(--ph-ink) !important;
    text-align: left !important;
    background: none !important;
    text-decoration: none !important;
    text-transform: none !important;
  }

  /* Muted current item */
  .main-navigation.toggled .main-nav li.current-menu-item > a,
  .main-navigation.toggled .main-nav li.current_page_item > a {
    opacity: 0.45 !important;
  }

  /* Remove desktop underline animation on mobile */
  .main-navigation.toggled .main-nav li > a::after {
    display: none !important;
  }

  /* Nav bar height on mobile (closed) */
  .main-navigation:not(.toggled) .inside-navigation {
    min-height: 56px !important;
    padding: 0 20px !important;
  }
}

/* CTA "Boka lokal" — neutralise any GeneratePress pill/button defaults */
.main-navigation .menu-item-cta > a {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin-left: 0 !important;
  box-shadow: none !important;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.ph-container {
  max-width: var(--ph-max-width);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .ph-container { padding: 0 24px; } }

.ph-section    { padding: var(--ph-section-pad) 0; }
.ph-section--sm { padding: var(--ph-section-pad-sm) 0; }

.ph-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ph-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ph-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .ph-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ph-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ph-grid-2 { gap: 48px; }
}
@media (max-width: 768px) {
  .ph-grid-2,
  .ph-grid-3,
  .ph-grid-4 { grid-template-columns: 1fr; gap: 32px; }
}

.ph-text-center { text-align: center; }
.ph-mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   SECTION BACKGROUNDS
═══════════════════════════════════════════ */
.ph-bg-white   { background: var(--ph-white); }
.ph-bg-surface { background: var(--ph-cream); }
.ph-bg-low     { background: var(--ph-cream-2); }
.ph-bg-sage    { background: var(--ph-cream-2); }
.ph-bg-dark    { background: var(--ph-ink); }
.ph-bg-ink     { background: var(--ph-ink); }

/* ═══════════════════════════════════════════
   OVERLINE / LABEL
═══════════════════════════════════════════ */
.ph-overline {
  display: block;
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ph-muted);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   SECTION LABEL (Luzen style "01 · About us")
═══════════════════════════════════════════ */
.ph-section-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
}

.ph-section-num {
  font-family: var(--ph-sans);
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(0,0,0,0.08);
}

.ph-section-num--light {
  color: rgba(255,255,255,0.1);
}

.ph-section-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-muted);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.ph-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ph-ease), transform 0.8s var(--ph-ease);
}

.ph-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ph-reveal--delay-1 { transition-delay: 0.1s; }
.ph-reveal--delay-2 { transition-delay: 0.2s; }
.ph-reveal--delay-3 { transition-delay: 0.3s; }
.ph-reveal--delay-4 { transition-delay: 0.4s; }
.ph-reveal--delay-5 { transition-delay: 0.5s; }

.ph-reveal--fade {
  opacity: 0;
  transform: none;
  transition: opacity 1s var(--ph-ease);
}
.ph-reveal--fade.is-visible { opacity: 1; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.ph-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ph-ink);
}

.ph-hero--short {
  min-height: 60vh;
  justify-content: center;
}

.ph-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0s;
}

.ph-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.20) 0%,
    rgba(14,14,14,0.45) 60%,
    rgba(14,14,14,0.75) 100%
  );
}

.ph-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--ph-nav-h) + var(--ph-announce-h) + 16px) 0 80px;
}

.ph-hero--short .ph-hero__content {
  padding: 48px 0;
}

.ph-hero__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.ph-hero--short .ph-hero__inner {
  text-align: left;
  max-width: none;
}

.ph-hero__title {
  font-family: var(--ph-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 28px;
}
/* Italic em inside hero title — same serif, just italic */
.ph-hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.ph-hero--short .ph-hero__title {
  font-size: clamp(36px, 4.5vw, 56px);
}

.ph-hero__subtitle {
  font-family: var(--ph-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0 0 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ph-hero--short .ph-hero__subtitle {
  margin-left: 0;
  margin-right: 0;
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   STATS BAR (on hero / dark bg)
═══════════════════════════════════════════ */
.ph-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 40px 0 0;
  margin-top: 48px;
}

.ph-stats-bar__item {
  text-align: center;
  padding: 0 24px 40px;
}

.ph-stats-bar__item + .ph-stats-bar__item {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.ph-stats-bar__num {
  font-family: var(--ph-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.ph-stats-bar__label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ph-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s var(--ph-ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
  letter-spacing: 0;
}

.ph-btn--primary {
  background: var(--ph-ink);
  color: #fff;
  border-color: var(--ph-ink);
}
.ph-btn--primary:hover {
  background: var(--ph-sage);
  border-color: var(--ph-sage);
  color: #fff;
  opacity: 1;
}

.ph-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.ph-btn--outline-light:hover {
  background: #fff;
  color: var(--ph-ink);
  border-color: #fff;
  opacity: 1;
}

.ph-btn--outline {
  background: transparent;
  color: var(--ph-ink);
  border-color: rgba(0,0,0,0.25);
}
.ph-btn--outline:hover {
  background: var(--ph-ink);
  color: #fff;
  border-color: var(--ph-ink);
  opacity: 1;
}

.ph-btn--dark {
  background: var(--ph-ink);
  color: #fff;
  border-color: var(--ph-ink);
}
.ph-btn--dark:hover {
  background: var(--ph-sage);
  border-color: var(--ph-sage);
  color: #fff;
  opacity: 1;
}

/* ═══════════════════════════════════════════
   STORY / TEXT+IMAGE SECTIONS
═══════════════════════════════════════════ */
.ph-story__heading {
  font-family: var(--ph-sans);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  line-height: 1.1;
}

.ph-story__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.ph-story__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--ph-radius-sm);
}

/* ═══════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════ */
.ph-feature {
  padding: 40px 32px;
  background: var(--ph-white);
  border-radius: var(--ph-radius-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ph-ease), box-shadow 0.3s var(--ph-ease);
}

.ph-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow);
}

.ph-feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 48px;
}

.ph-feature__title {
  font-family: var(--ph-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ph-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.ph-feature__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.ph-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-sage);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.ph-feature__link:hover { gap: 10px; opacity: 1; }

/* ═══════════════════════════════════════════
   SECTION HEADING BLOCK (center)
═══════════════════════════════════════════ */
.ph-section-header {
  margin-bottom: 64px;
}

.ph-section-header h2 {
  margin-bottom: 16px;
}

.ph-section-header p {
  font-size: 17px;
  color: var(--ph-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.ph-testimonial {
  padding: 40px;
  background: var(--ph-cream-2);
  border-radius: var(--ph-radius-sm);
}

.ph-testimonial__quote {
  font-family: var(--ph-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ph-ink-2);
  line-height: 1.65;
  margin: 0 0 24px;
}

.ph-testimonial__quote::before {
  content: '\201C';
  color: var(--ph-sage);
  font-size: 40px;
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
}

.ph-testimonial__author {
  font-family: var(--ph-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ph-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.ph-testimonial__role {
  font-size: 13px;
  color: var(--ph-muted);
  margin: 4px 0 0;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

.ph-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ph-faq__item {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ph-faq__item.is-open {
  border-color: var(--ph-ink);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.ph-faq__question {
  width: 100%;
  background: var(--ph-white);
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--ph-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ph-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s;
}

.ph-faq__question:hover {
  background: var(--ph-cream);
}

.ph-faq__item.is-open .ph-faq__question {
  background: var(--ph-ink);
  color: #fff;
}

/* Chevron icon */
.ph-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ph-faq__icon::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--ph-muted);
  border-bottom: 2px solid var(--ph-muted);
  transform: rotate(45deg) translate(-1px, -2px);
  transition: border-color 0.2s;
}

.ph-faq__question:hover .ph-faq__icon {
  border-color: rgba(0, 0, 0, 0.25);
}

.ph-faq__question:hover .ph-faq__icon::before {
  border-color: var(--ph-ink);
}

.ph-faq__item.is-open .ph-faq__icon {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(180deg);
}

.ph-faq__item.is-open .ph-faq__icon::before {
  border-color: rgba(255, 255, 255, 0.8);
}

/* Smooth height animation via CSS grid trick */
.ph-faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--ph-cream);
}

.ph-faq__item.is-open .ph-faq__answer-wrap {
  grid-template-rows: 1fr;
}

.ph-faq__answer {
  overflow: hidden;
  font-size: 15px;
  color: var(--ph-body);
  line-height: 1.75;
  padding: 0 22px;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ph-faq__item.is-open .ph-faq__answer {
  padding: 18px 22px 22px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.ph-cta { text-align: center; }

.ph-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  margin: 0 0 16px;
  font-family: var(--ph-serif);
  letter-spacing: -0.02em;
}

.ph-cta p {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* Split CTA (2 panels, dark bg-image) */
.ph-split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
@media (max-width: 768px) { .ph-split-cta { grid-template-columns: 1fr; } }

.ph-split-cta__panel {
  position: relative;
  overflow: hidden;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.ph-split-cta__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.55);
}

.ph-split-cta__content {
  position: relative;
  z-index: 1;
}

.ph-split-cta__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.ph-split-cta__heading {
  font-family: var(--ph-sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 28px;
}

/* ═══════════════════════════════════════════
   STAT NUMBERS
═══════════════════════════════════════════ */
.ph-stat {
  text-align: center;
  padding: 24px 16px;
}

.ph-stat__number {
  font-family: var(--ph-sans);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  color: var(--ph-ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}

.ph-stat__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ph-muted);
  margin: 0 0 4px;
}

.ph-stat__detail {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* ═══════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════ */
.ph-price-card {
  border-radius: var(--ph-radius-sm);
  padding: 40px 32px;
  background: var(--ph-cream-2);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ph-ease), box-shadow 0.3s var(--ph-ease);
}
.ph-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow);
}
.ph-price-card--featured {
  background: var(--ph-ink);
  border-color: transparent;
}

.ph-price-card__sal {
  font-family: var(--ph-sans);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ph-ink);
  letter-spacing: -0.02em;
}
.ph-price-card--featured .ph-price-card__sal { color: #fff; }

.ph-price-card__cap {
  font-size: 30px;
  font-weight: 400;
  color: var(--ph-sage);
  margin: 0 0 20px;
  font-family: var(--ph-sans);
  letter-spacing: -0.03em;
}
.ph-price-card--featured .ph-price-card__cap { color: var(--ph-sage-light); }

.ph-price-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}
.ph-price-card--featured .ph-price-card__desc { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════
   FORMS (Contact Form 7 + fallback)
═══════════════════════════════════════════ */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select,
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select {
  width: 100%;
  background: var(--ph-cream-2);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--ph-radius-sm);
  padding: 14px 16px;
  font-family: var(--ph-sans);
  font-size: 15px;
  color: var(--ph-ink);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--ph-ink);
  box-shadow: 0 0 0 3px rgba(14,14,14,0.06);
}

.wpcf7-form textarea,
form textarea { min-height: 140px; resize: vertical; }

.wpcf7-form label,
form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ph-muted);
  margin-bottom: 6px;
  font-family: var(--ph-sans);
}

.wpcf7-form .wpcf7-submit,
form button[type="submit"] {
  background: var(--ph-ink);
  color: #fff;
  font-family: var(--ph-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  letter-spacing: 0;
}
.wpcf7-form .wpcf7-submit:hover,
form button[type="submit"]:hover { background: var(--ph-sage); }

/* ═══════════════════════════════════════════
   CONTACT INFO LIST
═══════════════════════════════════════════ */
.ph-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ph-contact-info li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.ph-contact-info li:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

.ph-contact-info__icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.ph-contact-info__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-muted);
  margin: 0 0 4px;
}

.ph-contact-info__value {
  font-size: 15px;
  color: var(--ph-ink);
  margin: 0;
  line-height: 1.5;
}

.ph-contact-info__value a {
  color: var(--ph-ink);
}

/* ═══════════════════════════════════════════
   MAP
═══════════════════════════════════════════ */
.ph-map-wrap {
  border-radius: var(--ph-radius-sm);
  overflow: hidden;
  height: 400px;
}
.ph-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════════
   POSTS GRID (Nyheter)
═══════════════════════════════════════════ */
.ph-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) { .ph-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ph-posts-grid { grid-template-columns: 1fr; } }

.ph-post-card {
  display: flex;
  flex-direction: column;
  background: var(--ph-white);
  border-radius: var(--ph-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ph-ease), box-shadow 0.3s var(--ph-ease);
}
.ph-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ph-shadow);
}

.ph-post-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ph-cream-2);
}
.ph-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ph-ease);
  border-radius: 0;
}
.ph-post-card:hover .ph-post-card__thumb img { transform: scale(1.04); }

.ph-post-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ph-post-card__date {
  font-size: 11px;
  color: var(--ph-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 10px;
}

.ph-post-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--ph-ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  flex: 1;
}

.ph-post-card__excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 20px;
}

.ph-post-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ph-sage);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.ph-post-card__link:hover { gap: 10px; opacity: 1; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.ph-footer {
  background: var(--ph-ink);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.ph-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .ph-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .ph-footer__top { grid-template-columns: 1fr; }
}

.ph-footer__brand-name {
  font-family: var(--ph-sans);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.ph-footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
}

.ph-footer__heading {
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 20px;
}

.ph-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ph-footer__links li { margin-bottom: 10px; }

.ph-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ph-footer__links a:hover { color: #fff; opacity: 1; }

.ph-footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 640px) {
  .ph-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════ */
.ph-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}

.ph-steps__item {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}

.ph-steps__num {
  font-family: var(--ph-sans);
  font-size: 32px;
  font-weight: 400;
  color: rgba(0,0,0,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 2px;
}

.ph-steps__title {
  font-family: var(--ph-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ph-ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.ph-steps__desc {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TABLE STYLES (Café, Capacity)
═══════════════════════════════════════════ */
.ph-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.ph-table th {
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-muted);
  padding: 12px 16px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  text-align: left;
}

.ph-table td {
  padding: 16px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--ph-body);
}

.ph-table tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════════════
   MARQUEE / SCROLL TICKER
═══════════════════════════════════════════ */
.ph-marquee-wrap {
  overflow: hidden;
  background: var(--ph-ink);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ph-marquee {
  display: flex;
  gap: 64px;
  animation: ph-scroll 24s linear infinite;
  width: max-content;
}

.ph-marquee__item {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 64px;
}

.ph-marquee__item::after {
  content: '✦';
  font-size: 8px;
  color: var(--ph-sage);
  opacity: 0.7;
}

@keyframes ph-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   COUNTERS (animated numbers)
═══════════════════════════════════════════ */
.ph-counter { display: inline-block; }

/* ═══════════════════════════════════════════
   RESPONSIVE UTILITIES
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .ph-section { padding: 72px 0; }
  .ph-section--sm { padding: 56px 0; }

  .ph-hero { min-height: 100svh; }
  .ph-hero--short { min-height: 52vh; }
  .ph-hero__title { font-size: clamp(36px, 8vw, 52px); }

  .ph-stats-bar { grid-template-columns: 1fr; }
  .ph-stats-bar__item + .ph-stats-bar__item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }

  .ph-section-num { font-size: 56px; }

  .ph-story__image img { height: 320px; }

  .ph-split-cta__panel { padding: 48px 32px; min-height: 320px; }
}

@media (max-width: 480px) {
  .ph-container { padding: 0 20px; }
  .ph-hero__content { padding: 48px 0 56px; }
  .ph-hero__subtitle { font-size: 15px; }
}

/* ═══════════════════════════════════════════
   KEY-VALUE LIST  (kapacitet, statistik m.m.)
═══════════════════════════════════════════ */

.ph-kv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--ph-radius-sm);
  overflow: hidden;
}

.ph-kv-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.15s;
}

.ph-kv-list__row:last-child {
  border-bottom: none;
}

.ph-kv-list__row:nth-child(odd) {
  background: var(--ph-white);
}

.ph-kv-list__row:nth-child(even) {
  background: var(--ph-cream);
}

.ph-kv-list__row:hover {
  background: var(--ph-cream-2);
}

.ph-kv-list__label {
  font-size: 14px;
  color: var(--ph-muted);
}

.ph-kv-list__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ph-ink);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════
   ÖPPETTIDER
═══════════════════════════════════════════ */

.ph-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--ph-radius-sm);
  overflow: hidden;
}

.ph-hours__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.15s;
}

.ph-hours__row:last-child {
  border-bottom: none;
}

.ph-hours__row--open {
  background: var(--ph-white);
}

.ph-hours__row--open:hover {
  background: var(--ph-cream);
}

.ph-hours__row--closed {
  background: var(--ph-cream);
}

/* Status-prick */
.ph-hours__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ph-hours__row--open .ph-hours__dot {
  background: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.ph-hours__row--closed .ph-hours__dot {
  background: rgba(0, 0, 0, 0.18);
}

.ph-hours__day {
  font-size: 14px;
  color: var(--ph-body);
  flex: 1;
}

.ph-hours__row--closed .ph-hours__day {
  color: var(--ph-muted);
}

.ph-hours__time {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.ph-hours__row--open .ph-hours__time {
  color: var(--ph-ink);
}

.ph-hours__row--closed .ph-hours__time {
  color: var(--ph-muted);
  font-weight: 400;
}

/* Mörkt läge (ink-bakgrund, t.ex. sidebar) */
.ph-hours--dark {
  border-color: rgba(255, 255, 255, 0.08);
}

.ph-hours--dark .ph-hours__row {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.ph-hours--dark .ph-hours__row--open {
  background: rgba(255, 255, 255, 0.05);
}

.ph-hours--dark .ph-hours__row--open:hover {
  background: rgba(255, 255, 255, 0.09);
}

.ph-hours--dark .ph-hours__row--closed {
  background: transparent;
}

.ph-hours--dark .ph-hours__dot {
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.ph-hours--dark .ph-hours__row--closed .ph-hours__dot {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.ph-hours--dark .ph-hours__day {
  color: rgba(255, 255, 255, 0.65);
}

.ph-hours--dark .ph-hours__row--closed .ph-hours__day {
  color: rgba(255, 255, 255, 0.25);
}

.ph-hours--dark .ph-hours__time {
  color: #fff;
}

.ph-hours--dark .ph-hours__row--closed .ph-hours__time {
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════
   MENY (Café Margaret)
═══════════════════════════════════════════ */

.ph-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ph-menu-card {
  background: var(--ph-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--ph-radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

/* Alternera kortbakgrund för cream-sektioner */
.ph-section[style*="--ph-cream-2"] .ph-menu-card {
  background: var(--ph-white);
}

.ph-menu-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ph-menu-card__body {
  padding: 20px;
}

.ph-menu-card__name {
  font-family: var(--ph-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ph-ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
}

.ph-menu-card__desc {
  font-size: 13px;
  color: var(--ph-muted);
  margin: 6px 0 0;
  line-height: 1.55;
}

.ph-menu-card__price {
  font-family: var(--ph-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ph-ink);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.ph-menu-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ph-menu-card__variant {
  display: flex;
  gap: 5px;
  font-size: 13px;
  padding: 3px 10px;
  background: var(--ph-cream);
  border-radius: 100px;
}

.ph-menu-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ph-menu-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 100px;
  line-height: 1.4;
}

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

@media (max-width: 560px) {
  .ph-menu-grid { grid-template-columns: 1fr; }
  .ph-menu-card__body { padding: 16px; }
}

/* ═══════════════════════════════════════════
   BOKNINGSSIDA
═══════════════════════════════════════════ */

/* Typ-väljare: 4-kolumnsgrid */
.ph-boka-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ph-boka-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 24px 20px;
  background: var(--ph-white);
  border: 2px solid transparent;
  border-radius: var(--ph-radius-sm);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  width: 100%;
}

.ph-boka-type-card:hover {
  border-color: var(--ph-ink);
  transform: translateY(-2px);
}

.ph-boka-type-card.is-active {
  background: var(--ph-ink);
  border-color: var(--ph-ink);
}

.ph-boka-type-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.ph-boka-type-card__label {
  font-family: var(--ph-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ph-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ph-boka-type-card.is-active .ph-boka-type-card__label {
  color: #fff;
}

.ph-boka-type-card__desc {
  font-size: 13px;
  color: var(--ph-muted);
  line-height: 1.4;
}

.ph-boka-type-card.is-active .ph-boka-type-card__desc {
  color: rgba(255, 255, 255, 0.55);
}

.ph-boka-type-card__cap {
  font-size: 12px;
  font-weight: 600;
  color: var(--ph-sage);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ph-boka-type-card.is-active .ph-boka-type-card__cap {
  color: rgba(255, 255, 255, 0.45);
}

/* Formulär + infopanel layout */
.ph-boka-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

/* The form-wrap column must be relative so absolute panels are contained */
.ph-boka-layout > div:first-child {
  position: relative;
  min-height: 200px; /* prevents layout collapse when all panels are absolute */
}

/* Hidden panels: keep them in the flow (so FullCalendar can measure width)
   but visually invisible and non-interactive. */
.ph-boka-form-panel {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.ph-boka-form-panel.is-active {
  position: static;
  visibility: visible;
  pointer-events: auto;
  height: auto;
  overflow: visible;
  animation: ph-fade-in 0.3s ease;
}

@keyframes ph-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Formulärfält */
.ph-boka-form .ph-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.ph-boka-form .ph-form-field,
.ph-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ph-boka-form label,
.ph-form-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ph-muted);
}

.ph-boka-form input,
.ph-boka-form select,
.ph-boka-form textarea,
.ph-form-field input,
.ph-form-field select,
.ph-form-field textarea {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--ph-sans);
  background: var(--ph-white);
  color: var(--ph-ink);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.ph-boka-form input:focus,
.ph-boka-form select:focus,
.ph-boka-form textarea:focus,
.ph-form-field input:focus,
.ph-form-field select:focus,
.ph-form-field textarea:focus {
  outline: none;
  border-color: var(--ph-ink);
  box-shadow: 0 0 0 3px rgba(14, 14, 14, 0.08);
}

.ph-boka-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox-grupp */
.ph-form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.ph-form-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ph-body) !important;
  cursor: pointer;
}

.ph-form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Info-panel */
.ph-boka-info {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ph-boka-info__block {
  background: var(--ph-white);
  border-radius: var(--ph-radius-sm);
  padding: 28px;
}

.ph-boka-info__block--note {
  background: var(--ph-cream-2);
  border: 1px dashed rgba(0,0,0,0.12);
}

.ph-boka-info__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-muted);
  margin: 0 0 20px;
}

.ph-boka-info__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ph-boka-info__step:last-child {
  border-bottom: none;
}

.ph-boka-info__step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ph-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ph-boka-info__step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ph-ink);
  margin: 0 0 3px;
}

.ph-boka-info__step-desc {
  font-size: 13px;
  color: var(--ph-muted);
  margin: 0;
  line-height: 1.5;
}

.ph-boka-info__contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ph-body);
  margin: 0 0 10px;
}

.ph-boka-info__contact-row a {
  color: var(--ph-ink);
  text-decoration: none;
}

.ph-boka-info__contact-row a:hover {
  text-decoration: underline;
}

/* Responsiv: tablet */
@media (max-width: 1024px) {
  .ph-boka-types { grid-template-columns: repeat(2, 1fr); }
  .ph-boka-layout { grid-template-columns: 1fr; gap: 40px; }
  .ph-boka-info { position: static; }
}

/* Responsiv: mobil */
@media (max-width: 600px) {
  .ph-boka-types { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ph-boka-type-card { padding: 16px 14px; }
  .ph-boka-type-card__icon { font-size: 22px; margin-bottom: 6px; }
  .ph-boka-form .ph-form-grid-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   EDITORIAL HERO (startsida)
═══════════════════════════════════════════ */
.ph-hero--home {
  min-height: 100svh;
  justify-content: flex-end;
  position: relative;
}

/* Top bar with location / year */
.ph-hero__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .ph-hero__topbar { padding: 20px 24px; }
}

.ph-hero__location-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ph-hero__location-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.ph-hero__year-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
}

/* Bottom-anchored editorial content */
.ph-hero--home .ph-hero__content {
  padding: 0 0 72px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .ph-hero--home .ph-hero__content { padding-bottom: 56px; }
}

.ph-hero--home .ph-hero__inner {
  text-align: left;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ph-hero--home .ph-hero__title {
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 48px;
  max-width: 950px;
}
@media (max-width: 768px) {
  .ph-hero--home .ph-hero__title { font-size: clamp(44px, 11vw, 72px); margin-bottom: 36px; }
}

.ph-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .ph-hero__cta-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}

.ph-hero__scroll-hint {
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ph-hero__scroll-hint::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════
   MARQUEE / SCROLLING STRIP
═══════════════════════════════════════════ */
.ph-marquee-wrap {
  overflow: hidden;
  background: var(--ph-ink);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ph-marquee-track {
  display: flex;
  width: max-content;
  animation: ph-marquee 36s linear infinite;
}
.ph-marquee-track:hover { animation-play-state: paused; }

@keyframes ph-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ph-marquee__item {
  white-space: nowrap;
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  padding: 0 28px;
  user-select: none;
}

.ph-marquee__dot {
  color: var(--ph-sage);
  font-size: 14px;
  padding: 0 4px;
  user-select: none;
}

/* ═══════════════════════════════════════════
   EDITORIAL SERVICES LIST
═══════════════════════════════════════════ */
.ph-services-list {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 64px;
}

.ph-services-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.4s var(--ph-ease), background 0.3s;
}
.ph-services-row:hover {
  padding-left: 20px;
  opacity: 1;
}
@media (max-width: 768px) {
  .ph-services-row { grid-template-columns: 40px 1fr; gap: 20px; padding: 24px 0; }
  .ph-services-row:hover { padding-left: 8px; }
}

.ph-services-row__num {
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--ph-muted);
  letter-spacing: 0.08em;
  align-self: flex-start;
  padding-top: 6px;
}

.ph-services-row__body { min-width: 0; }

.ph-services-row__title-line {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ph-services-row__title {
  font-family: var(--ph-sans);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ph-ink);
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  line-height: 1.1;
  transition: color 0.2s;
}

.ph-services-row__desc {
  font-size: 14px;
  color: var(--ph-muted);
  margin: 0;
  line-height: 1.5;
  max-width: 480px;
}

.ph-services-row__arrow {
  display: block;
  flex-shrink: 0;
  align-self: center;
  width: 36px;
  height: 1px;
  background: rgba(0,0,0,0.2);
  position: relative;
  transition: width 0.4s var(--ph-ease), background 0.3s;
}
.ph-services-row__arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(0,0,0,0.2);
  border-top: 1px solid rgba(0,0,0,0.2);
  transform: rotate(45deg);
  transition: border-color 0.3s;
}
.ph-services-row:hover .ph-services-row__arrow {
  width: 56px;
  background: var(--ph-ink);
}
.ph-services-row:hover .ph-services-row__arrow::after {
  border-color: var(--ph-ink);
}

/* Image reveal on hover (desktop only) */
.ph-services-row__img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 240px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.4s var(--ph-ease), transform 0.4s var(--ph-ease);
}
.ph-services-row:hover .ph-services-row__img {
  opacity: 1;
  transform: translateX(0);
}
.ph-services-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-services-row__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ph-white) 0%, transparent 60%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .ph-services-row__img { display: none; }
}

/* ═══════════════════════════════════════════
   PULL QUOTE / SINGLE TESTIMONIAL
═══════════════════════════════════════════ */
.ph-pull-quote {
  text-align: center;
  padding: 0;
}

.ph-pull-quote__mark {
  font-family: var(--ph-serif);
  font-size: 100px;
  line-height: 0.5;
  color: var(--ph-sage);
  display: block;
  margin-bottom: 16px;
  font-style: italic;
  opacity: 0.6;
}

.ph-pull-quote__text {
  font-family: var(--ph-serif);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--ph-ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.ph-pull-quote__divider {
  width: 32px;
  height: 1px;
  background: rgba(0,0,0,0.2);
  margin: 0 auto 20px;
}

.ph-pull-quote__author {
  font-family: var(--ph-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ph-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════
   ABOUT EDITORIAL SPLIT (mörk/ljus)
═══════════════════════════════════════════ */
.ph-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .ph-about-split { grid-template-columns: 1fr; }
}

.ph-about-split__left {
  background: var(--ph-ink);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .ph-about-split__left { padding: 72px 48px; }
}
@media (max-width: 768px) {
  .ph-about-split__left { padding: 64px 32px; }
}

.ph-about-split__pre {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ph-about-split__pre::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.ph-about-split__heading {
  font-family: var(--ph-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.ph-about-split__heading em {
  color: var(--ph-sage-light);
  font-style: italic;
}

.ph-about-split__right {
  background: var(--ph-cream-2);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .ph-about-split__right { padding: 72px 48px; }
}
@media (max-width: 768px) {
  .ph-about-split__right { padding: 64px 32px; }
}

/* ═══════════════════════════════════════════
   FEATURE CARD — NO ICON / TAG VARIANT
═══════════════════════════════════════════ */
/* Replace emoji icon with a minimal numeric/text tag */
.ph-feature__tag {
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-muted);
  margin-bottom: 20px;
  display: block;
}
/* When a .ph-feature has no icon, adjust spacing */
.ph-feature:not(:has(.ph-feature__icon)) {
  border-top: 2px solid var(--ph-cream-2);
}

/* ═══════════════════════════════════════════
   UX — FORM GRID (för kontaktsidan)
═══════════════════════════════════════════ */
.ph-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .ph-form-grid-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   UX — CUSTOM SELECT ARROW
═══════════════════════════════════════════ */
form select,
.wpcf7-form select,
.ph-boka-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px !important;
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   UX — CUSTOM CHECKBOX
═══════════════════════════════════════════ */
.ph-form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: var(--ph-white);
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
  margin: 0;
}
.ph-form-check input[type="checkbox"]:checked {
  background: var(--ph-ink);
  border-color: var(--ph-ink);
}
.ph-form-check input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.ph-form-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--ph-sage);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   UX — FORM STATES (loading / success / error)
═══════════════════════════════════════════ */
/* Loading state on submit button */
form button[type="submit"].is-loading,
.wpcf7-form .wpcf7-submit.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
  padding-left: 48px;
}
form button[type="submit"].is-loading::before,
.wpcf7-form .wpcf7-submit.is-loading::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ph-spin 0.7s linear infinite;
}
@keyframes ph-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Success / error notice */
.ph-form-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--ph-radius-md);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
}
.ph-form-notice--success {
  background: #EAF3E8;
  color: #2e5c26;
  border: 1px solid rgba(74, 103, 65, 0.2);
}
.ph-form-notice--error {
  background: #FBE8E8;
  color: #8b1c1c;
  border: 1px solid rgba(139, 28, 28, 0.2);
}
.ph-form-notice::before {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
}
.ph-form-notice--success::before { content: '✓'; }
.ph-form-notice--error::before   { content: '!'; font-weight: 700; }

/* Invalid field highlight */
form input.is-invalid,
form select.is-invalid,
form textarea.is-invalid {
  border-color: #C0392B !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08) !important;
}

/* ═══════════════════════════════════════════
   UX — FEATURE CARD LINK (underline animation)
═══════════════════════════════════════════ */
.ph-feature__link {
  position: relative;
  text-decoration: none;
}
.ph-feature__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--ph-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ph-ease);
}
.ph-feature__link:hover::after { transform: scaleX(1); }
.ph-feature__link:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   UX — SKIP TO CONTENT
═══════════════════════════════════════════ */
.ph-skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ph-ink);
  color: #fff !important;
  font-family: var(--ph-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.ph-skip-link:focus { top: 0; outline: none; }

/* ═══════════════════════════════════════════
   FOOD PHOTO GALLERY (Café Margaret)
═══════════════════════════════════════════ */

.ph-food-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.ph-food-gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ph-food-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ph-ease);
}

.ph-food-gallery__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 960px) {
  .ph-food-gallery { grid-template-columns: repeat(3, 1fr); }
}

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

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU BACKDROP
════════════════════════════════════════════════════════════════ */
.ph-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199; /* below nav (200) */
  background: rgba(14, 14, 14, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
  pointer-events: none;
}
.ph-menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — Café Margaret säsongsstängt
════════════════════════════════════════════════════════════════ */
.ph-announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201; /* above nav (200) */
  height: var(--ph-announce-h);
  background: var(--ph-cream-2);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ph-announce-bar__text {
  font-family: var(--ph-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100vw - 40px);
}

.ph-announce-bar__link {
  color: var(--ph-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 1px;
  transition: border-color 0.25s;
  margin-left: 4px;
}
.ph-announce-bar__link:hover { border-color: var(--ph-ink); }

.ph-announce-bar__sep {
  margin: 0 10px;
  color: var(--ph-sage);
  opacity: 0.6;
  font-size: 13px;
}

@media (max-width: 600px) {
  .ph-announce-bar__full { display: none; }
}
@media (min-width: 601px) {
  .ph-announce-bar__short { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SEASON NOTICE — Café Margaret page editorial callout
════════════════════════════════════════════════════════════════ */
.ph-season-notice {
  background: var(--ph-cream-2);
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.ph-season-notice__inner {
  max-width: 600px;
  margin: 0 auto;
}

.ph-season-notice__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ph-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ph-muted);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 28px;
}

.ph-season-notice__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ph-sage);
  opacity: 0.7;
}

.ph-season-notice__heading {
  font-family: var(--ph-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ph-ink);
  margin: 0 0 20px;
}

.ph-season-notice__body {
  font-family: var(--ph-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ph-muted);
  margin: 0 auto 32px;
  max-width: 440px;
}

.ph-season-notice__divider {
  width: 32px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 0 auto 28px;
}

.ph-season-notice__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ph-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ph-ink);
  text-decoration: none;
  transition: opacity 0.25s;
}
.ph-season-notice__cta::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ph-ink);
  transition: width 0.35s var(--ph-ease);
}
.ph-season-notice__cta:hover::after { width: 44px; }

/* ═══════════════════════════════════════════════════════════════════════
   BOOKING ACTIVITIES INTEGRATION
   Overrides plugin defaults to match Princess Hall design system.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Divider between calendar and contact form ─────────────────────── */
.ph-boka-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: var(--ph-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ph-boka-divider::before,
.ph-boka-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

/* ── Calendar widget container ─────────────────────────────────────── */
.ph-bookacti-wrap {
  font-family: var(--ph-sans) !important;
}

/* Calendar table */
.ph-bookacti-wrap .bookacti-calendar table,
.ph-bookacti-wrap .bookacti-calendar {
  font-family: var(--ph-sans) !important;
  border-collapse: collapse;
  width: 100%;
}

/* Calendar header row (day names) */
.ph-bookacti-wrap .bookacti-calendar thead th,
.ph-bookacti-wrap .bookacti-calendar .ui-datepicker-header {
  background: var(--ph-sage-light) !important;
  color: var(--ph-sage-dark) !important;
  font-family: var(--ph-sans) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 6px;
  border: none !important;
}

/* Month navigation */
.ph-bookacti-wrap .ui-datepicker-prev,
.ph-bookacti-wrap .ui-datepicker-next {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.7) !important;
  cursor: pointer;
}
.ph-bookacti-wrap .ui-datepicker-prev:hover,
.ph-bookacti-wrap .ui-datepicker-next:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.1) !important;
}

/* Month/Year title */
.ph-bookacti-wrap .ui-datepicker-title {
  font-family: var(--ph-serif) !important;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Calendar cells */
.ph-bookacti-wrap .bookacti-calendar td,
.ph-bookacti-wrap .ui-datepicker-calendar td {
  padding: 3px;
  text-align: center;
  border: none !important;
}
.ph-bookacti-wrap .bookacti-calendar td a,
.ph-bookacti-wrap .bookacti-calendar td span,
.ph-bookacti-wrap .ui-datepicker-calendar td a,
.ph-bookacti-wrap .ui-datepicker-calendar td span {
  display: block;
  border-radius: 6px;
  padding: 7px 4px;
  font-size: 13px;
  font-family: var(--ph-sans) !important;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  color: var(--ph-ink);
}

/* Available dates */
.ph-bookacti-wrap .bookacti-available a,
.ph-bookacti-wrap .bookacti-calendar td.bookacti-available a {
  background: rgba(107, 130, 90, 0.12) !important;
  color: var(--ph-sage) !important;
  font-weight: 600;
  cursor: pointer;
}
.ph-bookacti-wrap .bookacti-available a:hover,
.ph-bookacti-wrap .bookacti-calendar td.bookacti-available a:hover {
  background: var(--ph-sage) !important;
  color: #fff !important;
}

/* Fully booked / unavailable */
.ph-bookacti-wrap .bookacti-fully-booked a,
.ph-bookacti-wrap .bookacti-calendar td.bookacti-fully-booked a,
.ph-bookacti-wrap .bookacti-calendar td.bookacti-unavailable span {
  background: rgba(0,0,0,0.04) !important;
  color: var(--ph-muted) !important;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Selected date */
.ph-bookacti-wrap .bookacti-selected a,
.ph-bookacti-wrap .bookacti-calendar td.bookacti-selected a,
.ph-bookacti-wrap .ui-datepicker-calendar td.ui-datepicker-current-day a {
  background: var(--ph-ink) !important;
  color: var(--ph-cream) !important;
  font-weight: 600;
}

/* Today */
.ph-bookacti-wrap .ui-datepicker-today a {
  border: 1px solid var(--ph-sage) !important;
  color: var(--ph-sage) !important;
}

/* ── Booking Activities form fields ────────────────────────────────── */
.ph-bookacti-wrap .bookacti-form-field input,
.ph-bookacti-wrap .bookacti-form-field select,
.ph-bookacti-wrap .bookacti-form-field textarea,
.ph-bookacti-wrap input[type="text"],
.ph-bookacti-wrap input[type="email"],
.ph-bookacti-wrap input[type="number"],
.ph-bookacti-wrap select {
  font-family: var(--ph-sans) !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  border-radius: var(--ph-radius-sm) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: var(--ph-ink) !important;
  background: var(--ph-cream) !important;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ph-bookacti-wrap input:focus,
.ph-bookacti-wrap select:focus,
.ph-bookacti-wrap textarea:focus {
  outline: none;
  border-color: var(--ph-sage) !important;
  box-shadow: 0 0 0 3px rgba(107,130,90,0.12) !important;
}

/* ── Booking Activities submit button ──────────────────────────────── */
.ph-bookacti-wrap .bookacti-submit-btn,
.ph-bookacti-wrap input[type="submit"],
.ph-bookacti-wrap button[type="submit"] {
  font-family: var(--ph-sans) !important;
  background: var(--ph-ink) !important;
  color: var(--ph-cream) !important;
  border: none !important;
  border-radius: var(--ph-radius-sm) !important;
  padding: 13px 28px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: opacity 0.2s ease !important;
  width: 100%;
  margin-top: 12px;
}
.ph-bookacti-wrap .bookacti-submit-btn:hover,
.ph-bookacti-wrap input[type="submit"]:hover,
.ph-bookacti-wrap button[type="submit"]:hover {
  opacity: 0.85 !important;
}

/* ── Notices / messages ─────────────────────────────────────────────── */
.ph-bookacti-wrap .bookacti-notices,
.ph-bookacti-wrap .bookacti-form-response {
  font-family: var(--ph-sans) !important;
  font-size: 13px;
  border-radius: var(--ph-radius-sm);
  padding: 12px 16px;
  margin-top: 12px;
}
.ph-bookacti-wrap .bookacti-notice-success {
  background: rgba(107,130,90,0.1);
  color: var(--ph-sage);
  border-left: 3px solid var(--ph-sage);
}
.ph-bookacti-wrap .bookacti-notice-error {
  background: rgba(180,60,50,0.08);
  color: #b43c32;
  border-left: 3px solid #b43c32;
}

/* ── Loading spinner tint ───────────────────────────────────────────── */
.ph-bookacti-wrap .bookacti-loading-overlay {
  background: rgba(251,249,245,0.7) !important;
}

/* ── General typography within widget ──────────────────────────────── */
.ph-bookacti-wrap label,
.ph-bookacti-wrap .bookacti-form-field label {
  font-family: var(--ph-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--ph-ink) !important;
  display: block;
  margin-bottom: 6px;
}
.ph-bookacti-wrap p,
.ph-bookacti-wrap .bookacti-form-section-title {
  font-family: var(--ph-sans) !important;
  color: var(--ph-body) !important;
}

/* ── Month-view calendar refinements ───────────────────────────────── */

/* Header row: weekday labels (MÅN TIS …) */
.ph-bookacti-wrap .fc-col-header-cell {
  background: var(--ph-sage-light) !important;
  color: var(--ph-sage-dark) !important;
  font-family: var(--ph-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 0 8px !important;
  border-bottom: 2px solid rgba(74,103,65,0.15) !important;
}
/* Make the entire th (not just the cell link) use the same background */
.ph-bookacti-wrap .fc-col-header th,
.ph-bookacti-wrap .fc-scrollgrid thead {
  background: var(--ph-sage-light) !important;
}

/* Event tiles — on-brand light sage instead of dark olive */
.ph-bookacti-wrap .fc-daygrid-event {
  background-color: var(--ph-cream-2) !important;
  border: 1.5px solid var(--ph-sage) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  padding: 4px 6px !important;
  margin: 2px 2px 2px !important;
}

/* Event title: full name, no truncation */
.ph-bookacti-wrap .fc-daygrid-event .fc-event-title {
  font-family: var(--ph-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  white-space: normal !important;
  color: var(--ph-sage-dark) !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

/* Hide the raw time text — month view is date-only */
.ph-bookacti-wrap .fc-daygrid-event .fc-event-time {
  display: none !important;
}

/* "1 ledig" availability badge */
.ph-bookacti-wrap .bookacti-event-availability {
  font-family: var(--ph-sans) !important;
  font-size: 10px !important;
  color: var(--ph-sage) !important;
  opacity: 0.85 !important;
}

/* Dim past / outside-month day numbers */
.ph-bookacti-wrap .fc-day-past .fc-daygrid-day-number,
.ph-bookacti-wrap .fc-day-other .fc-daygrid-day-number {
  opacity: 0.3;
}

/* Subtle tint on bookable days */
.ph-bookacti-wrap .fc-daygrid-day:has(.bookacti-event-available) {
  background: rgba(74,103,65,0.04);
}

/* Grid lines: very subtle */
.ph-bookacti-wrap .fc-theme-standard td,
.ph-bookacti-wrap .fc-theme-standard th {
  border-color: rgba(74,103,65,0.12) !important;
}

/* Hide plugin label — our own section heading covers it */
.ph-bookacti-wrap .bookacti-form-field-calendar > label,
.ph-bookacti-wrap .bookacti-calendar-title {
  display: none !important;
}

/* ── Normalise navigation toolbar so every calendar looks identical ─── */
/* All toolbar buttons: consistent appearance */
.ph-bookacti-wrap .fc-button,
.ph-bookacti-wrap .fc-button-primary {
  font-family: var(--ph-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  background: var(--ph-ink) !important;
  color: var(--ph-cream) !important;
  border: none !important;
  border-radius: var(--ph-radius-sm) !important;
  padding: 6px 12px !important;
  cursor: pointer !important;
  transition: opacity 0.15s !important;
  opacity: 1 !important;
  box-shadow: none !important;
}
.ph-bookacti-wrap .fc-button:hover,
.ph-bookacti-wrap .fc-button-primary:hover {
  opacity: 0.75 !important;
  background: var(--ph-ink) !important;
}
.ph-bookacti-wrap .fc-button:disabled,
.ph-bookacti-wrap .fc-button-primary:disabled {
  opacity: 0.3 !important;
  cursor: default !important;
}
/* Month / year title */
.ph-bookacti-wrap .fc-toolbar-title {
  font-family: var(--ph-serif) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--ph-ink) !important;
  letter-spacing: -0.01em !important;
}
/* Space between prev and next buttons */
.ph-bookacti-wrap .fc-toolbar .fc-button-group {
  gap: 3px !important;
  display: inline-flex !important;
}
/* All navigation is in the center chunk – just centre it and add spacing */
.ph-bookacti-wrap .fc-header-toolbar.fc-toolbar {
  justify-content: center !important;
  margin-bottom: 16px !important;
}
.ph-bookacti-wrap .fc-header-toolbar .fc-toolbar-chunk {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
}
