@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:  #1e3a5f; --blue:  #2a6fc9; --teal:  #4ab8c1;
  --slate: #4a6275; --light: #f4f8fb; --white: #ffffff;
  --text:  #2c3e50; --muted: #6b8096;
}
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }

/* NAV */
.dc-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: var(--white); border-bottom: 1px solid #e8eef3; position: sticky; top: 0; z-index: 100; }
.dc-nav .logo img { height: 120px; width: auto; display: block; }
.dc-nav-links { display: flex; gap: 32px; list-style: none; }
.dc-nav-links a { text-decoration: none; color: var(--slate); font-size: .9rem; font-weight: 500; letter-spacing: .02em; transition: color .2s; }
.dc-nav-links a:hover { color: var(--blue); }
.dc-nav-cta { background: linear-gradient(135deg, var(--blue), var(--teal)); color: var(--white) !important; padding: 8px 20px; border-radius: 24px; font-weight: 600 !important; }

/* HERO */
.dc-hero { background: linear-gradient(160deg, #0f2540 0%, #1a3f6f 50%, #1e5f74 100%); color: var(--white); text-align: center; padding: 48px 24px 40px; }
.dc-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.dc-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.15; max-width: 720px; margin: 0 auto 20px; }
.dc-hero p { font-size: 1.15rem; font-weight: 300; max-width: 560px; margin: 0 auto 40px; opacity: .88; }
.dc-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--blue)); color: var(--white); padding: 14px 32px; border-radius: 32px; font-size: .95rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: opacity .2s, transform .15s; display: inline-block; font-family: inherit; }
.btn-primary:hover { opacity: .92; transform: translateY(-1px); }
.btn-ghost { color: var(--white); padding: 14px 32px; border-radius: 32px; font-size: .95rem; font-weight: 500; text-decoration: none; border: 2px solid rgba(255,255,255,.35); cursor: pointer; transition: border-color .2s, background .2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--teal); background: rgba(74,184,193,.1); }

/* SHARED */
.section-inner { max-width: 780px; margin: 0 auto; }
.section-inner-wide { max-width: 1000px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; }
.label-center { justify-content: center; color: var(--teal); }

/* DAILY TIP */
.tip-section { background: var(--light); padding: 80px 24px; }
.tip-card { background: var(--white); border-radius: 16px; padding: 48px 52px; box-shadow: 0 4px 24px rgba(30,58,95,.08); border-left: 5px solid var(--teal); }
.tip-card h2 { font-size: 1.7rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.tip-card p { font-size: 1.02rem; color: var(--text); margin-bottom: 16px; }
.tip-highlight { background: linear-gradient(135deg, #e8f4f8, #d6eef5); border-radius: 10px; padding: 20px 24px; margin: 24px 0; }
.tip-highlight p { font-weight: 500; color: var(--navy); margin-bottom: 0; }
.tip-steps { list-style: none; margin: 16px 0 0; display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.tip-steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; }
.tip-steps li::before { content: counter(step); counter-increment: step; min-width: 28px; height: 28px; background: linear-gradient(135deg, var(--blue), var(--teal)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.tip-closing { margin-top: 24px; font-style: italic; color: var(--slate) !important; }

/* FIELD NOTES */
.field-notes { background: var(--white); padding: 88px 24px; border-top: 1px solid #e8eef3; }
.field-notes-header { margin-bottom: 52px; }
.field-notes-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.field-notes-header .intro { font-size: 1.05rem; color: var(--muted); max-width: 680px; line-height: 1.75; }
.fn-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.fn-card { background: var(--light); border-radius: 14px; padding: 32px 28px; border-top: 4px solid var(--teal); transition: box-shadow .2s; }
.fn-card:hover { box-shadow: 0 6px 24px rgba(30,58,95,.1); }
.fn-card-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px; background: linear-gradient(135deg, var(--blue), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.fn-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.fn-card p { font-size: .93rem; color: var(--muted); line-height: 1.65; }
.fn-feature { background: linear-gradient(135deg, #0f2540, #1e5f74); border-radius: 16px; padding: 48px 52px; color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fn-feature h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.fn-feature p { font-size: 1rem; opacity: .85; line-height: 1.75; }
.fn-feature-examples { display: flex; flex-direction: column; gap: 14px; }
.fn-example { background: rgba(255,255,255,.08); border-radius: 10px; padding: 14px 18px; border-left: 3px solid var(--teal); }
.fn-example p { font-size: .9rem; opacity: .9; font-style: italic; margin: 0; }

/* ABOUT */
.about-section { padding: 80px 24px; background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { background: var(--white); border-radius: 20px; padding: 52px 40px; text-align: center; }
.about-visual img { width: 240px; height: auto; margin-bottom: 20px; }
.about-visual p { font-size: 1rem; color: var(--slate); font-style: italic; }
.about-text h2 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.about-text p { color: var(--muted); font-size: 1.02rem; margin-bottom: 14px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { background: var(--white); color: var(--slate); border-radius: 20px; padding: 6px 16px; font-size: .82rem; font-weight: 600; }

/* SIGNUP */
.signup-section { background: linear-gradient(160deg, #0f2540 0%, #1a3f6f 60%, #1e5f74 100%); padding: 80px 24px; text-align: center; color: var(--white); }
.signup-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
.signup-section > .section-inner > p { font-size: 1.05rem; opacity: .82; max-width: 480px; margin: 0 auto 36px; }
.signup-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.signup-form input[type=email] { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 32px; border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: var(--white); font-size: .95rem; font-family: inherit; outline: none; transition: border-color .2s; }
.signup-form input[type=email]::placeholder { color: rgba(255,255,255,.5); }
.signup-form input[type=email]:focus { border-color: var(--teal); }
.signup-note { margin-top: 16px; font-size: .78rem; opacity: .5; }

/* POST STYLES */
.post-container { max-width: 720px; margin: 60px auto; padding: 0 24px 80px; }
.post-header { margin-bottom: 40px; }
.post-tag { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.post-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin: 12px 0 16px; }
.post-meta { font-size: .85rem; color: var(--muted); }
.post-content { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.post-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 36px 0 16px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--blue); }

/* FOOTER */
.dc-footer { background: #0a1e34; color: rgba(255,255,255,.45); text-align: center; padding: 28px 24px; font-size: .82rem; }
.dc-footer a { color: rgba(255,255,255,.55); text-decoration: none; }
.dc-footer a:hover { color: var(--teal); }

/* ── Koenig editor required classes ── */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-image { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) { .fn-grid { grid-template-columns: 1fr 1fr; } .fn-feature { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; } }
@media (max-width: 700px) { .dc-nav { padding: 0 20px; } .dc-nav-links { display: none; } .tip-card { padding: 32px 24px; } .fn-grid { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; gap: 40px; } }
