/* ═══════════════════════════════════════════════════════
   SEO Pages — Shared Styles

   ACTUALLY used by (links via <link rel="stylesheet">):
     ranch-weddings-arizona.html
     small-weddings-elopements.html
     tucson-wedding-planning-guide.html
     outdoor-ceremony-layouts.html
     ranch-wedding-catering.html
     tucson-wedding-costs.html
     tucson-wedding-vendors.html
     wedding-planning-timeline.html

   Previously had inline <style> copies (now migrated to link this file):
     corporate-events-tucson.html
     outdoor-wedding-venue-tucson.html
     tucson-wedding-venue.html

   All three now link this CSS with only a small inline <style> block
   for their page-specific hero background-image.
   ═══════════════════════════════════════════════════════ */

/* ─── Base ─── */
body { background-color: #f2eee3; }

/* ─── Hero ─── */
.seo-hero {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #cccccc;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.seo-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}
.seo-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
}
.seo-hero-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 12px;
	text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.seo-hero-sub {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ─── Nav ─── */
.seo-nav {
	background: #332f29;
	padding: 14px 20px;
	text-align: center;
}
.seo-nav a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 14px;
	color: #e8ca8c;
	text-decoration: none;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.3s;
}
.seo-nav a:hover { color: #fff; }

/* ─── Body ─── */
.seo-body {
	max-width: 780px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}
.seo-body h2 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 400;
	color: #332f29;
	margin: 48px 0 16px;
}
.seo-body h2:first-of-type { margin-top: 0; }
.seo-body p {
	font-family: 'Domine', serif;
	font-size: 16px;
	color: #4a4540;
	line-height: 1.85;
	margin: 0 0 20px;
}
.seo-body a:not(.seo-cta-btn) { color: #c87d55; text-decoration: none; }
.seo-body a:not(.seo-cta-btn):hover { text-decoration: underline; }

/* ─── Stats (used by tucson-wedding-venue) ─── */
.seo-stats {
	display: flex;
	gap: 40px;
	justify-content: center;
	padding: 32px 0;
	margin: 32px 0;
	border-top: 1px solid #e0dcd5;
	border-bottom: 1px solid #e0dcd5;
}
.seo-stat { text-align: center; }
.seo-stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	color: #332f29;
	line-height: 1;
}
.seo-stat-label {
	font-family: 'Assistant', sans-serif;
	font-size: 11px;
	color: #8a8580;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 6px;
}

/* ─── CTA ─── */
.seo-cta {
	text-align: center;
	padding: 48px 20px;
	background: #f8f5f0;
	border-radius: 16px;
	margin-top: 48px;
}
.seo-cta p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: #332f29;
	margin: 0 0 8px;
}
.seo-cta .seo-cta-sub {
	font-family: 'Assistant', sans-serif;
	font-size: 15px;
	color: #8a8580;
	margin-bottom: 24px;
}
.seo-cta-btn {
	font-family: 'Cormorant Garamond', serif;
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 14px 40px;
	border: 1px solid #c87d55;
	background: #c87d55;
	color: #fff;
	cursor: pointer;
	border-radius: 2px;
	transition: all 0.35s;
	text-decoration: none;
	display: inline-block;
	margin: 0 8px 8px;
}
.seo-cta-btn:hover {
	background: transparent;
	color: #c87d55;
	text-decoration: none;
}
.seo-cta-btn.outline {
	background: transparent;
	color: #c87d55;
}
.seo-cta-btn.outline:hover {
	background: #c87d55;
	color: #fff;
}

/* ─── Footer ─── */
.seo-footer {
	background: #1C0C08; border-top: 3px solid #c87d55;
	text-align: center;
	padding: 48px 20px 36px;
	position: relative;
}
.seo-footer::before {
	content: '\2726  \2726  \2726';
	display: block;
	font-size: 12px;
	letter-spacing: 0.5em;
	color: rgba(232,202,140,0.3);
	margin-bottom: 24px;
}
.seo-footer-logo {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 400;
	font-style: italic;
	color: #e8ca8c;
	margin: 0 0 6px;
	letter-spacing: 0.04em;
}
.seo-footer-tagline {
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(240,216,176,0.4);
	margin: 0 0 12px;
}
.seo-footer-phone {
	font-family: 'Cormorant Garamond', serif;
	font-size: 14px;
	letter-spacing: 0.08em;
	color: rgba(240,216,176,0.5);
	margin: 0 0 24px;
}
.seo-footer-phone a {
	color: #e8ca8c;
	text-decoration: none;
	transition: color 0.3s;
}
.seo-footer-phone a:hover {
	color: #FFF8EE;
}
.seo-footer-socials {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 28px;
}
.seo-footer-socials a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(232,202,140,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(232,202,140,0.5);
	text-decoration: none;
	transition: all 0.3s;
}
.seo-footer-socials a i {
	font-size: 18px;
	margin: 0;
	padding: 0;
	color: inherit;
	background: none;
}
.seo-footer-socials a:hover {
	border-color: #e8ca8c;
	color: #e8ca8c;
	transform: translateY(-2px);
}
.seo-footer-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.seo-footer-links a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(240,216,176,0.4);
	text-decoration: none;
	transition: color 0.3s;
	padding: 4px 0;
}
.seo-footer-links a:hover { color: #FFF8EE; }
.seo-footer-sep {
	color: rgba(232,202,140,0.2);
	font-size: 8px;
	display: flex;
	align-items: center;
}
.seo-footer-divider {
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(232,202,140,0.25), transparent);
	margin: 0 auto 20px;
}
.seo-footer p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	letter-spacing: 0.15em;
	color: rgba(240,216,176,0.35);
	margin: 0;
}

/* ─── Responsive ─── */
@media screen and (max-width: 768px) {
	.seo-hero { height: 380px; }
	.seo-hero-content h1 { font-size: 34px; }
	.seo-body h2 { font-size: 26px; }
	.seo-stats { gap: 24px; }
	.seo-stat-num { font-size: 28px; }
}
@media screen and (max-width: 480px) {
	.seo-hero { height: 300px; }
	.seo-hero-content h1 { font-size: 28px; }
	.seo-hero-sub { font-size: 14px; }
	.seo-body { padding: 40px 16px 60px; }
	.seo-body p { font-size: 15px; }
	.seo-stats { flex-wrap: wrap; gap: 20px; }
}
