/* Atelier Lumen — Haute Lunetterie & Optique Lisbon */
:root {
	--navy-950: #060a14;
	--navy-900: #0c1427;
	--navy-850: #101b33;
	--navy-800: #152445;
	--navy-700: #1e335e;
	--navy-600: #29447a;
	--sand-50: #faf7f2;
	--sand-100: #f4ede2;
	--sand-200: #e8ded0;
	--sand-300: #d6c5af;
	--sand-400: #bea88d;
	--sand-500: #a58a69;
	--sand-600: #886d4e;
	--terracotta: #c66236;
	--terracotta-hover: #b05329;
	--gold: #c8a365;
	--gold-light: #e6ce9e;
	--text-primary: #f8f5ee;
	--text-secondary: #c9bfb0;
	--text-muted: #8e887d;
	--border-subtle: rgba(214, 197, 175, 0.15);
	--border-medium: rgba(214, 197, 175, 0.28);
	--border-gold: rgba(200, 163, 101, 0.4);
	--card-bg: rgba(16, 27, 51, 0.72);
	--card-bg-solid: #101b33;
	--card-hover: rgba(21, 36, 69, 0.88);
	--font-display: "Cinzel", "Playfair Display", Georgia, serif;
	--font-editorial: "Playfair Display", Georgia, serif;
	--font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-full: 9999px;
	--transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	--shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.25);
	--shadow-elevation: 0 12px 36px rgba(0, 0, 0, 0.45);
	--shadow-gold: 0 8px 30px rgba(200, 163, 101, 0.12);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--navy-950);
	color: var(--text-primary);
	font-family: var(--font-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100vh;
	background: radial-gradient(circle at 50% 0%, var(--navy-850) 0%, var(--navy-950) 80%);
	color: var(--text-primary);
	overflow-x: hidden;
}

/* Background Atmospheric Subtle Grain / Glow */
.atmosphere-glow {
	position: fixed;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 1000px;
	height: 600px;
	background: radial-gradient(ellipse at center, rgba(200, 163, 101, 0.08) 0%, rgba(16, 27, 51, 0) 70%);
	pointer-events: none;
	z-index: 0;
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

@media (min-width: 768px) {
	.container {
		padding: 0 2rem;
	}
}

/* Typography Hierarchy */
h1, h2, h3, h4, .font-serif {
	font-family: var(--font-editorial);
	font-weight: 400;
	letter-spacing: -0.01em;
	color: var(--sand-50);
}

.brand-heading {
	font-family: var(--font-display);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--gold);
	margin-bottom: 0.75rem;
}

.eyebrow::before, .eyebrow::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1.15;
	margin-bottom: 1rem;
	color: var(--sand-50);
}

.section-subtitle {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--text-secondary);
	max-width: 640px;
	margin: 0 auto 3rem auto;
}

.text-center {
	text-align: center;
}

/* Header & Navigation */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(6, 10, 20, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
	transition: background var(--transition-fast);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
}

.brand-logo {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--sand-50);
}

.brand-name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.brand-tag {
	font-family: var(--font-sans);
	font-size: 0.65rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	border-left: 1px solid var(--border-subtle);
	padding-left: 0.5rem;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 960px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	font-weight: 500;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color var(--transition-fast);
	position: relative;
	padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
	color: var(--sand-50);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: var(--gold);
	transition: width var(--transition-fast);
}

.nav-link:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.status-pill {
	display: none;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	background: rgba(200, 163, 101, 0.1);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-full);
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--gold-light);
}

@media (min-width: 640px) {
	.status-pill {
		display: inline-flex;
	}
}

.status-dot {
	width: 6px;
	height: 6px;
	background: #38bdf8;
	border-radius: 50%;
	box-shadow: 0 0 8px #38bdf8;
	animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}

.menu-toggle-btn {
	background: none;
	border: 1px solid var(--border-subtle);
	color: var(--sand-50);
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
}

@media (min-width: 960px) {
	.menu-toggle-btn {
		display: none;
	}
}

/* Mobile Nav Drawer */
.mobile-nav {
	display: flex;
	flex-direction: column;
	background: var(--navy-900);
	border-bottom: 1px solid var(--border-subtle);
	padding: 1.5rem 1.25rem;
	gap: 1.25rem;
	animation: slide-down 0.25s ease-out;
}

@keyframes slide-down {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-link {
	font-size: 1.1rem;
	font-family: var(--font-editorial);
	color: var(--sand-100);
	text-decoration: none;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--border-subtle);
}

/* Buttons & Interactive Elements */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.85rem 1.6rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition-fast);
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn-primary {
	background: var(--sand-100);
	color: var(--navy-950);
	box-shadow: 0 4px 14px rgba(244, 237, 226, 0.15);
}

.btn-primary:hover {
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 237, 226, 0.25);
}

.btn-secondary {
	background: transparent;
	color: var(--sand-100);
	border-color: var(--border-medium);
	backdrop-filter: blur(8px);
}

.btn-secondary:hover {
	background: rgba(244, 237, 226, 0.08);
	border-color: var(--sand-300);
	transform: translateY(-2px);
}

.btn-gold {
	background: var(--gold);
	color: var(--navy-950);
	font-weight: 600;
}

.btn-gold:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 4.5rem 0 5rem 0;
	overflow: hidden;
}

@media (min-width: 960px) {
	.hero-section {
		padding: 6.5rem 0 7.5rem 0;
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 4rem;
	}
}

.hero-content {
	max-width: 640px;
}

.hero-headline {
	font-size: clamp(2.4rem, 5.5vw, 3.85rem);
	line-height: 1.08;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.hero-headline span.gold-italics {
	font-style: italic;
	font-family: var(--font-editorial);
	color: var(--gold);
	display: inline-block;
}

.hero-desc {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.7;
	color: var(--sand-200);
	margin-bottom: 2.25rem;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-stats-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
	.hero-stats-strip {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-value {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--sand-50);
}

.stat-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin-top: 0.2rem;
}

/* Hero Showcase Card */
.hero-showcase-frame {
	position: relative;
	background: linear-gradient(145deg, rgba(21, 36, 69, 0.8) 0%, rgba(12, 20, 39, 0.95) 100%);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-elevation);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-showcase-badge {
	align-self: flex-start;
	background: rgba(200, 163, 101, 0.15);
	color: var(--gold-light);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-gold);
}

.eyewear-hero-art {
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-spec-tag {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(6, 10, 20, 0.6);
	padding: 0.9rem 1.1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
}

.spec-title {
	font-family: var(--font-editorial);
	font-size: 1.1rem;
	color: var(--sand-50);
}

.spec-sub {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.spec-price {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--gold);
}

/* Section Common Container */
.section {
	padding: 5rem 0;
	position: relative;
}

@media (min-width: 768px) {
	.section {
		padding: 6.5rem 0;
	}
}

.section-darker {
	background: var(--navy-950);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3.5rem;
	align-items: center;
}

@media (min-width: 960px) {
	.about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.about-story {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.about-lead {
	font-size: 1.2rem;
	line-height: 1.65;
	color: var(--sand-100);
	font-family: var(--font-editorial);
}

.pillars-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 1rem;
}

@media (min-width: 640px) {
	.pillars-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.pillar-card {
	background: var(--card-bg);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	transition: all var(--transition-fast);
}

.pillar-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-3px);
	background: var(--card-hover);
}

.pillar-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(200, 163, 101, 0.12);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.pillar-title {
	font-family: var(--font-editorial);
	font-size: 1.15rem;
	color: var(--sand-50);
	margin-bottom: 0.5rem;
}

.pillar-desc {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

/* Services & Pricing Section */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.service-card {
	background: var(--card-bg-solid);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all var(--transition-smooth);
}

.service-card:hover {
	border-color: var(--gold);
	transform: translateY(-5px);
	box-shadow: var(--shadow-gold);
}

.service-card.featured {
	border-color: var(--border-gold);
	background: linear-gradient(180deg, rgba(26, 44, 82, 0.9) 0%, rgba(16, 27, 51, 0.95) 100%);
}

.service-badge {
	position: absolute;
	top: -12px;
	right: 1.5rem;
	background: var(--gold);
	color: var(--navy-950);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
}

.service-header {
	margin-bottom: 1.5rem;
}

.service-duration {
	font-size: 0.75rem;
	color: var(--gold-light);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}

.service-name {
	font-family: var(--font-editorial);
	font-size: 1.35rem;
	line-height: 1.25;
	color: var(--sand-50);
	margin-bottom: 0.75rem;
}

.service-price {
	font-family: var(--font-sans);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--sand-50);
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
}

.service-price span.term {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--text-muted);
}

.service-features {
	list-style: none;
	margin: 1.5rem 0 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-feature-item {
	font-size: 0.85rem;
	color: var(--text-secondary);
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

.service-feature-item svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
	color: var(--gold);
}

/* Frame Gallery Section */
.gallery-controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
}

.filter-pill {
	background: rgba(16, 27, 51, 0.6);
	border: 1px solid var(--border-subtle);
	color: var(--text-secondary);
	padding: 0.5rem 1.15rem;
	font-size: 0.825rem;
	font-weight: 500;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.filter-pill:hover {
	border-color: var(--sand-300);
	color: var(--sand-50);
}

.filter-pill.active {
	background: var(--sand-100);
	color: var(--navy-950);
	border-color: var(--sand-100);
	font-weight: 600;
}

.frames-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

@media (min-width: 640px) {
	.frames-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.frames-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.frame-card {
	background: var(--card-bg-solid);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition-smooth);
	display: flex;
	flex-direction: column;
}

.frame-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-6px);
	box-shadow: var(--shadow-elevation);
}

.frame-preview {
	height: 210px;
	background: linear-gradient(180deg, #091122 0%, #101b33 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 1.5rem;
}

.frame-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
	background: rgba(6, 10, 20, 0.7);
	color: var(--sand-300);
	border: 1px solid var(--border-subtle);
}

.frame-origin {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.68rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.frame-info {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.frame-meta {
	margin-bottom: 1.25rem;
}

.frame-collection {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gold);
	margin-bottom: 0.25rem;
}

.frame-title {
	font-family: var(--font-editorial);
	font-size: 1.3rem;
	color: var(--sand-50);
	margin-bottom: 0.4rem;
}

.frame-specs-text {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.frame-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid var(--border-subtle);
}

.frame-price {
	font-family: var(--font-sans);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--sand-50);
}

/* Modal Frame Preview */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(4, 7, 15, 0.85);
	backdrop-filter: blur(8px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: modal-fade 0.2s ease-out;
}

@keyframes modal-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-dialog {
	background: var(--navy-900);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	max-width: 640px;
	width: 100%;
	padding: 2rem;
	box-shadow: var(--shadow-elevation);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--text-secondary);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
}

.modal-close:hover {
	color: var(--sand-50);
}

/* Testimonials Section */
.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background: var(--card-bg-solid);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.stars {
	color: var(--gold);
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1.25rem;
}

.quote-text {
	font-family: var(--font-editorial);
	font-style: italic;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--sand-100);
	margin-bottom: 1.5rem;
}

.client-profile {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.25rem;
}

.client-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(200, 163, 101, 0.15);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-editorial);
	font-size: 1rem;
	color: var(--gold);
	font-weight: 600;
}

.client-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--sand-50);
}

.client-title {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: var(--card-bg-solid);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color var(--transition-fast);
}

.faq-item.open {
	border-color: var(--border-gold);
}

.faq-question-btn {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 1.35rem 1.5rem;
	font-family: var(--font-editorial);
	font-size: 1.15rem;
	color: var(--sand-50);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.faq-toggle-icon {
	color: var(--gold);
	font-size: 1.25rem;
	transition: transform var(--transition-fast);
	flex-shrink: 0;
}

.faq-item.open .faq-toggle-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	border-top: 1px solid rgba(214, 197, 175, 0.08);
	margin-top: 0.25rem;
	padding-top: 1rem;
}

/* Location & Hours Section */
.location-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 960px) {
	.location-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3.5rem;
	}
}

.info-cards-stack {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.info-box {
	background: var(--card-bg-solid);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
}

.info-box-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.info-box-icon {
	color: var(--gold);
	font-size: 1.2rem;
}

.info-box-title {
	font-family: var(--font-editorial);
	font-size: 1.2rem;
	color: var(--sand-50);
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	border-bottom: 1px dashed rgba(214, 197, 175, 0.15);
	padding-bottom: 0.4rem;
}

.hours-row.today {
	color: var(--gold-light);
	font-weight: 600;
}

/* Map Representation Placeholder (Lisbon Príncipe Real) */
.map-placeholder-card {
	background: #0b1220;
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	min-height: 380px;
	display: flex;
	flex-direction: column;
}

.map-svg-canvas {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: #080f1e;
}

.map-overlay-badge {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	right: 1.25rem;
	background: rgba(12, 20, 39, 0.92);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

/* Booking Appointment Section */
.booking-container {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(180deg, rgba(16, 27, 51, 0.9) 0%, rgba(10, 18, 36, 0.98) 100%);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	padding: 2.5rem 1.5rem;
	box-shadow: var(--shadow-elevation);
}

@media (min-width: 768px) {
	.booking-container {
		padding: 3.5rem 3rem;
	}
}

.booking-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.form-grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--sand-300);
}

.form-input, .form-select, .form-textarea {
	background: rgba(6, 10, 20, 0.6);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-sm);
	padding: 0.85rem 1rem;
	color: var(--sand-50);
	font-family: var(--font-sans);
	font-size: 0.95rem;
	transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(200, 163, 101, 0.15);
	background: rgba(6, 10, 20, 0.85);
}

.form-textarea {
	min-height: 110px;
	resize: vertical;
}

.form-select option {
	background: var(--navy-900);
	color: var(--sand-50);
}

.booking-success-card {
	background: rgba(200, 163, 101, 0.1);
	border: 1px solid var(--gold);
	border-radius: var(--radius-md);
	padding: 2.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.success-icon-badge {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy-950);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}

.ticket-box {
	background: var(--navy-900);
	border: 1px dashed var(--border-gold);
	border-radius: var(--radius-sm);
	padding: 1.25rem 2rem;
	margin: 1rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.ticket-ref {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--gold);
	letter-spacing: 0.1em;
}

/* Footer */
.footer {
	background: #04070f;
	border-top: 1px solid var(--border-subtle);
	padding: 4.5rem 0 2rem 0;
	color: var(--text-muted);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}
}

.footer-brand-bio {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-top: 1rem;
	max-width: 320px;
}

.footer-title {
	font-family: var(--font-editorial);
	font-size: 1.1rem;
	color: var(--sand-50);
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color var(--transition-fast);
}

.footer-link:hover {
	color: var(--gold);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(214, 197, 175, 0.1);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8rem;
}

@media (min-width: 640px) {
	.footer-bottom {
		flex-direction: row;
	}
}

/* SVG Frame Illustrations for high visual luxury appeal */
.eyewear-svg {
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
	transition: transform var(--transition-smooth);
}

.frame-card:hover .eyewear-svg {
	transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
	background: var(--navy-700);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--sand-500);
}
