/*
 Theme Name:   Jugy Kadence
 Theme URI:    https://jugymarketing.com
 Description:  Jugy Marketing Intentional — child theme for Kadence
 Author:       Jugy Marketing Intentional
 Author URI:   https://jugymarketing.com
 Template:     kadence
 Version:      1.0.2
 Text Domain:  jugy-kadence
*/

/* =============================================================================
   BRAND TOKENS
   ============================================================================= */
:root {
  --navy:        #0F2235;
  --navy-soft:   #1C3450;
  --rose:        #D39A9A;
  --rose-deep:   #B07878;
  --tan:         #BD9E7E;
  --tan-soft:    #D9C6AE;
  --cream:       #F5F2E6;
  --cream-deep:  #EDE8D8;
  --white-warm:  #FBF9F1;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Karla', 'Helvetica Neue', sans-serif;
  --max:     1120px;
}

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

body,
body.page,
body.home,
#page,
.site,
.content-bg,
.wp-site-blocks {
  background-color: #F5F2E6 !important; /* cream — override Kadence default */
}

body {
  color: var(--navy) !important;
  font-family: var(--body) !important; /* Kadence global CSS loads after us and overwrites with system fonts */
  font-size: 17px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
}

body, input, select, optgroup, textarea, p {
  font-family: var(--body) !important;
}

/* Kadence may inject p{line-height:X} in late inline CSS, beating body inheritance.
   Explicitly force it here so prototype's 1.7 holds. !important */
p {
  line-height: 1.7 !important;
  margin-bottom: 18px;
}

/* Hide Kadence's auto-injected page title banner */
.entry-header,
.page-title-bar,
.kadence-page-title-area,
.wp-block-post-title {
  display: none !important;
}

/* Subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(15, 34, 53, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}

a {
  color: var(--navy);
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.entry-title,
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4 {
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 400 !important;
  color: #0F2235;
  /* Kadence global inline CSS sets margin-top:1.5em on headings, which at 64px h1
     produces 96px top margin — stacking on section padding and creating huge gaps. !important */
  margin-top: 0 !important;
}

h1 {
  font-size: clamp(38px, 5.4vw, 64px) !important; /* !important: Kadence global CSS loads after us and sets 32px */
  line-height: 1.12 !important;
  letter-spacing: -0.01em !important;
}

h2 {
  font-size: clamp(28px, 3.6vw, 40px) !important; /* !important: Kadence global CSS sets 28px */
  line-height: 1.2 !important;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px !important; /* !important: Kadence global CSS sets 24px */
  font-weight: 500 !important;
  margin-bottom: 10px;
}

/* =============================================================================
   TYPOGRAPHY UTILITIES
   ============================================================================= */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 18px;
}

.accent {
  color: var(--rose-deep);
  font-style: italic;
}

p.lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--navy-soft);
}

.muted {
  color: rgba(15, 34, 53, 0.72);
}

/* =============================================================================
   NAV
   ============================================================================= */
#masthead,
.site-header,
header.site-header,
.kadence-header,
.header-wrap {
  background-color: rgba(245, 242, 230, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid rgba(189, 158, 126, 0.35) !important;
  box-shadow: none !important;
}

/* Kadence sticky header */
#masthead.kadence-sticky-header,
.kadence-sticky-header .site-header {
  background-color: rgba(245, 242, 230, 0.92) !important;
}

/* Constrain Kadence header content to 1120px centered (matches prototype .nav-inner).
   Kadence defaults to --global-content-width: 1290px which fills the viewport at 1280px.
   We target .site-container inside #main-header to avoid affecting page content area. */
#main-header .site-container {
  max-width: var(--max) !important; /* 1120px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* Match prototype nav height (~72px) — Kadence sets min-height: 80px */
#main-header .site-main-header-inner-wrap {
  min-height: auto !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* Brand anchor — flex row matching prototype .brand */
.jugy-branding .brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  color: var(--navy) !important;
}

/* Brand mark image — 44×44px matching prototype .brand-mark.
   object-position:center so the circular emblem (center of JPEG) shows, not the wordmark at top. */
.jugy-branding .brand-mark {
  width: 44px !important;
  height: 44px !important;
  object-fit: cover !important;
  object-position: center center !important;
  flex-shrink: 0 !important;
  display: block !important;
  border-radius: 50% !important;
}

/* Brand name text — matching prototype .brand-name */
.brand-name {
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  letter-spacing: 0.06em !important;
  line-height: 1.25 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
}

/* "INTENTIONAL" — rose italic, matching prototype .brand-name span */
.brand-name span {
  display: block !important;
  color: var(--rose-deep) !important;
  font-style: italic !important;
}

/* Zero out Kadence content-area top padding so hero starts at nav.
   Also remove the 5rem bottom margin and article drop-shadow Kadence adds. */
.site-main,
main.site-main,
.content-area,
.entry-content,
.entry-wrap,
article.entry,
.page .entry-content-wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.content-area {
  margin-bottom: 0 !important;
}

article.entry,
.entry.single-entry,
.entry.loop-entry {
  box-shadow: none !important;
}

/* Remove Kadence side padding/margins so sections span full viewport width.
   Kadence nests content in: .content-area > .content-container[padding:0 24px] > .site-main
   then .entry-content-wrap[padding:0 32px] within article.entry.
   Our sections have their own 28px side padding so content stays inset correctly. */
article.entry {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}

.entry-content-wrap,
.page .entry-content-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

/* .content-container inside .content-area adds 24px side padding — zero it out.
   We guard with .content-area to avoid touching the header's .site-container. */
.content-area .content-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Nav link list — flex row matching prototype .nav-links */
.main-navigation .primary-menu-container .menu,
.main-navigation #primary-menu {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Individual nav links */
.main-navigation .menu > .menu-item > a {
  font-size: 14.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: var(--navy) !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  padding: 4px 0 !important;
  transition: border-color 0.3s, color 0.3s !important;
  display: inline-block !important;
}

.main-navigation .menu > .menu-item > a:hover {
  border-color: var(--tan) !important;
}

/* Active page underline */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  border-color: var(--rose) !important;
}

/* "Let's Talk" CTA pill.
   Specificity note: .main-navigation .menu > .menu-item > a (0,3,1 + !important) would
   override .nav-cta-item > a (0,1,1 + !important) for color, making text invisible.
   Match or beat (0,3,1) by using a 3-class selector here. !important */
.main-navigation .menu > .nav-cta-item > a,
.nav-cta-item > a {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  border-bottom: none !important;
  border-top: none !important;
  transition: background 0.3s !important;
}

.main-navigation .menu > .nav-cta-item > a:hover,
.nav-cta-item > a:hover {
  background: var(--navy-soft) !important;
  border-color: transparent !important;
}

/* =============================================================================
   SECTION / LAYOUT
   ============================================================================= */
section,
.wp-block-group {
  position: relative;
  z-index: 1;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


.btn,
.wp-block-button__link {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  border-radius: 32px;
  transition: all 0.3s;
  border: 1.5px solid var(--navy);
  text-decoration: none;
}

.btn-solid,
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--navy);
  color: var(--cream);
}

.btn-solid:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  transform: translateY(-1px);
}

.btn-ghost,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--navy);
}

.btn-ghost:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(15, 34, 53, 0.06);
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero,
.hero-section {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  padding: 60px 28px 80px;
  background: var(--cream);
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* =============================================================================
   BREATHING RINGS (Home hero emblem)
   ============================================================================= */
.rings-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.rings {
  width: min(420px, 80vw);
  /* Square crop centred on the circular emblem — the JPEG is portrait (768×1376)
     with text at top ~18% and text at bottom ~23%. object-position 44% keeps
     the visible window between those two text bands. */
  height: min(420px, 80vw);
  object-fit: cover;
  object-position: center 44%;
}

.breath-emblem {
  transform-origin: center;
  animation: breathe 7s ease-in-out infinite;
  /* mix-blend-mode: multiply removed — the JPEG background differs from --cream,
     causing the right half of the hero to appear tan instead of cream. */
}

.breath-ring {
  transform-origin: center;
  animation: breathe 7s ease-in-out infinite;
}

.breath-ring.r2 { animation-delay: 0.35s; }
.breath-ring.r3 { animation-delay: 0.7s; }
.breath-ring.r4 { animation-delay: 1.05s; }
.breath-ring.r5 { animation-delay: 1.4s; }

@keyframes breathe {
  0%,  100% { transform: scale(1);     opacity: 0.85; }
  50%        { transform: scale(1.045); opacity: 1;    }
}

.breath-label {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .breath-ring,
  .breath-emblem {
    animation: none;
  }

  .wp-block-button__link:hover,
  .btn:hover {
    transform: none;
  }
}

/* =============================================================================
   BAND (navy full-width strip)
   ============================================================================= */
.band,
.band-section {
  background: var(--navy);
  color: var(--cream);
}

.band h2,
.band-section h2 {
  color: var(--cream);
}

.band .eyebrow,
.band-section .eyebrow {
  color: var(--tan-soft);
}

.band p,
.band-section p {
  color: rgba(245, 242, 230, 0.85);
}

.band .accent,
.band-section .accent {
  color: var(--rose);
}

/* =============================================================================
   COMPONENT TYPOGRAPHY OVERRIDES
   ============================================================================= */

/* Portal card h3 — prototype 26px overrides global 22px */
.portal-card h3 { font-size: 26px !important; }

/* Hero h1 bottom margin — matches prototype .hero-copy h1 { margin-bottom: 26px } */
.hero-copy h1 {
  margin-bottom: 26px !important;
}

/* Hero intro paragraph */
.hero-copy p {
  font-size: 19px !important;
  max-width: 520px !important;
  color: var(--navy-soft) !important;
  margin-bottom: 36px !important;
}

/* Navy band — h1 and h2 must be light */
.band h1,
.band-section h1 { color: var(--cream) !important; }

/* =============================================================================
   PORTAL / PATH CARDS
   ============================================================================= */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.portal-card {
  background: var(--white-warm);
  border: 1px solid rgba(189, 158, 126, 0.4);
  border-radius: 20px;
  padding: 48px 40px;
  text-decoration: none;
  display: block;
  transition: all 0.35s ease;
}

.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 34, 53, 0.10);
  border-color: var(--tan);
}

.portal-card .go {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  color: var(--rose-deep);
}

/* =============================================================================
   PHILOSOPHY / THREE-GRID
   ============================================================================= */
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 54px;
}

.phil {
  border-top: 2px solid var(--tan-soft);
  padding-top: 28px;
}

.phil h3 { font-size: 21px; }
.phil p  { font-size: 15.5px; color: rgba(15, 34, 53, 0.75); }

/* =============================================================================
   TRIAD CARDS (About page)
   ============================================================================= */
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.triad-card {
  background: var(--white-warm);
  border-radius: 18px;
  border: 1px solid rgba(189, 158, 126, 0.35);
  padding: 40px 32px;
  text-align: center;
}

.triad-card .glyph {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triad-card:nth-child(1) .glyph { background: rgba(15, 34, 53, 0.08); }
.triad-card:nth-child(2) .glyph { background: rgba(211, 154, 154, 0.22); }
.triad-card:nth-child(3) .glyph { background: rgba(189, 158, 126, 0.22); }
.triad-card p { font-size: 15px; color: rgba(15, 34, 53, 0.75); }

/* =============================================================================
   FRAMEWORK ROWS
   ============================================================================= */
.fw {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fw-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 0;
  background: var(--white-warm);
  border: 1px solid rgba(189, 158, 126, 0.35);
  border-radius: 18px;
  overflow: hidden;
}

.fw-cell {
  padding: 34px 32px;
}

.fw-cell + .fw-cell {
  border-left: 1px solid rgba(189, 158, 126, 0.3);
}

.fw-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 12px;
}

.fw-cell h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.fw-cell p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(15, 34, 53, 0.78);
}

.fw-cell em { color: var(--rose-deep); font-style: italic; }

.fw-cell ul {
  list-style: none;
  font-size: 14.5px;
  color: rgba(15, 34, 53, 0.78);
}

.fw-cell ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.55;
}

.fw-cell ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

/* =============================================================================
   LETTER (About page founder letter)
   ============================================================================= */
.letter {
  background: var(--white-warm);
  border: 1px solid rgba(189, 158, 126, 0.4);
  border-radius: 20px;
  padding: 60px;
  max-width: 760px;
  margin: 50px auto 0;
  position: relative;
}

.letter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--rose));
  border-radius: 0 0 4px 4px;
}

.letter p   { margin-bottom: 18px; color: rgba(15, 34, 53, 0.85); }
.letter .sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 0;
}

/* =============================================================================
   EXPERIENCES SUITE (For Teams)
   ============================================================================= */
.suite {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.suite-card {
  border: 1px solid rgba(189, 158, 126, 0.35);
  background: var(--white-warm);
  border-radius: 18px;
  padding: 38px 32px;
}

.suite-card .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  margin-bottom: 20px;
}

.suite-card:nth-child(2) .dot { background: var(--tan); }
.suite-card:nth-child(3) .dot { background: var(--navy); }
.suite-card p { font-size: 15px; color: rgba(15, 34, 53, 0.75); }

/* =============================================================================
   CONNECT PAGE — form + booking card
   ============================================================================= */
.connect-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 54px;
  align-items: start;
}

.form-card {
  background: var(--white-warm);
  border: 1px solid rgba(189, 158, 126, 0.4);
  border-radius: 20px;
  padding: 48px;
}

/* WPForms field labels */
.wpforms-field-label {
  font-family: var(--display) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: var(--navy) !important;
  margin-bottom: 10px !important;
}

  /* WPForms field containers — override WPForms' small/medium/large width constraints */
  .wpforms-field.wpforms-field-small,
  .wpforms-field.wpforms-field-medium,
  .wpforms-field.wpforms-field-large {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* WPForms inputs — also override element-level max-width WPForms sets per size */
  .wpforms-field input,
  .wpforms-field textarea,
  .wpforms-field select,
  .wpforms-field-medium input,
  .wpforms-field-medium select,
  .wpforms-field-medium textarea,
  .wpforms-field-small input,
  .wpforms-field-small select,
  .wpforms-field-small textarea {
    background: var(--cream) !important;
    border: 1px solid rgba(189, 158, 126, 0.5) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-family: var(--body) !important;
    font-size: 15.5px !important;
    color: var(--navy) !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .wpforms-field select {
    -webkit-appearance: none !important;
    appearance: none !important;
    height: auto !important;
    overflow: visible !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 42px !important;
    line-height: 1.5 !important;
  }
  
.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
  outline: none !important;
  border-color: var(--rose) !important;
  box-shadow: 0 0 0 3px rgba(211, 154, 154, 0.2) !important;
}

/* Submit button */
.wpforms-submit {
  background: var(--navy) !important;
  color: var(--cream) !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 15px 32px !important;
  font-family: var(--body) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.03em !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
}

.wpforms-submit:hover {
  background: var(--navy-soft) !important;
}

.cal-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 20px;
  padding: 48px;
  position: sticky;
  top: 100px;
}

.cal-card h3 { color: var(--cream); font-size: 24px; }
.cal-card p  { color: rgba(245, 242, 230, 0.85); font-size: 15.5px; margin-bottom: 28px; }

.cal-card .btn {
  border-color: var(--cream);
  color: var(--navy);
  background: var(--cream);
}

.cal-card .btn:hover { background: var(--white-warm); }

.cal-meta {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(245, 242, 230, 0.2);
  font-size: 14.5px;
  line-height: 2;
}

.cal-meta a { color: var(--rose); text-decoration: none; }
.cal-meta a:hover { text-decoration: underline; }

/* =============================================================================
   CTA BAND
   ============================================================================= */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 680px; margin: 0 auto 18px; }
.cta-band p  { max-width: 560px; margin: 0 auto 34px; }

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(245, 242, 230, 0.8);
  padding: 60px 28px 40px;
  position: relative;
  z-index: 1;
}

.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.foot-brand {
  font-family: var(--display);
  font-size: 19px;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.foot-brand span { color: var(--rose); font-style: italic; }
.foot-tag { font-size: 14px; margin-top: 8px; color: var(--tan-soft); }

.foot-col { font-size: 14.5px; line-height: 2.2; }
.foot-col a { color: rgba(245, 242, 230, 0.8); text-decoration: none; }
.foot-col a:hover { color: var(--rose); }
.foot-col .head {
  color: var(--tan-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.foot-base {
  padding-top: 24px;
  border-top: 1px solid rgba(245, 242, 230, 0.15);
  font-size: 13px;
  color: rgba(245, 242, 230, 0.5);
}

/* =============================================================================
   RESPONSIVE — 920px breakpoint
   ============================================================================= */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .rings-wrap {
    order: -1;
  }

  .portal-grid,
  .three-grid,
  .triad,
  .suite {
    grid-template-columns: 1fr;
  }

  .fw-row {
    grid-template-columns: 1fr;
  }

  .fw-cell + .fw-cell {
    border-left: none;
    border-top: 1px solid rgba(189, 158, 126, 0.3);
  }

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

  .cal-card {
    position: static;
  }

  .letter {
    padding: 40px 28px;
  }

  section {
    padding: 64px 22px;
  }
}

/* =============================================================================
   RESPONSIVE — 480px breakpoint
   ============================================================================= */
@media (max-width: 480px) {
  section {
    padding: 48px 18px;
  }

  h1 {
    font-size: 36px;
  }

  .letter {
    padding: 32px 20px;
  }

  .form-card,
  .cal-card {
    padding: 32px 22px;
  }
}
