/* ========================================
   Google Fonts - Refined Golf Typography
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ========================================
   CSS Variables - Premium Golf Palette
   ======================================== */

:root {
	--navy: #1B2A4A;
	--navy-deep: #0F1D35;
	--navy-mid: #2C4266;
	--gold: #C4A35A;
	--gold-light: #D4B977;
	--gold-dark: #A8893F;
	--gold-muted: rgba(196, 163, 90, 0.15);
	--cream: #F9F7F4;
	--cream-dark: #F0EDE8;
	--stone: #E8E6E1;
	--stone-dark: #D1CEC7;
	--warm-gray: #7A7568;
	--text: #2C2C2C;
	--text-light: #FFFFFF;
	--text-muted: #6B6B6B;
	--white: #FFFFFF;
	--shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06), 0 1px 2px rgba(27, 42, 74, 0.04);
	--shadow-md: 0 4px 12px rgba(27, 42, 74, 0.08);
	--shadow-lg: 0 8px 24px rgba(27, 42, 74, 0.1);
	--shadow-xl: 0 16px 40px rgba(27, 42, 74, 0.12);
	--transition: all 0.25s ease;
	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-lg: 8px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--text);
	background-color: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* ========================================
   Typography - Refined Elegance
   ======================================== */

h1, h2, h3, h4, h5, h6 {
	margin-block-start: 0;
	margin-block-end: 1rem;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-weight: 600;
	line-height: 1.2;
	color: inherit;
	letter-spacing: -0.01em;
}

h1 {
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h4 {
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 600;
	line-height: 1.3;
}

h5 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

h6 {
	font-size: 16px;
	font-weight: 500;
}

p {
	margin-block-start: 0;
	margin-block-end: 1.5em;
	font-size: 17px;
	line-height: 1.75;
}

a {
	color: var(--gold-dark);
	text-decoration: none;
	transition: var(--transition);
	font-weight: 500;
}

a:hover,
a:focus {
	color: var(--navy);
	text-decoration: underline;
}

img {
	border-style: none;
	height: auto;
	max-width: 100%;
	display: block;
	border-radius: var(--radius-sm);
}

/* ========================================
   Utility Classes
   ======================================== */

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--navy);
	color: var(--white);
	padding: 8px 16px;
	text-decoration: none;
	z-index: 100;
	font-size: 14px;
}

.skip-link:focus {
	top: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ========================================
   Header - Refined Club Style
   ======================================== */

.header {
	background-color: var(--white);
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 0 rgba(27, 42, 74, 0.08);
	border-bottom: 1px solid var(--stone);
}

.header__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.header__logo img {
	height: auto;
	max-height: 80px;
	width: auto;
	transition: var(--transition);
}

.header__logo:hover img {
	opacity: 0.85;
}

.header__nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.header__menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	margin-left: auto;
}

.header__menu-icon {
	width: 24px;
	height: 2px;
	background-color: var(--navy);
	position: relative;
	transition: var(--transition);
}

.header__menu-icon::before,
.header__menu-icon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: var(--navy);
	transition: var(--transition);
}

.header__menu-icon::before {
	top: -8px;
}

.header__menu-icon::after {
	bottom: -8px;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon {
	background-color: transparent;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
}

.header__menu-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.header__menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 36px;
	align-items: center;
}

.header__link {
	color: var(--navy);
	font-weight: 500;
	font-size: 14px;
	padding: 8px 0;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: var(--transition);
}

.header__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--gold);
	transition: width 0.3s ease;
}

.header__link:hover::after,
.header__link:focus::after {
	width: 100%;
}

.header__link:hover {
	color: var(--gold-dark);
	text-decoration: none;
}

.header__cta {
	display: flex;
	align-items: center;
}

/* ========================================
   Buttons - Understated Premium
   ======================================== */

.btn {
	display: inline-block;
	padding: 14px 36px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: var(--radius-sm);
	transition: var(--transition);
	cursor: pointer;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	position: relative;
	overflow: hidden;
}

.btn--primary {
	background-color: var(--navy);
	color: var(--gold-light);
	border: 1px solid var(--navy);
}

.btn--primary:hover,
.btn--primary:focus {
	background-color: var(--gold);
	color: var(--navy-deep);
	border-color: var(--gold);
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

/* Primary buttons on dark backgrounds — invert to gold */
.section--about .btn--primary,
.section--player .btn--primary,
.section--testimonials .btn--primary,
.section--location .btn--primary,
.section--cta .btn--primary,
.page-hero .btn--primary {
	background-color: var(--gold);
	color: var(--navy-deep);
	border-color: var(--gold);
}

.section--about .btn--primary:hover,
.section--about .btn--primary:focus,
.section--player .btn--primary:hover,
.section--player .btn--primary:focus,
.section--testimonials .btn--primary:hover,
.section--testimonials .btn--primary:focus,
.section--location .btn--primary:hover,
.section--location .btn--primary:focus,
.section--cta .btn--primary:hover,
.section--cta .btn--primary:focus,
.page-hero .btn--primary:hover,
.page-hero .btn--primary:focus {
	background-color: var(--white);
	color: var(--navy-deep);
	border-color: var(--white);
}

.btn--paypal {
	background-color: var(--navy);
	color: var(--gold-light);
	border: 1px solid var(--navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
}

.btn--paypal:hover,
.btn--paypal:focus {
	background-color: var(--gold);
	color: var(--navy-deep);
	border-color: var(--gold);
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.btn__text {
	flex: 1;
	text-align: center;
}

/* ========================================
   Banner - Scrolling Promotional
   ======================================== */

.banner {
	background-color: var(--navy);
	padding: 16px 0;
	overflow: hidden;
	position: relative;
	width: 100%;
	min-height: 50px;
	display: block;
	border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.banner__scroll-wrapper {
	width: 100%;
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
}

.banner__scroll-content {
	display: inline-flex;
	white-space: nowrap;
	animation: scroll-banner 30s linear infinite;
	will-change: transform;
}

.banner:hover .banner__scroll-content {
	animation-play-state: paused;
}

.banner__title {
	font-size: 15px;
	font-weight: 500;
	color: var(--gold-light);
	margin: 0;
	padding: 0 80px;
	flex-shrink: 0;
	display: inline-block;
	letter-spacing: 0.04em;
}

@keyframes scroll-banner {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-100% / 3));
	}
}

/* ========================================
   Sections - Generous Spacing
   ======================================== */

.section {
	padding: 100px 0;
	position: relative;
}

.section--about {
	background-color: var(--navy);
	color: var(--text-light);
}

.section--instructor {
	background-color: var(--white);
	color: var(--text);
}

.instructor-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 48px;
}

.instructor-grid__text {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.instructor-grid__image {
	position: relative;
	height: 420px;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.instructor-grid__image img {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
	object-fit: cover;
	object-position: center 25%;
}

.instructor-grid__image:hover img {
	transform: scale(1.02);
}

.section--player {
	background-color: var(--navy);
	color: var(--text-light);
}

.section--pricing {
	background-color: var(--cream);
	color: var(--text);
}

.section--testimonials {
	background-color: var(--navy);
	color: var(--text-light);
}

.section--location {
	background-color: var(--navy-deep);
	color: var(--text-light);
}

.section--contact {
	background-color: var(--white);
	color: var(--text);
}

.section--cta {
	background-color: var(--navy);
	color: var(--text-light);
}

.section__content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

.section__name {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-family: 'Inter', sans-serif;
}

.section__heading {
	margin-bottom: 28px;
	color: inherit;
}

.section__subtitle {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-family: 'Inter', sans-serif;
}

.divider {
	width: 60px;
	height: 2px;
	background-color: var(--gold);
	margin: 32px 0;
}

.section__text {
	margin-bottom: 40px;
	font-size: 17px;
	line-height: 1.8;
}

.section__text p {
	margin-bottom: 1.5em;
}

.section__text strong {
	font-weight: 600;
	color: inherit;
}

.section__cta {
	margin-top: 48px;
}

/* ========================================
   Hero Section Layout
   ======================================== */

.section__hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.section__hero-text {
	display: flex;
	flex-direction: column;
}

.section__hero-image {
	position: relative;
}

.section__hero-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	transition: var(--transition);
}

.section__hero-image:hover img {
	transform: scale(1.01);
}

@media (max-width: 968px) {
	.section__hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.section__hero-image {
		order: -1;
	}
}

/* ========================================
   Lessons Areas - Refined Card
   ======================================== */

.lessons-areas {
	margin: 40px 0;
	padding: 32px;
	background-color: var(--cream);
	border-radius: var(--radius-lg);
	border-left: 3px solid var(--gold);
}

.lessons-areas__heading {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--navy);
	font-family: 'Playfair Display', serif;
}

.lessons-areas__text {
	font-size: 17px;
	margin-bottom: 20px;
	color: var(--text);
	line-height: 1.7;
}

.lessons-areas__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lessons-areas__list li {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	color: var(--text);
}

.lessons-areas__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 6px;
	height: 6px;
	background-color: var(--gold);
	border-radius: 50%;
}

.lessons-areas__list li strong {
	color: var(--navy);
	font-weight: 600;
}

/* ========================================
   Pricing - Elegant Packages
   ======================================== */

.pricing-banner {
	background-color: var(--navy);
	padding: 20px;
	margin: 48px 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	width: 100%;
	min-height: 60px;
	display: block;
	border: 1px solid rgba(196, 163, 90, 0.2);
}

.pricing-banner__scroll-wrapper {
	width: 100%;
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
}

.pricing-banner__scroll-content {
	display: inline-flex;
	white-space: nowrap;
	animation: scroll-pricing-banner 30s linear infinite;
	will-change: transform;
}

.pricing-banner:hover .pricing-banner__scroll-content {
	animation-play-state: paused;
}

.pricing-banner__title {
	font-size: 15px;
	font-weight: 500;
	color: var(--gold-light);
	margin: 0;
	padding: 0 80px;
	flex-shrink: 0;
	display: inline-block;
	letter-spacing: 0.04em;
}

@keyframes scroll-pricing-banner {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-100% / 3));
	}
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
	align-items: stretch;
}

.pricing-card {
	background-color: var(--white);
	padding: 44px 32px;
	border-radius: var(--radius-lg);
	text-align: center;
	border: 1px solid var(--stone);
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: var(--stone);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--gold);
}

.pricing-card:hover::before {
	background-color: var(--gold);
}

/* Popular card styling */
.pricing-card--popular {
	border: 1px solid var(--gold);
	box-shadow: var(--shadow-md);
	transform: scale(1.04);
	z-index: 1;
	padding-top: 56px;
}

.pricing-card--popular::before {
	height: 3px;
	background-color: var(--gold);
}

.pricing-card--popular:hover {
	transform: scale(1.04) translateY(-3px);
	box-shadow: var(--shadow-xl);
	border-color: var(--gold);
}

.pricing-card__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--gold);
	color: var(--navy-deep);
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.pricing-card__title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--navy);
	font-family: 'Playfair Display', serif;
	line-height: 1.3;
}

.pricing-card__description {
	margin-bottom: 28px;
	color: var(--warm-gray);
	font-size: 15px;
	line-height: 1.6;
	min-height: 48px;
}

.pricing-card__price {
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 32px;
	color: var(--navy);
	font-family: 'Playfair Display', serif;
	position: relative;
	display: block;
	line-height: 1;
}

.pricing-card__price::before {
	content: '\00A3';
	font-size: 30px;
	vertical-align: top;
	margin-right: 2px;
	opacity: 0.7;
}

/* ========================================
   Testimonials - Elegant Reviews
   ======================================== */

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.testimonial {
	background-color: var(--white);
	padding: 40px 36px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--stone);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	position: relative;
}

.testimonial::before {
	content: '\201C';
	position: absolute;
	top: 24px;
	left: 28px;
	font-size: 64px;
	font-family: 'Playfair Display', serif;
	color: var(--gold);
	opacity: 0.25;
	line-height: 1;
}

.testimonial:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--gold);
}

.testimonial__content {
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

.testimonial__text {
	color: var(--text);
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.75;
	font-style: italic;
}

.rating {
	color: var(--gold);
	font-size: 18px;
	letter-spacing: 3px;
	margin: 16px 0;
}

.rating__star {
	display: inline-block;
}

.testimonial__author {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--navy);
	font-family: 'Playfair Display', serif;
}

.testimonial__company {
	font-size: 14px;
	color: var(--warm-gray);
	margin: 0;
	font-weight: 400;
}

/* ========================================
   Location / Map - Course Location
   ======================================== */

.map-container {
	width: 100%;
	margin: 48px 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
}

.map-container::before {
	display: none;
}

.map-container iframe {
	display: block;
	width: 100%;
	height: 480px;
	border: none;
	position: relative;
	z-index: 0;
}

.location-details {
	margin-top: 40px;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(196, 163, 90, 0.15);
}

.location-details h3 {
	color: var(--text-light);
	margin-bottom: 24px;
	font-family: 'Playfair Display', serif;
	font-size: 26px;
}

.location-details p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.5em;
	font-size: 16px;
	line-height: 1.7;
}

.location-details strong {
	color: var(--gold-light);
	font-weight: 600;
}

/* ========================================
   Contact - Professional Contact
   ======================================== */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 56px;
	align-items: start;
}

.contact__info {
	padding: 32px 0;
}

.contact__details {
	color: var(--text);
	font-size: 16px;
	line-height: 1.8;
}

.contact__details p {
	margin-bottom: 1.5em;
}

.contact__details a {
	color: var(--navy);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-underline-offset: 3px;
	font-weight: 500;
	transition: var(--transition);
}

.contact__details a:hover {
	color: var(--gold-dark);
	text-decoration-color: var(--gold-dark);
}

.contact__images {
	display: grid;
	gap: 24px;
}

.contact__image-card {
	background-color: var(--white);
	padding: 0;
	border-radius: var(--radius-lg);
	border: 1px solid var(--stone);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	overflow: hidden;
	position: relative;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 0;
	align-items: stretch;
}

.contact__image-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--gold);
}

.contact__image-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--gold);
}

.contact__image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	margin: 0;
	box-shadow: none;
	transition: var(--transition);
	display: block;
}

.contact__image-card:hover img {
	transform: scale(1.03);
}

.contact__image-card-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact__image-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--navy);
	font-family: 'Playfair Display', serif;
}

.contact__image-card p {
	color: var(--text);
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
}

/* ========================================
   Footer - Sophisticated & Understated
   ======================================== */

.footer {
	background-color: var(--navy-deep);
	color: rgba(255, 255, 255, 0.8);
	padding: 72px 0 32px;
	position: relative;
}

.footer__content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 48px;
	margin-bottom: 48px;
}

.footer__logo img {
	max-height: 100px;
	width: auto;
	opacity: 0.9;
	transition: var(--transition);
	filter: brightness(1.5);
}

.footer__logo:hover img {
	opacity: 1;
}

.footer__heading {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-family: 'Inter', sans-serif;
}

.footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__menu li {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 15px;
}

.footer__menu a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
	font-weight: 400;
	font-size: 15px;
}

.footer__menu a:hover {
	color: var(--gold-light);
	padding-left: 3px;
	text-decoration: none;
}

.footer__bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer__credit {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

.footer__credit a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: var(--transition);
}

.footer__credit a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.footer__copyright {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
	.section {
		padding: 72px 0;
	}

	.header__logo img {
		max-height: 64px;
	}

	.instructor-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.instructor-grid__image {
		order: -1;
		height: 350px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.map-container iframe {
		height: 400px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 15px;
	}

	.section {
		padding: 56px 0;
	}

	.header__logo img {
		max-height: 60px;
	}

	.instructor-grid__image {
		height: 300px;
	}

	.header__container {
		flex-wrap: wrap;
	}

	.header__menu-toggle {
		display: flex;
		order: 2;
		margin-left: auto;
	}

	.header__menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--white);
		flex-direction: column;
		padding: 16px 24px;
		box-shadow: var(--shadow-lg);
		gap: 0;
		width: 100%;
		z-index: 1000;
		border-top: 1px solid var(--stone);
	}

	.header__menu[aria-hidden="false"] {
		display: flex;
	}

	.header__menu li {
		width: 100%;
		border-bottom: 1px solid var(--stone);
	}

	.header__link {
		display: block;
		padding: 16px 0;
		width: 100%;
	}

	.header__cta {
		display: none;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pricing-card--popular {
		transform: scale(1);
		order: -1;
		padding-top: 56px;
	}

	.pricing-card--popular:hover {
		transform: translateY(-3px);
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lessons-areas {
		padding: 24px;
		margin: 28px 0;
	}

	.lessons-areas__heading {
		font-size: 22px;
	}

	.footer__content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 36px;
		justify-items: center;
	}

	.footer__logo {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.footer__logo img {
		display: block;
		margin: 0 auto;
	}

	.footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.map-container iframe {
		height: 320px;
	}

	.location-details {
		padding: 24px;
	}

	.banner__title,
	.pricing-banner__title {
		padding: 0 40px;
	}

	.contact__image-card {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.contact__image-card img {
		height: auto;
		object-fit: contain;
		max-height: 360px;
	}

	.faq-list {
		gap: 10px;
	}

	.faq-item__question {
		font-size: 18px;
		padding: 18px 20px;
	}

	.faq-item__answer {
		padding: 0 20px 18px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   FAQ Section - Clean Accordion
   ======================================== */

.section--faq {
	background-color: var(--cream);
	color: var(--text);
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 40px;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	background-color: var(--white);
	border: 1px solid var(--stone);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item[open] {
	border-color: var(--gold);
	box-shadow: var(--shadow-sm);
}

.faq-item__question {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--navy);
	padding: 22px 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	gap: 16px;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question::after {
	content: '+';
	font-size: 24px;
	font-weight: 300;
	color: var(--gold);
	transition: var(--transition);
	flex-shrink: 0;
	font-family: 'Inter', sans-serif;
}

.faq-item[open] .faq-item__question::after {
	content: '\2212';
}

.faq-item__answer {
	padding: 0 28px 24px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text);
}

.faq-item__answer p {
	margin-bottom: 1em;
}

.faq-item__answer p:last-child {
	margin-bottom: 0;
}

.faq-item__answer a {
	color: var(--navy);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-underline-offset: 3px;
	font-weight: 500;
}

.faq-item__answer a:hover {
	color: var(--gold-dark);
}

/* ========================================
   Interior Page Styles
   ======================================== */

.page-hero {
	background-color: var(--navy);
	color: var(--text-light);
	padding: 100px 0 64px;
	text-align: center;
}

.page-hero__title {
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 700;
	margin-bottom: 12px;
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.02em;
}

.page-hero__subtitle {
	font-size: 13px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
}

.page-content {
	padding: 72px 0;
}

.page-content--alt {
	background-color: var(--cream);
}

.page-content h2 {
	color: var(--navy);
	margin-bottom: 24px;
}

.page-content h3 {
	color: var(--navy);
	margin-bottom: 16px;
}

.page-content p {
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 1.5em;
}

.page-content ul {
	padding-left: 24px;
	margin-bottom: 1.5em;
}

.page-content ul li {
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 8px;
}

.content-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 64px;
	align-items: start;
}

.content-sidebar {
	background-color: var(--navy);
	color: var(--text-light);
	padding: 36px;
	border-radius: var(--radius-lg);
	position: sticky;
	top: 120px;
}

.content-sidebar h3 {
	color: var(--gold);
	font-size: 22px;
	margin-bottom: 20px;
	font-family: 'Playfair Display', serif;
}

.content-sidebar p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 0.8em;
}

.content-sidebar strong {
	color: var(--gold-light);
}

.content-sidebar .btn {
	width: 100%;
	text-align: center;
	margin-top: 24px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	margin-top: 40px;
}

.blog-card {
	background-color: var(--white);
	border: 1px solid var(--stone);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
}

.blog-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--gold);
}

.blog-card__content {
	padding: 32px;
}

.blog-card__date {
	font-size: 12px;
	color: var(--warm-gray);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	font-weight: 500;
}

.blog-card__title {
	font-size: 22px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 16px;
	font-family: 'Playfair Display', serif;
}

.blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.blog-card__title a:hover {
	color: var(--gold-dark);
	text-decoration: none;
}

.blog-card__excerpt {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text);
	margin-bottom: 16px;
}

.blog-card__link {
	color: var(--gold-dark);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.blog-card__link:hover {
	color: var(--navy);
}

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

	.content-sidebar {
		position: static;
	}
}
