:root {
	--green: #136208;
	--dark: #242424;
	--green-light: #1a7d0a;
	--green-pale: #e8f5e5;
	--green-mid: #d0eacc;
	--cream: #f7f4ef;
	--white: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
	font-family: 'DM Sans', sans-serif;
	background: var(--cream);
	color: var(--dark);
	overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 1000;
	opacity: 0.4;
  }

  /* ── NAVIGATION ── */
  nav {
	position: fixed;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	background: rgba(247, 244, 239, 0.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(19, 98, 8, 0.15);
	border-radius: 50px;
	padding: 12px 32px;
	display: flex;
	align-items: center;
	gap: 40px;
  }

  nav .logo {
	display: flex;
	align-items: center;
  }

  nav .logo svg {
	height: 36px;
	width: auto;
  }

  nav a {
	text-decoration: none;
	text-align: center;
	color: var(--dark);
	font-size: 0.85rem;
	font-weight: 400;
	opacity: 0.7;
	transition: opacity 0.2s;
  }

  nav a:hover { opacity: 1; color: var(--green); }

  nav .nav-cta {
	background: var(--green);
	color: white !important;
	opacity: 1 !important;
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	transition: background 0.2s !important;
  }

  nav .nav-cta:hover { background: var(--green-light) !important; }

  /* ── HERO ── */
  .hero {
	min-height: 100vh;
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
	padding: 120px 24px 80px;
  }



  .hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
  }

  .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--green-pale);
	border: 1px solid rgba(19, 98, 8, 0.2);
	border-radius: 50px;
	padding: 6px 18px;
	font-size: 0.8rem;
	color: var(--green);
	font-weight: 500;
	margin-bottom: 28px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	animation: fadeUp 0.8s ease both;
  }

  .hero-badge::before {
	content: '';
	width: 8px; height: 8px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.6; }
  }

  h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 7vw, 5rem);
	line-height: 1.1;
	color: var(--dark);
	margin-bottom: 24px;
	animation: fadeUp 0.8s 0.1s ease both;
  }

  h1 em {
	color: var(--green);
	font-style: italic;
  }

  .hero-sub {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(36, 36, 36, 0.65);
	max-width: 520px;
	margin: 0 auto 40px;
	font-weight: 300;
	animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
	background: var(--green);
	color: white;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s;
	box-shadow: 0 8px 24px rgba(19, 98, 8, 0.25);
  }

  .btn-primary:hover {
	background: var(--green-light);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(19, 98, 8, 0.35);
  }

  .btn-ghost {
	background: transparent;
	color: var(--dark);
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 400;
	font-size: 0.95rem;
	border: 1.5px solid rgba(36,36,36,0.2);
	transition: all 0.3s;
  }

  .btn-ghost:hover {
	border-color: var(--green);
	color: var(--green);
	transform: translateY(-2px);
  }

  .scroll-hint {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.4;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	animation: fadeUp 1s 0.8s both;
  }

  .scroll-line {
	width: 1px;
	height: 40px;
	background: var(--dark);
	animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
	0% { transform: scaleY(0); transform-origin: top; }
	50% { transform: scaleY(1); transform-origin: top; }
	51% { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
  }

  @keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
  }

  /* ── ABOUT SECTION ── */
  section { padding: 100px 24px; }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--green);
	margin-bottom: 16px;
  }

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

  .about-visual {
	position: relative;
  }

  .circle-frame {
	width: 100%;
	max-width: 420px;
	aspect-ratio: 1;
	border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
	background: var(--green-mid);
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
	animation: morphSlow 20s ease-in-out infinite;
  }

  @keyframes morphSlow {
	0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
	50% { border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%; }
  }

  .circle-inner {
	width: 80%;
	height: 80%;
	border-radius: inherit;
	background: var(--green-pale);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 32px;
	text-align: center;
  }

.stat-callout {
	position: absolute;
	background: white;
	border-radius: 20px;
	padding: 16px 22px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	bottom: 20px;
	right: -20px;
  }

  .stat-callout .num {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: var(--green);
	font-weight: 600;
	line-height: 1;
  }

  .stat-callout .label {
	font-size: 0.75rem;
	color: rgba(36,36,36,0.5);
	margin-top: 2px;
  }

  .stat-callout-2 {
	position: absolute;
	background: var(--green);
	border-radius: 20px;
	padding: 14px 20px;
	box-shadow: 0 8px 30px rgba(19,98,8,0.3);
	top: 20px;
	left: -20px;
	color: white;
  }

  .stat-callout-2 .num {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
  }

  .stat-callout-2 .label {
	font-size: 0.7rem;
	opacity: 0.8;
	margin-top: 2px;
  }

  h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;
	color: var(--dark);
	margin-bottom: 20px;
  }

  h2 em { color: var(--green); font-style: italic; }

  .about-text p {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(36,36,36,0.65);
	font-weight: 300;
	margin-bottom: 16px;
  }

  /* ── QUALIFICATIONS ── */
  .qual-section {
	background: var(--dark);
	border-radius: 40px;
	padding: 80px 60px;
	color: white;
	margin: 0 24px;
  }

  .qual-section .section-label { color: rgba(255,255,255,0.4); }
  .qual-section h2 { color: white; }

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

  .qual-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 24px;
	padding: 28px;
	transition: all 0.3s;
  }

  .qual-card:hover {
	background: rgba(19,98,8,0.3);
	border-color: rgba(19,98,8,0.5);
	transform: translateY(-4px);
  }

  .qual-icon {
	width: 36px; height: 36px;
	margin-bottom: 16px;
	color: var(--green);
  }

  .qual-icon svg, .equip-dot svg, .contact-link-icon svg {
	display: block;
	stroke-width: 1.5;
  }

  .qual-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.15rem;
	color: white;
	margin-bottom: 8px;
	font-weight: 600;
  }

  .qual-card p {
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(255,255,255,0.5);
	font-weight: 300;
  }

  /* ── EQUIPMENT ── */
  .equip-section { background: var(--green-pale); border-radius: 40px; margin: 0 0; }

  .equip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
  }

  .equip-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
  }

  .equip-item {
	background: white;
	border-radius: 20px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: transform 0.2s;
  }

  .equip-item:hover { transform: translateX(6px); }

  .equip-dot {
	width: 40px; height: 40px;
	background: var(--green-pale);
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	color: var(--green);
  }

  .equip-dot svg { width: 20px; height: 20px; stroke-width: 1.5; }

  .equip-item span {
	font-size: 0.9rem;
	color: var(--dark);
	font-weight: 400;
  }

  .extras {
	margin-top: 24px;
	background: var(--green);
	border-radius: 24px;
	padding: 28px;
	color: white;
  }

  .extras h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	margin-bottom: 14px;
	font-weight: 600;
  }

  .extras ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
  }

  .extras ul li {
	font-size: 0.875rem;
	opacity: 0.85;
	display: flex;
	align-items: center;
	gap: 10px;
  }

  .extras ul li::before {
	content: '→';
	opacity: 0.6;
	font-size: 0.8rem;
  }

  /* ── FEES ── */
  .fees-section {
	text-align: center;
	padding: 100px 24px;
  }

  .fee-card {
	display: inline-block;
	background: white;
	border-radius: 40px;
	padding: 60px 80px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.06);
	position: relative;
	margin-top: 40px;
	border: 1px solid rgba(19,98,8,0.08);
	max-width: 560px;
	width: 100%;
  }

  .fee-card::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 42px;
	background: linear-gradient(135deg, rgba(19,98,8,0.15), transparent, rgba(19,98,8,0.08));
	z-index: -1;
  }

  .price {
	font-family: 'Playfair Display', serif;
	font-size: 5rem;
	color: var(--green);
	font-weight: 600;
	line-height: 1;
  }

  .price sub {
	font-size: 1.5rem;
	vertical-align: super;
	font-family: 'DM Sans', sans-serif;
	font-weight: 300;
  }

  .price-unit {
	font-size: 1rem;
	color: rgba(36,36,36,0.4);
	margin-top: 4px;
	font-weight: 300;
  }

  .fee-notes {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
  }

  .fee-note {
	font-size: 0.85rem;
	color: rgba(36,36,36,0.55);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
  }

  .fee-note::before {
	content: '·';
	color: var(--green);
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
  }

  .fee-multi {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 20px;
	padding: 18px 20px;
	background: var(--green-pale);
	border-radius: 16px;
	border: 1px solid rgba(19,98,8,0.12);
	text-align: left;
  }

  .fee-multi-icon {
	color: var(--green);
	flex-shrink: 0;
	margin-top: 2px;
  }

  .fee-multi-text {
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(36,36,36,0.65);
	font-weight: 300;
  }

  .fee-multi-text strong {
	display: block;
	font-weight: 500;
	color: var(--dark);
	margin-bottom: 3px;
	font-size: 0.88rem;
  }

  /* ── CONTACT ── */
  .contact-section {
	background: var(--green);
	border-radius: 40px;
	margin: 0 24px 80px;
	padding: 80px 60px;
	color: white;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	overflow: hidden;
  }

  .contact-section::before {
	content: '';
	position: absolute;
	width: 500px; height: 500px;
	border-radius: 50%;
	background: rgba(255,255,255,0.04);
	top: -200px; right: -100px;
  }

  .contact-section::after {
	content: '';
	position: absolute;
	width: 300px; height: 300px;
	border-radius: 50%;
	background: rgba(255,255,255,0.04);
	bottom: -100px; left: 200px;
  }

  .contact-section .section-label { color: rgba(255,255,255,0.5); }
  .contact-section h2 { color: white; }

  .contact-section p {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	line-height: 1.7;
	font-weight: 300;
	margin-top: 12px;
  }

  .contact-links {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
  }

  .contact-link {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 20px;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: white;
	transition: all 0.3s;
  }

  .contact-link:hover {
	background: rgba(255,255,255,0.18);
	transform: translateX(6px);
  }

  .contact-link-icon {
	width: 42px; height: 42px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	color: white;
  }

  .contact-link-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }

  .contact-link-text .title {
	font-size: 0.75rem;
	opacity: 0.6;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2px;
  }

  .contact-link-text .value {
	font-size: 0.95rem;
	font-weight: 500;
  }

  /* ── FOOTER ── */
  footer {
	text-align: center;
	padding: 32px 24px;
	font-size: 0.8rem;
	color: rgba(36,36,36,0.35);
  }
  
  .site-credit {
	display: inline-block;
	height: 1.25rem;
	overflow: hidden;
	font-size: 0.8rem;
	text-decoration: none;
	color: rgba(36,36,36,0.35);
	margin-top: 4px;
  }
  
  .site-credit .inner {
	display: block;
	transition: transform 0.3s ease-out;
  }
  
  .site-credit:hover .inner {
	transform: translateY(-1.25rem);
  }
  
  .site-credit .line {
	display: block;
	height: 1.25rem;
	line-height: 1.25rem;
  }

  /* ── SECTION DIVIDER ── */
  .wave-divider {
	height: 80px;
	overflow: hidden;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
	nav { padding: 10px 20px; gap: 16px; }
	nav a:not(.nav-cta) { display: none; }
	
	.scroll-hint { display: none; }

	.about-grid,
	.equip-grid,
	.contact-section { grid-template-columns: 1fr; gap: 40px; }

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

	.qual-section, .contact-section { padding: 48px 28px; margin: 0 12px; }

	.fee-card { padding: 40px 32px; }

	.stat-callout, .stat-callout-2 { display: none; }

	section { padding: 60px 16px; }
  }