/* ==========================================================================
   Terramar — Restaurante de Mariscos y Cortes · Zapopan, Jalisco
   Brand: navy #16263f · gold #e8a43c · white · light-blue diamond pattern
   ========================================================================== */

/* ---------- Self-hosted fonts (no render-blocking 3rd-party request) ---------- */
@font-face {
	font-family: 'Anton';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../assets/fonts/anton-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../assets/fonts/poppins-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../assets/fonts/poppins-400-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../assets/fonts/poppins-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../assets/fonts/poppins-700.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
	--navy: #16263f;
	--navy-800: #1d3352;
	--navy-900: #0f1c30;
	--gold: #e8a43c;
	--gold-light: #f2be6a;
	--gold-dark: #c9862a;
	--cream: #f7f3ea;
	--paper: #fbfaf6;
	--ink: #16263f;
	--muted: #5b6b80;
	--line: #e4e7ec;
	--white: #ffffff;

	--sky: #dbe7f2;

	--shadow-sm: 0 2px 8px rgba(15, 28, 48, 0.08);
	--shadow-md: 0 12px 30px rgba(15, 28, 48, 0.12);
	--shadow-lg: 0 24px 60px rgba(15, 28, 48, 0.22);

	--radius: 14px;
	--radius-lg: 22px;
	--maxw: 1180px;
	--gutter: clamp(1.25rem, 4vw, 3rem);

	--font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
	--font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);

	/* light-blue diamond pattern echoing the printed menu */
	--pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 0l20 20-20 20L0 20z' fill='none' stroke='%23dbe7f2' stroke-width='1'/%3E%3C/svg%3E");
	--pattern-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 0l20 20-20 20L0 20z' fill='none' stroke='%23223a5c' stroke-width='1'/%3E%3C/svg%3E");
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 84px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.65;
	font-size: 1rem;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.4em;
	line-height: 1.1;
	font-weight: 700;
}

p {
	margin: 0 0 1rem;
}

:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--gold);
	color: var(--navy);
	padding: 0.75rem 1.25rem;
	font-weight: 600;
	z-index: 200;
}
.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section {
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--tint {
	background: var(--cream);
	background-image: var(--pattern);
}

.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(2rem, 5vw, 3.25rem);
}

.kicker {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: var(--gold-dark);
	margin-bottom: 0.85rem;
}

.section-title {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: clamp(2rem, 5vw, 3.25rem);
	color: var(--navy);
}

.section-title span {
	color: var(--gold);
}

.section-sub {
	color: var(--muted);
	font-size: 1.05rem;
	margin-top: 0.5rem;
}

.rule {
	width: 72px;
	height: 4px;
	border: 0;
	margin: 1.1rem auto 0;
	background: var(--gold);
	border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.98rem;
	letter-spacing: 0.02em;
	padding: 0.85rem 1.6rem;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
		background 0.25s var(--ease), color 0.25s var(--ease);
	will-change: transform;
}

.btn svg {
	width: 1.1em;
	height: 1.1em;
}

.btn--gold {
	background: var(--gold);
	color: var(--navy);
	box-shadow: 0 10px 24px rgba(232, 164, 60, 0.35);
}
.btn--gold:hover {
	background: var(--gold-light);
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(232, 164, 60, 0.45);
}

.btn--outline {
	border-color: currentColor;
	color: var(--white);
}
.btn--outline:hover {
	background: var(--white);
	color: var(--navy);
	transform: translateY(-3px);
}

.btn--navy {
	background: var(--navy);
	color: var(--white);
}
.btn--navy:hover {
	background: var(--navy-800);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.btn--rappi {
	background: #ff441f;
	color: var(--white);
	box-shadow: 0 10px 24px rgba(255, 68, 31, 0.35);
}
.btn--rappi:hover {
	background: #ff5c3c;
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(255, 68, 31, 0.45);
}

/* ---------- Header / nav ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	background: rgba(22, 38, 63, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-shrunk {
	background: rgba(15, 28, 48, 0.98);
	box-shadow: var(--shadow-md);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 72px;
	transition: height 0.3s var(--ease);
}

.site-header.is-shrunk .nav {
	height: 62px;
}

/* Brand wordmark (typography-based logo) */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	line-height: 1;
}

.brand__mark {
	width: auto;
	height: 40px;
	flex: none;
}
.site-header.is-shrunk .brand__mark {
	height: 34px;
	transition: height 0.3s var(--ease);
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 0.95;
}

.brand__name {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	color: var(--white);
	text-transform: uppercase;
}
.brand__name b {
	color: var(--gold);
	font-weight: inherit;
}

.brand__tag {
	font-size: 0.6rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-light);
	font-weight: 600;
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-left: auto;
}

.nav__link {
	position: relative;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.4rem 0;
	transition: color 0.2s var(--ease);
}

.nav__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
	color: var(--white);
}
.nav__link:hover::after,
.nav__link.is-active::after {
	transform: scaleX(1);
}

.nav__cta {
	margin-left: 0.4rem;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
}

.nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.nav__toggle span {
	display: block;
	width: 26px;
	height: 2.5px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
	margin-inline: auto;
}
.nav__toggle[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}
.nav__toggle[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	place-items: center;
	text-align: center;
	color: var(--white);
	background: radial-gradient(120% 120% at 50% 0%, var(--navy-800), var(--navy-900) 70%);
	padding: 96px var(--gutter) 64px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--pattern-navy);
	opacity: 0.5;
	mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 80%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.hero__kicker {
	letter-spacing: 0.5em;
	text-transform: uppercase;
	font-size: clamp(0.7rem, 2vw, 0.95rem);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	padding-left: 0.5em;
}

.hero__logo-wrap {
	margin: 0.8rem 0 1.4rem;
}
.hero__logo {
	display: block;
	width: min(440px, 82vw);
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.4));
}

.hero__slogan {
	font-style: italic;
	font-size: clamp(1rem, 2.6vw, 1.35rem);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.8rem;
}

.hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero__scroll {
	position: absolute;
	bottom: 1.6rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	display: grid;
	justify-items: center;
	gap: 0.4rem;
}
.hero__scroll span {
	width: 22px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	position: relative;
}
.hero__scroll span::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 6px;
	background: var(--gold);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: scrollDot 1.8s var(--ease) infinite;
	will-change: transform, opacity;
}
@keyframes scrollDot {
	0% { opacity: 0; transform: translate(-50%, 0); }
	40% { opacity: 1; }
	80% { opacity: 0; transform: translate(-50%, 12px); }
	100% { opacity: 0; }
}

/* ---------- About ---------- */
.about__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 6vw, 4.5rem);
	align-items: center;
}

.about__body p {
	color: var(--muted);
	font-size: 1.08rem;
}
.about__body .lead {
	font-size: 1.28rem;
	color: var(--navy);
	font-weight: 500;
}

.about__features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.4rem;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--navy);
	box-shadow: var(--shadow-sm);
}
.chip svg {
	width: 1.05em;
	height: 1.05em;
	color: var(--gold-dark);
}

.about__card {
	position: relative;
	background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
	color: var(--white);
	border-radius: var(--radius-lg);
	padding: clamp(2rem, 5vw, 3rem);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.about__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--pattern-navy);
	opacity: 0.5;
}
.about__card > * {
	position: relative;
}
.about__emblem {
	width: 150px;
	height: auto;
	margin-bottom: 1.2rem;
}
.about__card h3 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 1.7rem;
	color: var(--gold);
}
.about__card p {
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 0;
}

/* ---------- Specialties ---------- */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 1.4rem;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
		border-color 0.35s var(--ease);
}
.card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	border-color: var(--gold-light);
}

.card__icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--cream);
	color: var(--gold-dark);
	margin-bottom: 1.1rem;
	transition: background 0.35s var(--ease), color 0.35s var(--ease),
		transform 0.35s var(--ease);
}
.card:hover .card__icon {
	background: var(--gold);
	color: var(--navy);
	transform: rotate(-6deg) scale(1.05);
}
.card__icon svg {
	width: 30px;
	height: 30px;
}

.card h3 {
	font-size: 1.25rem;
	color: var(--navy);
}
.card p {
	color: var(--muted);
	font-size: 0.98rem;
	margin: 0;
}

/* ---------- Location & hours ---------- */
.location__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 5vw, 3rem);
	align-items: stretch;
}

.info-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	box-shadow: var(--shadow-sm);
}

.info-card h3 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 1.5rem;
	color: var(--navy);
	margin-bottom: 1.2rem;
}

.hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0;
	border-bottom: 1px dashed var(--line);
	font-size: 0.98rem;
}
.hours-list li:last-child {
	border-bottom: 0;
}
.hours-list .day {
	font-weight: 500;
	color: var(--navy);
}
.hours-list .time {
	color: var(--muted);
}
.hours-list li.is-today {
	color: var(--gold-dark);
}
.hours-list li.is-today .day,
.hours-list li.is-today .time {
	color: var(--gold-dark);
	font-weight: 600;
}
.hours-list .closed {
	color: #b23b3b;
}

.contact-list {
	display: grid;
	gap: 1.1rem;
	margin-top: 0.5rem;
}
.contact-list li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
}
.contact-list .ic {
	flex: none;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	background: var(--cream);
	color: var(--gold-dark);
	border-radius: 12px;
}
.contact-list .ic svg {
	width: 20px;
	height: 20px;
}
.contact-list .lbl {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}
.contact-list .val {
	font-weight: 500;
	color: var(--navy);
}
.contact-list a.val:hover {
	color: var(--gold-dark);
}

.map-embed {
	margin-top: 1.5rem;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	aspect-ratio: 16 / 10;
}
.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.1);
}

/* ---------- CTA band ---------- */
.cta-band {
	position: relative;
	text-align: center;
	color: var(--white);
	background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
	border-radius: var(--radius-lg);
	padding: clamp(2.5rem, 6vw, 4rem);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--pattern-navy);
	opacity: 0.5;
}
.cta-band > * {
	position: relative;
}
.cta-band h2 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: clamp(1.8rem, 5vw, 3rem);
}
.cta-band h2 span {
	color: var(--gold);
}
.cta-band p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 560px;
	margin: 0 auto 1.8rem;
}
.cta-band .hero__actions {
	margin-top: 0;
}

/* ---------- Menu page ---------- */
.page-hero {
	position: relative;
	color: var(--white);
	text-align: center;
	background: radial-gradient(120% 140% at 50% 0%, var(--navy-800), var(--navy-900) 75%);
	padding: clamp(7rem, 14vw, 10rem) var(--gutter) clamp(3rem, 7vw, 5rem);
	overflow: hidden;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--pattern-navy);
	opacity: 0.5;
	mask-image: radial-gradient(110% 90% at 50% 30%, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(110% 90% at 50% 30%, #000 30%, transparent 80%);
}
.page-hero__inner {
	position: relative;
	max-width: 720px;
	margin-inline: auto;
}
.page-hero h1 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: clamp(2.6rem, 9vw, 5rem);
	color: var(--gold);
	margin-bottom: 0.2em;
}
.page-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	margin: 0;
}
.page-hero .crumbs {
	margin-top: 1.4rem;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.page-hero .crumbs a:hover {
	color: var(--gold);
}

.menu-note {
	text-align: center;
	max-width: 640px;
	margin: 2rem auto 0;
	padding: 1rem 1.4rem;
	background: rgba(232, 164, 60, 0.12);
	border: 1px solid rgba(232, 164, 60, 0.35);
	border-radius: 999px;
	color: var(--gold-dark);
	font-weight: 500;
	font-size: 0.95rem;
}

.menu-groups {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
	align-items: start;
}

.menu-cat {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.75rem 1.75rem 1.4rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.menu-cat:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.menu-cat__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-bottom: 0.9rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--gold);
}
.menu-cat__head svg {
	width: 26px;
	height: 26px;
	color: var(--gold-dark);
	flex: none;
}
.menu-cat__head h3 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 1.35rem;
	color: var(--navy);
	margin: 0;
}

.menu-cat ul li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.4rem 0;
	color: var(--navy);
	font-size: 1rem;
	border-bottom: 1px dashed var(--line);
}
.menu-cat ul li:last-child {
	border-bottom: 0;
}
.menu-cat ul li .item {
	display: flex;
	flex-direction: column;
}
.menu-cat ul li small {
	display: block;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 400;
}
.menu-cat ul li .price {
	flex: none;
	color: var(--gold-dark);
	font-weight: 600;
	white-space: nowrap;
}
.menu-cat ul li .price small {
	display: inline;
	color: var(--muted);
	font-weight: 400;
}
.menu-cat__tag {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.8rem;
	color: var(--muted);
	font-style: italic;
}

.menu-feature {
	grid-column: 1 / -1;
	background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
	color: var(--white);
	border-radius: var(--radius);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.menu-feature::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--pattern-navy);
	opacity: 0.5;
}
.menu-feature > * {
	position: relative;
}
.menu-feature h3 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--gold);
	font-size: 1.7rem;
}
.menu-feature p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 60ch;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.7);
	padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
	background-image: var(--pattern-navy);
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .brand__name {
	font-size: 1.7rem;
}
.footer__brand p {
	margin-top: 1rem;
	max-width: 34ch;
	font-size: 0.95rem;
}
.footer h4 {
	color: var(--white);
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}
.footer__links li {
	margin-bottom: 0.6rem;
}
.footer__links a {
	font-size: 0.95rem;
	transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer__links a:hover {
	color: var(--gold);
	padding-left: 4px;
}
.footer address {
	font-style: normal;
	font-size: 0.95rem;
	line-height: 1.8;
}
.footer address a:hover {
	color: var(--gold);
}

.socials {
	display: flex;
	gap: 0.7rem;
	margin-top: 1.3rem;
}
.socials a {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.socials a:hover {
	background: var(--gold);
	color: var(--navy);
	transform: translateY(-4px);
}
.socials svg {
	width: 20px;
	height: 20px;
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
	padding-top: 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a:hover {
	color: var(--gold);
}

/* ---------- Scroll-reveal animation ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}
.reveal[data-delay='1'] { transition-delay: 0.08s; }
.reveal[data-delay='2'] { transition-delay: 0.16s; }
.reveal[data-delay='3'] { transition-delay: 0.24s; }
.reveal[data-delay='4'] { transition-delay: 0.32s; }
.reveal[data-delay='5'] { transition-delay: 0.4s; }

/* Hero load animation */
.hero__inner > * {
	opacity: 0;
	transform: translateY(24px);
	animation: heroUp 0.9s var(--ease) forwards;
}
.hero__inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.22s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.34s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.46s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.58s; }
.hero__inner > *:nth-child(6) { animation-delay: 0.7s; }
@keyframes heroUp {
	to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.about__grid,
	.location__grid {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.nav__toggle {
		display: flex;
	}
	.nav__links {
		position: fixed;
		inset: 72px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--navy-900);
		padding: 1rem var(--gutter) 1.6rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: var(--shadow-lg);
		transform: translateY(-120%);
		transition: transform 0.35s var(--ease);
		max-height: calc(100svh - 72px);
		overflow-y: auto;
	}
	.nav__links.is-open {
		transform: translateY(0);
	}
	.nav__link {
		padding: 0.9rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		font-size: 1.05rem;
	}
	.nav__link::after {
		display: none;
	}
	.nav__cta {
		margin: 1rem 0 0;
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.footer__grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	.hero__inner > * {
		opacity: 1;
		transform: none;
	}
}
