:root {
--rose: #d4727a;
--rose-dark: #c0636b;
--rose-light: #f2c4c4;
--cream: #fffaf8;
--cream-mid: #fdf0ec;
--dark: #2d2d2d;
--mid: #4a4a4a;
--muted: #6b6b6b;
--border: rgba(212, 114, 122, 0.2);
--shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.08);
--font-serif: "Cormorant Garamond", Georgia, serif;
--font-sans: "Inter", sans-serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: var(--font-sans);
background: var(--cream);
color: var(--dark);
}
a {
color: inherit;
}
img {
max-width: 100%;
display: block;
}
.screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 50;
background: rgba(255, 250, 248, 0.95);
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(212, 114, 122, 0.15);
}
body {
padding-top: 88px;
}
.site-nav,
.site-footer-inner,
.page-shell,
.posts-grid-wrap,
.single-shell,
.archive-shell {
width: min(1152px, calc(100% - 3rem));
margin: 0 auto;
}
.hero-inner {
width: calc(100% - 3rem);
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.site-nav {
min-height: 88px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
}
.nav-main {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
flex: 1;
}
.nav-logo {
font-family: var(--font-serif);
font-size: 1.5rem;
font-weight: 600;
color: var(--dark);
text-decoration: none;
transition: color 0.2s;
}
.nav-logo:hover {
color: var(--rose);
}
.nav-links {
display: flex;
align-items: center;
gap: 1.5rem;
flex-wrap: wrap;
}
.nav-links a {
text-decoration: none;
color: var(--muted);
font-size: 0.875rem;
letter-spacing: 0.05em;
transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.current {
color: var(--rose);
}
.nav-links a.btn-nav {
color: #fff;
}
.nav-links a.btn-nav:hover {
color: #fff;
}
.btn-nav,
.btn-primary,
.wp-element-button,
button,
input[type="submit"] {
background: var(--rose);
color: #fff;
border: 0;
border-radius: 999px;
padding: 0.85rem 1.35rem;
font: inherit;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: background 0.2s ease, transform 0.2s ease;
}
.btn-nav:hover,
.btn-primary:hover,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover {
background: var(--rose-dark);
transform: translateY(-1px);
}
.btn-outline {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
border: 1px solid rgba(212, 114, 122, 0.35);
border-radius: 999px;
color: var(--rose);
text-decoration: none;
padding: 0.85rem 1.35rem;
background: rgba(212, 114, 122, 0.04);
}
.btn-outline:hover {
background: rgba(212, 114, 122, 0.08);
}
.cart-wrap {
position: relative;
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
text-decoration: none;
color: var(--dark);
}
.cart-wrap:hover {
color: var(--rose);
}
.cart-wrap:hover .cart-dropdown {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}
.cart-dropdown:hover {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}
.cart-wrap::after {
content: '';
position: absolute;
top: 100%;
left: 0;
right: 0;
height: 1rem;
}
.cart-icon-wrap {
position: relative;
}
.cart-badge {
position: absolute;
top: -6px;
right: -8px;
background: var(--rose);
color: white;
font-size: 0.65rem;
font-weight: 700;
width: 1.1rem;
height: 1.1rem;
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
}
.cart-badge.visible {
display: flex;
}
.cart-label {
font-family: var(--font-serif);
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.cart-dropdown {
position: absolute;
top: calc(100% + 0.5rem);
right: 0;
background: white;
border-radius: 1rem;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
min-width: 280px;
padding: 1.25rem;
opacity: 0;
pointer-events: none;
transform: translateY(-8px);
transition: opacity 0.2s ease, transform 0.2s ease;
z-index: 100;
}
.cart-dropdown-title {
font-family: var(--font-serif);
font-size: 1rem;
font-weight: 600;
color: var(--dark);
margin-bottom: 1rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid rgba(212, 114, 122, 0.15);
}
.cart-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
font-size: 0.85rem;
color: var(--muted);
gap: 0.5rem;
}
.cart-item-name {
color: var(--dark);
font-weight: 500;
flex: 1;
min-width: 0;
}
.cart-empty {
font-size: 0.85rem;
color: var(--muted);
font-style: italic;
text-align: center;
padding: 0.5rem 0;
}
.cart-total {
display: flex;
justify-content: space-between;
margin-top: 1rem;
padding-top: 0.75rem;
border-top: 1px solid rgba(212, 114, 122, 0.15);
font-weight: 600;
font-size: 0.9rem;
color: var(--dark);
}
.cart-total span:last-child {
color: var(--rose);
font-family: var(--font-serif);
font-size: 1rem;
}
.cart-btn {
display: block;
text-align: center;
background: var(--rose);
color: white;
padding: 0.6rem;
border-radius: 0.75rem;
font-size: 0.85rem;
font-weight: 600;
text-decoration: none;
margin-top: 0.75rem;
transition: background 0.2s ease;
}
.cart-btn:hover {
background: var(--rose-dark);
}
.hero-diary {
position: relative;
overflow: hidden;
padding: 4.5rem 0 3rem;
background:
radial-gradient(circle at top left, rgba(242, 196, 196, 0.75), transparent 35%),
linear-gradient(180deg, rgba(253, 240, 236, 0.95) 0%, rgba(255, 250, 248, 1) 70%);
}
.hero-copy {
width: 100%;
max-width: 100%;
text-align: center;
}
.hero-actions {
justify-content: center;
}
.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 0.85rem;
margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
width: 2.5rem;
height: 2px;
background: var(--rose);
}
.hero-eyebrow-text {
font-size: 0.78rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--rose);
}
.hero-title,
.section-title,
.entry-title,
.single-title,
.archive-title,
.empty-title {
font-family: var(--font-serif);
font-weight: 600;
line-height: 1.05;
letter-spacing: -0.02em;
}
.hero-title {
font-size: clamp(3rem, 6vw, 5rem);
margin: 0;
}
.hero-subtitle {
margin: 1rem 0 0;
font-family: var(--font-serif);
font-size: clamp(1.4rem, 3vw, 2rem);
color: var(--mid);
line-height: 1.3;
}
.hero-divider {
width: 3rem;
height: 2px;
margin: 2rem auto;
background: rgba(212, 114, 122, 0.4);
}
.hero-body {
font-size: 1.05rem;
color: var(--muted);
line-height: 1.9;
max-width: 58ch;
margin-left: auto;
margin-right: auto;
}
.hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 2rem;
}
.hero-panel {
background: rgba(255, 255, 255, 0.75);
border: 1px solid rgba(212, 114, 122, 0.15);
border-radius: 1.75rem;
padding: 2rem;
box-shadow: var(--shadow-soft);
}
.hero-panel-card {
background: white;
border-radius: 1.35rem;
padding: 1.5rem;
box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}
.hero-panel-label,
.post-meta,
.entry-meta,
.archive-meta,
.single-meta {
color: var(--rose);
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.75rem;
}
.hero-panel-title {
margin: 0.6rem 0;
font-family: var(--font-serif);
font-size: 1.7rem;
}
.hero-panel-text {
color: var(--muted);
line-height: 1.8;
}
.hero-stats {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
margin-top: 1rem;
}
.stat-card {
background: white;
border-radius: 1rem;
padding: 1.1rem 1rem;
text-align: center;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.stat-value {
font-family: var(--font-serif);
color: var(--rose);
font-size: 1.8rem;
font-weight: 600;
}
.stat-label {
color: var(--muted);
font-size: 0.82rem;
margin-top: 0.35rem;
}
.page-shell {
padding: 4rem 0 5rem;
}
.section-head {
display: flex;
justify-content: space-between;
gap: 1rem;
align-items: end;
margin-bottom: 2rem;
}
.section-title {
font-size: clamp(2rem, 4vw, 3.2rem);
margin: 0;
}
.section-subtitle {
color: var(--muted);
font-size: 1rem;
line-height: 1.8;
max-width: 48ch;
}
.posts-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
}
.post-card {
display: flex;
flex-direction: column;
background: white;
border-radius: 1.5rem;
overflow: hidden;
box-shadow: var(--shadow-soft);
border: 1px solid rgba(212, 114, 122, 0.1);
min-height: 100%;
}
.post-card-media {
aspect-ratio: 4 / 3;
background: linear-gradient(135deg, rgba(242, 196, 196, 0.75), rgba(255, 250, 248, 1));
overflow: hidden;
}
.post-card-media img {
width: 100%;
height: 100%;
object-fit: cover;
}
.post-card-body {
display: flex;
flex: 1;
flex-direction: column;
padding: 1.5rem;
}
.entry-title {
font-size: 2rem;
margin: 0.5rem 0 0.75rem;
}
.entry-title a {
text-decoration: none;
}
.entry-title a:hover {
color: var(--rose);
}
.entry-excerpt,
.single-content,
.empty-text {
color: var(--mid);
line-height: 1.9;
}
.entry-excerpt {
flex: 1;
}
.entry-footer {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid rgba(212, 114, 122, 0.12);
}
.read-more {
color: var(--rose);
font-weight: 600;
text-decoration: none;
}
.read-more:hover {
color: var(--rose-dark);
}
.single-shell,
.archive-shell {
padding: 4rem 0 5rem;
}
.single-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 320px;
gap: 2rem;
align-items: start;
}
.single-main,
.single-sidebar,
.archive-intro,
.empty-state {
background: white;
border-radius: 1.5rem;
box-shadow: var(--shadow-soft);
border: 1px solid rgba(212, 114, 122, 0.08);
}
.single-main {
padding: 2rem;
}
.single-cover {
border-radius: 1.25rem;
overflow: hidden;
margin-bottom: 2rem;
}
.single-cover img {
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
}
.single-title {
font-size: clamp(2.4rem, 5vw, 4rem);
margin: 0.6rem 0 1rem;
}
.single-content > * {
max-width: 100%;
}
.single-content h2,
.single-content h3,
.single-content h4 {
font-family: var(--font-serif);
color: var(--dark);
margin-top: 2rem;
margin-bottom: 0.75rem;
}
.single-content p,
.single-content ul,
.single-content ol,
.single-content blockquote {
margin: 0 0 1.25rem;
}
.single-content blockquote {
margin: 2rem 0;
padding: 1rem 1.25rem;
border-left: 3px solid var(--rose);
background: var(--cream-mid);
border-radius: 0 1rem 1rem 0;
font-family: var(--font-serif);
font-size: 1.2rem;
color: var(--mid);
}
.single-sidebar {
padding: 1.5rem;
position: sticky;
top: 112px;
}
.sidebar-block + .sidebar-block {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(212, 114, 122, 0.12);
}
.sidebar-title {
margin: 0 0 0.8rem;
font-family: var(--font-serif);
font-size: 1.35rem;
}
.sidebar-text,
.sidebar-links a,
.pagination-shell a,
.pagination-shell span {
color: var(--muted);
text-decoration: none;
}
.sidebar-links {
display: grid;
gap: 0.75rem;
}
.sidebar-links a:hover {
color: var(--rose);
}
.archive-title {
font-size: clamp(2.2rem, 4vw, 3.4rem);
margin: 0.5rem 0;
}
.archive-intro,
.empty-state {
padding: 2rem;
margin-bottom: 2rem;
}
.pagination-shell {
display: flex;
justify-content: center;
margin-top: 2.5rem;
}
.nav-links-inline {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 2.6rem;
height: 2.6rem;
border-radius: 999px;
background: white;
border: 1px solid rgba(212, 114, 122, 0.15);
}
.page-numbers.current,
.page-numbers:hover {
color: white;
background: var(--rose);
border-color: var(--rose);
}
.site-footer {
background: var(--dark);
color: #d1d5db;
}
.site-footer-inner {
padding: 4rem 0;
}
.footer-grid {
display: grid;
gap: 2rem;
grid-template-columns: 2fr 1fr 1.5fr 1fr;
}
.footer-brand h3,
.footer-col h4 {
font-family: var(--font-serif);
font-weight: 600;
}
.footer-brand h3 {
font-size: 1.5rem;
margin: 0 0 0.75rem;
color: white;
}
.footer-brand p {
margin: 0;
color: #9ca3af;
line-height: 1.7;
}
.footer-col h4 {
margin: 0 0 1rem;
color: white;
font-size: 1.1rem;
}
.footer-links {
display: grid;
gap: 0.75rem;
}
.footer-links a,
.footer-bottom a {
color: #9ca3af;
text-decoration: none;
}
.footer-links a:hover,
.footer-bottom a:hover {
color: var(--rose);
}
.footer-bottom {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
text-align: center;
font-size: 0.9rem;
}
.legal-links {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
margin-top: 0.85rem;
}
.search-form {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.search-field,
input[type="text"],
input[type="email"],
textarea {
width: 100%;
border: 1px solid rgba(212, 114, 122, 0.25);
border-radius: 0.85rem;
background: var(--cream);
padding: 0.85rem 1rem;
font: inherit;
color: var(--dark);
}
.search-form label {
flex: 1 1 220px;
}
.search-field:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
outline: none;
border-color: var(--rose);
box-shadow: 0 0 0 3px rgba(212, 114, 122, 0.12);
}
@media (max-width: 980px) {
.single-layout,
.footer-grid,
.posts-grid {
grid-template-columns: 1fr;
}
.single-sidebar {
position: static;
}
}
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
color: var(--dark);
}
.mobile-nav {
display: none;
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: var(--cream);
z-index: 200;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
font-family: var(--font-serif);
font-size: 2rem;
font-weight: 600;
color: var(--dark);
text-decoration: none;
transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--rose); }
.mobile-nav-close {
position: absolute;
top: 1.25rem; right: 1.5rem;
background: none;
border: none;
cursor: pointer;
color: var(--dark);
font-size: 1.5rem;
z-index: 201;
}
@media (max-width: 768px) {
.nav-links { display: none; }
.menu-toggle { display: block; }
.site-nav {
min-height: auto;
padding: 1rem 0;
}
.nav-main {
width: auto;
}
.nav-links {
gap: 0.9rem 1.15rem;
}
.page-shell,
.single-shell,
.archive-shell {
padding-top: 3rem;
}
.hero-diary {
padding-top: 3rem;
}
.single-main,
.single-sidebar,
.archive-intro,
.empty-state {
padding: 1.35rem;
}
}