/* 1. Hide the old theme header/nav */
.site-header,
#masthead,
header[role="banner"],
.header-main,
.wp-block-template-part[class*="header"] {
  display: none !important;
}

/* 2. Make the content go full-width — removes the theme's container */
.entry-content,
.post-content,
.page-content,
.wp-block-post-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

main#main,
#content,
.site-content,
.content-area,
#primary {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site, #page, #wrapper {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 3. Remove padding WordPress adds to blocks */
.wp-block-group,
.wp-block-group__inner-container {
  max-width: 100% !important;
  padding: 0 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Fraunces:ital,opsz,wght@0,9..144,300;1,9..144,300;1,9..144,400;1,9..144,700&display=swap');

/* PALETTE */
  :root {
    --cream:    #FAF8F2;
    --fog:      #DDD3C9;
    --linen:    #F3EDE3;
    --blush:    #ECC4C3;
    --rose:     #B97D7B;
    --sage:     #C2C9A8;
    --mauve:    #928E7A;
    --olive:    #6B7050;
    --charcoal: #2C2A24;
    --muted:    #9A9080;
  }

  /* RESET */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── TICKER ── */
  .bfc-ticker {
    background: var(--charcoal);
    color: rgba(250,248,242,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 0;
    white-space: nowrap;
    overflow: hidden;
  }
  .bfc-ticker-inner {
    display: inline-block;
    animation: bfc-marquee 40s linear infinite;
  }
  .bfc-ticker-inner span { margin: 0 2.2rem; }
  @keyframes bfc-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── TOP NAV ── */
  .bfc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 5rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(221,211,201,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .bfc-nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.03em;
  }
  .bfc-nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
  }
  .bfc-nav-links a, .bfc-nav-right a {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
  }
  .bfc-nav-links a:hover, .bfc-nav-right a:hover { color: var(--rose); }
  .bfc-nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  .bfc-nav-cta {
    font-size: 0.65rem !important;
    letter-spacing: 0.16em;
    padding: 0.48rem 1.3rem;
    border: 1px solid var(--fog) !important;
    border-radius: 50px;
    transition: all .2s !important;
  }
  .bfc-nav-cta:hover {
    background: var(--charcoal) !important;
    color: var(--cream) !important;
    border-color: var(--charcoal) !important;
  }

  /* ── HERO ── */
  .bfc-hero {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 92vh;
    overflow: hidden;
  }

  /* LEFT PANEL — photostrip */
  .bfc-strip-panel {
    background: var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .bfc-strip-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(185,125,123,0.08) 1px, transparent 1px);
    background-size: 22px 22px;
  }
  .bfc-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
  }
  .bfc-blob-1 {
    width: 280px; height: 280px;
    background: rgba(236,196,195,0.35);
    top: -60px; left: -60px;
  }
  .bfc-blob-2 {
    width: 220px; height: 220px;
    background: rgba(194,201,168,0.3);
    bottom: -40px; right: -40px;
  }

  /* PHOTO STRIP */
  .bfc-photostrip {
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
    transition: transform .5s ease;
    filter: drop-shadow(0 20px 60px rgba(44,42,36,0.22));
  }
  .bfc-photostrip:hover { transform: rotate(-1.5deg); }
  .bfc-strip-shell {
    background: #1a1916;
    padding: 10px 10px 16px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .bfc-strip-top {
    display: flex;
    justify-content: space-between;
    padding: 0 2px 6px;
    align-items: center;
  }
  .bfc-strip-holes { display: flex; gap: 4px; align-items: center; }
  .bfc-strip-hole {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .bfc-strip-code {
    font-family: monospace;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
  }
  .bfc-strip-frame {
    width: 240px;
    height: 190px;
    overflow: hidden;
    position: relative;
    background: #2a2820;
    display: block;
  }
  .bfc-strip-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: contrast(1.04) saturate(0.88);
    display: block;
  }
  .bfc-strip-bottom {
    display: flex;
    justify-content: center;
    padding: 8px 0 0;
  }
  .bfc-strip-name {
    font-family: monospace;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* RIGHT PANEL — editorial text */
  .bfc-hero-content {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem 4rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .bfc-hero-content::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(236,196,195,0.2), transparent 70%);
    pointer-events: none;
  }
  .bfc-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .bfc-eyebrow::before {
    content: '';
    width: 2rem; height: 1px;
    background: var(--blush);
    display: inline-block;
  }
  .bfc-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 4.8vw, 5.5rem);
    font-weight: 300;
    line-height: 0.98;
    color: var(--charcoal);
  }
  .bfc-hero-title em {
    font-style: italic;
    color: var(--rose);
  }
  .bfc-hero-rule {
    width: 4rem; height: 1px;
    background: var(--fog);
    margin: 2.2rem 0;
  }
  .bfc-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.85;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 3rem;
  }
  .bfc-hero-cta { display: flex; gap: 1rem; align-items: center; }
  .bfc-btn-dark {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    background: var(--charcoal);
    color: var(--cream);
    text-decoration: none;
    border-radius: 50px;
    transition: background .25s;
    display: inline-block;
  }
  .bfc-btn-dark:hover { background: var(--rose); }
  .bfc-btn-ghost {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: 1px solid var(--fog);
    color: var(--muted);
    text-decoration: none;
    border-radius: 50px;
    transition: all .25s;
    display: inline-block;
  }
  .bfc-btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

  /* ── PASTEL COLOUR BAND ── */
  .bfc-pastel-band {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 5px;
  }
  .bfc-pastel-band span:nth-child(1) { background: var(--blush); }
  .bfc-pastel-band span:nth-child(2) { background: var(--fog); }
  .bfc-pastel-band span:nth-child(3) { background: var(--sage); }
  .bfc-pastel-band span:nth-child(4) { background: var(--rose); opacity: .5; }
  .bfc-pastel-band span:nth-child(5) { background: var(--mauve); opacity: .4; }

  /* ── SECONDARY NAV STRIP (from C2) ── */
  .bfc-secondary-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(221,211,201,0.6);
    padding: 1.1rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bfc-sec-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
  }
  .bfc-sec-links a {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
  }
  .bfc-sec-links a:hover { color: var(--rose); }
  .bfc-sec-logo {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .bfc-sec-right {
    display: flex;
    gap: 1.6rem;
    align-items: center;
  }
  .bfc-sec-right a {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
  }
  .bfc-sec-right a:hover { color: var(--rose); }
  .bfc-sec-sub {
    background: var(--rose) !important;
    color: var(--cream) !important;
    padding: 0.42rem 1.2rem;
    border-radius: 50px;
  }
  .bfc-sec-sub:hover { background: var(--charcoal) !important; }

  /* ── SECTION LABEL ── */
  .bfc-sl {
    font-size: 0.63rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .bfc-sl::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(221,211,201,0.7);
  }

  /* ── BENTO GRID ── */
  .bfc-bento-wrap { padding: 4.5rem 5rem; background: var(--cream); }
  .bfc-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .bfc-bc {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
  }
  .bfc-bc:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(44,42,36,0.09);
  }
  .bfc-bc.wide { grid-column: span 2; }

  /* image cards */
  .bfc-bc-img { min-height: 320px; }
  .bfc-bc-img-sm { min-height: 240px; }
  .bfc-iw { position: absolute; inset: 0; }
  .bfc-iw .ibg { width: 100%; height: 100%; display: block; }
  .bfc-io {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,42,36,.62) 0%, rgba(44,42,36,.04) 60%, transparent 100%);
  }
  .bfc-ic { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
  .bfc-ic-cat {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 0.4rem;
  }
  .bfc-ic-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 1.25rem;
    color: #faf8f2;
    line-height: 1.3;
  }
  .bfc-ic-meta {
    font-size: 0.6rem;
    color: rgba(250,248,242,.4);
    margin-top: 0.4rem;
  }

  /* text cards */
  .bfc-bc-text {
    padding: 2.2rem 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
  }
  .bfc-tc-cat {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.9rem;
  }
  .bfc-tc-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 0.7rem;
    flex: 1;
  }
  .bfc-tc-excerpt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.97rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.2rem;
  }
  .bfc-tc-read {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    text-decoration: none;
  }
  .bfc-bc-blush { background: #F7ECEB; }
  .bfc-bc-fog   { background: #EDE7E0; }
  .bfc-bc-sage  { background: #E8EDE0; }

  /* placeholder bg colours (swap for real images) */
  .ph-sage   { background: linear-gradient(150deg,#c2c9a8,#8a9070,#4a5038); }
  .ph-warm   { background: linear-gradient(150deg,#d4c0b0,#b09880,#8a7860); }
  .ph-dark   { background: linear-gradient(150deg,#3a3828,#1e1e16); }
  .ph-park   { background: linear-gradient(150deg,#a0c0a0,#608060,#3a5838); }
  .ph-nyc    { background: linear-gradient(150deg,#b8b0a0,#888070,#585048); }
  .ph-flower { background: linear-gradient(150deg,#d4b8b0,#b09080,#8a6858); }

  /* ── PHOTO ROW ── */
  .bfc-photo-row {
    padding: 0 5rem 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 1.2rem;
    align-items: end;
  }
  .bfc-pr { border-radius: 20px; overflow: hidden; position: relative; }
  .bfc-pr.h1 { height: 280px; }
  .bfc-pr.h2 { height: 360px; }
  .bfc-pr.h3 { height: 310px; }
  .bfc-pr img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
  .bfc-pr:hover img { transform: scale(1.04); }
  .bfc-pr-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
  .bfc-pr-caption {
    position: absolute;
    bottom: 1.2rem; left: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
  }
  .bfc-pr-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    background: rgba(250,248,242,0.15);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.7);
    border-radius: 50px;
  }

  /* ── ABOUT + STATS ── */
  .bfc-about {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
  }
  .bfc-about-text {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bfc-about-eyebrow {
    font-size: 0.63rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .bfc-about-eyebrow::before {
    content: '';
    width: 1.5rem; height: 1px;
    background: var(--sage);
    display: inline-block;
  }
  .bfc-about-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.4rem;
  }
  .bfc-about-title em { font-style: italic; color: var(--blush); }
  .bfc-about-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(250,248,242,0.5);
    margin-bottom: 2.2rem;
    max-width: 380px;
  }
  .bfc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
  .bfc-tag {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.38rem 0.95rem;
    border: 1px solid rgba(194,201,168,0.2);
    color: rgba(194,201,168,0.6);
    border-radius: 50px;
  }
  .bfc-btn-sage {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: 1px solid var(--sage);
    color: var(--sage);
    text-decoration: none;
    border-radius: 50px;
    align-self: flex-start;
    transition: all .25s;
  }
  .bfc-btn-sage:hover { background: var(--sage); color: var(--charcoal); }

  /* stats grid */
  .bfc-stats {
    background: rgba(255,255,255,0.03);
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-content: center;
  }
  .bfc-stat {
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .bfc-stat.cream  { background: rgba(250,248,242,0.06); }
  .bfc-stat.blush  { background: rgba(236,196,195,0.1); }
  .bfc-stat.sage   { background: rgba(194,201,168,0.1); }
  .bfc-stat.solid  { background: var(--olive); }
  .bfc-stat-num {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 2.4rem;
    color: var(--cream);
    line-height: 1;
  }
  .bfc-stat-num em { font-style: italic; color: var(--blush); }
  .bfc-stat.sage .bfc-stat-num em { color: var(--sage); }
  .bfc-stat-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,248,242,0.4);
  }

  /* ── NEWSLETTER ── */
  .bfc-nl {
    background: var(--linen);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(221,211,201,0.5);
  }
  .bfc-nl-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 2.6rem;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
  }
  .bfc-nl-sub {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
  }
  .bfc-nl-form { display: flex; max-width: 400px; width: 100%; }
  .bfc-nl-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(221,211,201,0.8);
    border-right: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--charcoal);
    outline: none;
  }
  .bfc-nl-form input::placeholder { color: var(--muted); }
  .bfc-nl-form button {
    padding: 0.9rem 1.5rem;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 0 50px 50px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
  }
  .bfc-nl-form button:hover { background: var(--rose); }

  /* ── FOOTER ── */
  .bfc-footer {
    background: var(--charcoal);
    padding: 3.5rem 5rem 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  .bfc-f-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
  }
  .bfc-f-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(250,248,242,0.3);
    line-height: 1.6;
  }
  .bfc-f-col h4 {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
  }
  .bfc-f-col ul { list-style: none; }
  .bfc-f-col li { margin-bottom: 0.45rem; }
  .bfc-f-col a {
    font-size: 0.8rem;
    color: rgba(250,248,242,0.35);
    text-decoration: none;
    transition: color .2s;
  }
  .bfc-f-col a:hover { color: var(--sage); }
  .bfc-f-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(250,248,242,0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.66rem;
    color: rgba(250,248,242,0.22);
    letter-spacing: 0.08em;
  }