:root {
  --primary: #0d6b6b;
  --primary-foreground: #ffffff;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --background: #ffffff;
  --foreground: #0f172a;
  --radius: 1rem;
}
.font-body { font-family: 'Inter', system-ui, sans-serif; }
.font-headline { font-family: 'Playfair Display', Georgia, serif; }
.text-primary { color: var(--primary); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-foreground { color: var(--foreground); }
.bg-primary { background-color: var(--primary); }
.bg-muted { background-color: var(--muted); }
.bg-background { background-color: var(--background); }
.bg-white { background-color: #ffffff; }
.border-muted { border-color: var(--border); }
.border-border\/50 { border-color: color-mix(in srgb, var(--border) 50%, transparent); }
.selection\:bg-primary ::selection { background-color: var(--primary); color: var(--primary-foreground); }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.625; }
.min-h-\[100dvh\] { min-height: 100dvh; }
.rounded-2xl { border-radius: var(--radius); }
.rounded-3xl { border-radius: 1.5rem; }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-style: solid; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-none { box-shadow: none; }
.transition-all { transition-property: all; transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-duration: 500ms; }
.transition-opacity { transition-property: opacity; transition-duration: 300ms; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.hover\:scale-105:hover { transform: scale(1.05); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.flex-shrink-0 { flex-shrink: 0; }
.cursor-pointer { cursor: pointer; }
.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.site-logo img { height: 100%; width: auto; }
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: background-color 0.2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.site-nav a:hover { background-color: var(--muted); }
.site-nav a.active { color: var(--primary); background-color: color-mix(in srgb, var(--primary) 10%, transparent); }
.site-footer {
  background: var(--muted);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer p, .site-footer a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.site-footer a { color: var(--primary); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: 'Inter', system-ui, sans-serif;
}
.container { max-width: 1280px; margin: 0 auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-24 > * + * { margin-top: 6rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.w-full { width: 100%; }
.max-w-none { max-width: none; }
.max-w-4xl { max-width: 56rem; }
.max-w-\[600px\] { max-width: 600px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[300px\] { max-width: 300px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.p-0 { padding: 0; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.aspect-\[3\/4\] { aspect-ratio: 3/4; }
.aspect-\[16\/10\] { aspect-ratio: 16/10; }
.h-2 { height: 0.5rem; }
.h-8 { height: 2rem; }
.h-16 { height: 4rem; }
.h-\[400px\] { height: 400px; }
.w-2 { width: 0.5rem; }
.w-8 { width: 2rem; }
.w-16 { width: 4rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-\[1\.1\] { line-height: 1.1; }
.list-none { list-style: none; }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black\/70 { --tw-gradient-from: rgba(0,0,0,0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }
.to-transparent { --tw-gradient-to: transparent; }
.opacity-0 { opacity: 0; }
.text-white { color: white; }
.p-4 { padding: 1rem; }
.md\:p-6 { padding: 1.5rem; }
.md\:flex-row { flex-direction: row; }
.md\:text-left { text-align: left; }
.md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.lg\:h-\[600px\] { height: 600px; }
.md\:h-\[500px\] { height: 500px; }
.md\:h-\[600px\] { height: 600px; }
@media (min-width: 640px) {
  .sm\:text-xs { font-size: 0.75rem; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:text-6xl { font-size: 3.75rem; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:h-\[500px\] { height: 500px; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-img-wrap { height: 600px; }
  .about-img-wrap img { height: 100%; object-fit: cover; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:h-\[600px\] { height: 600px; }
  .hero-img-wrap { height: 600px; }
  .hero-img-wrap img { height: 100%; object-fit: cover; }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
@media (max-width: 767px) {
  .site-header { position: relative; }
  .hamburger { display: flex; }
  .site-header-inner { height: 70px; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: .5rem; border-bottom: 1px solid var(--border); z-index: 100; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem 1rem; width: 100%; }
  .text-4xl { font-size: 1.75rem; }
  .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
  .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
  .gap-12 { gap: 2rem; }
  .site-logo img { max-width: 180px; }
}
