:root {
  /* Premium Australian Hospitality Palette */
  --bg-primary: #f7f1e8;
  --bg-secondary: #efe3d1;
  --surface-deep: #13231f;
  --surface-card: #ffffff;
  --accent-primary: #0f766e;
  --accent-secondary: #b77946;
  --accent-tertiary: #264653;
  --soft-gold: #d6a85c;
  --border-color: #dfd1bf;
  --text-primary: #1f2933;
  --text-secondary: #5f6b76;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-accent { color: var(--accent-secondary); }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--surface-deep);
}

.btn-secondary {
  background-color: transparent;
  color: var(--surface-deep);
  border-color: var(--surface-deep);
}

.btn-secondary:hover {
  background-color: var(--surface-deep);
  color: #ffffff;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--surface-deep);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-secondary);
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--surface-deep);
  cursor: pointer;
}

/* Split Hero */
.split-hero {
  display: flex;
  min-height: 100vh;
  padding-top: var(--header-height);
  background-color: var(--bg-primary);
}

.hero-content {
  flex: 1;
  padding: 4rem 4rem 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--surface-deep);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-compliance {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-left: 3px solid var(--accent-primary);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Destination Ribbon */
.destination-ribbon {
  background-color: var(--surface-deep);
  color: #ffffff;
  padding: 1.5rem 0;
  overflow: hidden;
}

.ribbon-track {
  display: flex;
  gap: 3rem;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.ribbon-track span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--soft-gold);
}

/* Layout Containers */
.section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Venue Passport Cards */
.passport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.passport-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.passport-img {
  height: 200px;
  background-color: var(--bg-secondary);
}

.passport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.passport-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.passport-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.passport-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--surface-deep);
}

.passport-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.passport-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compliance-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Evening Planner (Signature Component) */
.evening-planner {
  background-color: var(--bg-secondary);
  padding: 6rem 2rem;
}

.planner-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}

.planner-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.planner-tab {
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-secondary);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.planner-tab.active {
  color: var(--surface-deep);
  border-left-color: var(--accent-secondary);
  background-color: var(--surface-card);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.planner-content-area {
  flex: 2;
  background-color: var(--surface-card);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.planner-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.planner-panel.active {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-secondary);
  border: 2px solid var(--surface-card);
}

.time-label {
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.timeline-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Dining Spotlight */
.dining-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spotlight-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 500px;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spotlight-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.spotlight-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--surface-deep);
}

.spotlight-item p {
  color: var(--text-secondary);
}

/* Responsible Info Strip */
.responsible-strip {
  background-color: var(--surface-deep);
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.strip-content {
  max-width: 800px;
  margin: 0 auto;
}

.strip-content h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.strip-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.strip-content .highlight {
  color: var(--soft-gold);
  font-weight: 600;
}

/* Footer */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--surface-deep);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  padding: 1rem;
  background-color: rgba(15, 118, 110, 0.05);
  border-left: 2px solid var(--accent-primary);
  color: var(--text-secondary);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--surface-deep);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-secondary);
}

.footer-address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Internal Page Headers */
.page-header {
  padding: 10rem 2rem 5rem;
  background-color: var(--surface-deep);
  color: #ffffff;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.75rem;
  color: var(--surface-deep);
}

.legal-content p, .legal-content li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-info {
  background-color: var(--bg-secondary);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--surface-deep);
}

.form-group input, .form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  background-color: var(--surface-card);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 3rem; }
  .planner-container { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--surface-card);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: -1;
    opacity: 0;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links .btn {
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .split-hero {
    flex-direction: column;
  }

  .hero-content {
    padding: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 400px;
  }

  .dining-spotlight, .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .page-header h1 { font-size: 2.5rem; }
}