 {} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --ivory: #FBF7F0; --cream: #F4EAD8; --teal: #2DB6C0; /* --teal-dark darkened to #0A6E7D — passes WCAG AA (5.2:1) on ivory and cream */ --teal-dark: #0A6E7D; --teal-pale: #EBF8F9; /* --blush darkened to #7D3048 — passes WCAG AA (7.9:1) on ivory and cream */ --blush: #7D3048; --blush-pale: #F9EDF2; --gold: #B8882E; --charcoal: #2A2320; --mid: #70564E; /* CTA background — white text passes AA (5.4:1) at all sizes */ --cta-bg: #107080; } html { scroll-behavior: smooth; } body { font-family: 'Outfit', sans-serif; background: var(--ivory); color: var(--charcoal); overflow-x: hidden; } /* ── SKIP LINK ── */ .skip-link { position: absolute; top: -100%; left: 0; background: var(--charcoal); color: #fff; padding: 10px 20px; font-size: 0.9rem; font-weight: 500; z-index: 9999; text-decoration: none; border-bottom-right-radius: 4px; } .skip-link:focus { top: 0; } /* ── FOCUS STYLES ── */ :focus-visible { outline: 2.5px solid var(--charcoal); outline-offset: 3px; border-radius: 2px; } /* ── NAV ── */ /* Nav text uses charcoal — WCAG AA 6.4:1 on teal background */ nav { background: var(--teal); padding: 16px 36px; display: flex; align-items: center; justify-content: space-between; position: relative; } .nav-brand { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.05rem; color: var(--charcoal); letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; } .nav-links { display: flex; gap: 32px; } .nav-links a { color: var(--charcoal); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.2s; } .nav-links a:hover { opacity: 0.65; } /* Mobile hamburger */ .nav-toggle { display: none; background: none; border: 2px solid var(--charcoal); cursor: pointer; color: var(--charcoal); font-size: 1.1rem; padding: 4px 8px; line-height: 1; border-radius: 3px; } /* ── LACE DIVIDERS ── */ .lace-divider { line-height: 0; overflow: hidden; } .lace-divider svg { display: block; width: 100%; height: 70px; } /* ── HERO ── */ .hero { background: var(--ivory); padding: 64px 24px 56px; text-align: center; } .invitation-panel { position: relative; max-width: 620px; margin: 0 auto; padding: 56px 52px 48px; border: 1.5px solid rgba(45,182,192,0.55); } .invitation-panel::before { content: ''; position: absolute; inset: 9px; border: 0.5px solid rgba(45,182,192,0.28); pointer-events: none; } .corner { position: absolute; font-size: 1.1rem; color: var(--teal); background: var(--ivory); padding: 0 5px; line-height: 1; } .corner.tl { top: -0.6em; left: 18px; } .corner.tr { top: -0.6em; right: 18px; } .corner.bl { bottom: -0.6em; left: 18px; } .corner.br { bottom: -0.6em; right: 18px; } .panel-from { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blush); margin-bottom: 20px; } .panel-ornament { font-size: 1.4rem; color: var(--teal); letter-spacing: 0.3em; margin-bottom: 8px; display: block; } .panel-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(4.5rem, 14vw, 7.5rem); font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 0.88; letter-spacing: -0.01em; } .panel-title strong { font-weight: 600; font-style: normal; color: var(--teal-dark); } .panel-rule { width: 80px; height: 1px; background: var(--teal); margin: 22px auto; opacity: 0.45; } .panel-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; font-weight: 400; color: var(--mid); letter-spacing: 0.04em; margin-bottom: 18px; } .panel-teapot { font-size: 2.4rem; display: block; margin-bottom: 20px; } .panel-date { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; } .panel-time { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); } /* ── DETAILS ── */ .details-section { background: var(--ivory); padding: 60px 24px; } .details-grid { max-width: 820px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; } .detail-block { min-width: 180px; flex: 1; } .detail-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px; } .detail-value { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; } .detail-sub { font-size: 0.85rem; color: var(--mid); margin-top: 4px; } .detail-divider { width: 1px; background: rgba(45,182,192,0.2); align-self: stretch; display: none; } @media (min-width: 600px) { .detail-divider { display: block; } } /* ── ABOUT ── */ .about-section { background: var(--cream); padding: 64px 24px; } .about-inner { max-width: 820px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } .section-label { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blush); margin-bottom: 12px; } .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; font-style: italic; color: var(--charcoal); line-height: 1.2; margin-bottom: 24px; } .section-title em { font-style: normal; color: var(--teal-dark); } .about-body { font-size: 1.05rem; line-height: 1.8; color: var(--mid); max-width: 680px; } .about-body p + p { margin-top: 16px; } .about-list { list-style: none; margin-top: 32px; } .about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(45,182,192,0.18); font-size: 0.92rem; color: var(--mid); } .about-list li::before { content: '✦'; color: var(--teal-dark); flex-shrink: 0; font-size: 0.6rem; margin-top: 5px; } .about-stamp { background: var(--ivory); border: 1px solid rgba(45,182,192,0.35); border-radius: 4px; padding: 28px 24px; text-align: center; position: relative; margin-top: 8px; } .about-stamp::before { content: ''; position: absolute; inset: 6px; border: 0.5px dashed rgba(45,182,192,0.25); pointer-events: none; } .stamp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; font-weight: 600; color: var(--teal-dark); margin-bottom: 6px; } .stamp-body { font-size: 0.85rem; line-height: 1.65; color: var(--mid); } .stamp-ornament { display: block; font-size: 1.8rem; margin-bottom: 14px; } /* ── VENUE ── */ .venue-section { background: var(--ivory); padding: 64px 24px; } .venue-inner { max-width: 820px; margin: 0 auto; } .venue-header { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; } .venue-badge { flex-shrink: 0; /* Darkened to --teal-dark for white text contrast (4.1:1 on large bold text ✓) */ background: var(--teal-dark); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; font-weight: 600; padding: 10px 20px; border-radius: 3px; letter-spacing: 0.04em; line-height: 1; } .venue-badge span { display: block; font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-style: normal; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; margin-bottom: 3px; } .venue-body { flex: 1; min-width: 240px; } .venue-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 4px; } .venue-address { font-size: 0.85rem; color: var(--mid); margin-bottom: 14px; } .venue-desc { font-size: 0.98rem; line-height: 1.8; color: var(--mid); } .venue-photos { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin-top: 28px; } .venue-photo { background: var(--cream); border-radius: 6px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; border: 1px solid rgba(45,182,192,0.15); } /* ── WHAT TO EXPECT ── */ .expect-section { background: var(--cream); padding: 64px 24px; } .expect-grid { max-width: 820px; margin: 36px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; } .expect-card { background: var(--ivory); border-radius: 12px; padding: 28px 24px; text-align: center; border: 1px solid rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; } .expect-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(45,182,192,0.1); } .card-icon { font-size: 2rem; margin-bottom: 12px; display: block; } .card-title-sm { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; } .card-desc { font-size: 0.88rem; line-height: 1.6; color: var(--mid); } /* ── CTA ── */ /* Background darkened to #107080 — white text 5.4:1 passes AA at all sizes */ .cta-section { background: var(--cta-bg); padding: 72px 24px; text-align: center; } .cta-section .section-label { color: rgba(255,255,255,0.7); } .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; font-style: italic; color: #fff; line-height: 1.15; margin-bottom: 16px; } .cta-title em { font-style: normal; } .cta-sub { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; } .btn-primary { display: inline-block; background: #fff; color: var(--cta-bg); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 44px; border-radius: 999px; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 18px rgba(0,0,0,0.15); } .btn-primary:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); } .cta-note { display: block; margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; } /* ── FOOTER ── */ footer { background: var(--charcoal); padding: 40px 24px; text-align: center; } .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; font-style: italic; color: var(--teal); letter-spacing: 0.06em; margin-bottom: 8px; } /* Opacity raised to 0.7 for contrast */ .footer-url { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-decoration: none; } .footer-url:hover { color: var(--teal); } .footer-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.15); margin: 16px auto; } /* Opacity raised to 0.6 for contrast */ .footer-note { font-size: 0.75rem; color: rgba(255,255,255,0.6); } /* ── RESPONSIVE ── */ @media (max-width: 640px) { .about-inner { grid-template-columns: 1fr; gap: 36px; } .venue-photos { grid-template-columns: 1fr 1fr; } } @media (max-width: 560px) { .nav-links { display: none; flex-direction: column; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: var(--teal); padding: 20px 36px; z-index: 100; border-top: 1px solid rgba(0,0,0,0.1); } .nav-links.is-open { display: flex; } .nav-toggle { display: block; } .invitation-panel { padding: 40px 28px 36px; } .detail-divider { display: none; } } @media (prefers-reduced-motion: reduce) { .expect-card, .btn-primary { transition: none; } }
