:root {
  --bg-cream: #f9f3eb;
  --bg-warm: #f0e8dc;
  --burgundy: #b85a38;
  --burgundy-light: #c9704a;
  --text-main: #2e221c;
  --text-muted: #5c4e44;
  --text-soft: #7a6a5c;
  --border: rgba(184, 90, 56, 0.14);
  --max-width: 720px;
  --max-wide: 960px;
}

/* Seasonal accent shifts */
[data-season="spring"] {
  --burgundy: #c07048;
  --burgundy-light: #d08858;
}

[data-season="summer"] {
  --burgundy: #b85a38;
  --burgundy-light: #c9704a;
}

[data-season="autumn"] {
  --burgundy: #a04a2e;
  --burgundy-light: #b85a38;
}

[data-season="winter"] {
  --burgundy: #9a5238;
  --burgundy-light: #b06848;
}

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

html {
  scroll-behavior: smooth;
  font-size: 112.5%;
}

body {
  min-height: 100vh;
  background: var(--bg-cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
}

body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(100vw, 900px);
  height: min(100vw, 900px);
  background: url('assets/logo.png') center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: logoSpin 180s linear infinite;
}

@keyframes logoSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

h1, h2, h3, .serif {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--burgundy);
}

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

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--burgundy);
  color: var(--bg-cream);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Header & Nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--burgundy);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--burgundy);
}

/* Layout */

main {
  padding-top: 5rem;
}

section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* Hero */

.hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero h1.hero-tagline {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  color: var(--burgundy);
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.35;
  font-weight: 400;
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 1.25rem;
  animation: fadeUp 1.2s ease-out 0.15s forwards;
  opacity: 0;
}

.hero .social-proof {
  animation: fadeUp 1.2s ease-out 0.25s forwards;
  opacity: 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  animation: fadeUp 1.2s ease-out 0.35s forwards;
  opacity: 0;
}

.btn:hover {
  background: var(--burgundy);
  color: var(--bg-cream);
}

.btn-filled {
  background: var(--burgundy);
  color: var(--bg-cream);
}

.btn-filled:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
}

/* Content blocks */

.prose {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.prose p + p {
  margin-top: 1.25rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--burgundy);
  margin: 2.5rem auto;
  opacity: 0.4;
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Editorial imagery */
.editorial-image {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(0.12) saturate(0.85) brightness(1.02);
}

.experience-block .editorial-image {
  margin: 0 0 1.75rem;
  padding: 0;
}

.experience-block .editorial-image img {
  aspect-ratio: 3 / 2;
}

/* Social proof */
.social-proof {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

/* Offer cards as links */
.offer-item {
  display: block;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  transition: color 0.25s ease;
}

.offer-item:first-child {
  border-top: none;
  padding-top: 0;
}

.offer-item:hover h3 {
  color: var(--burgundy-light);
}

.offer-item .offer-link-hint {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.7;
}

.offer-item:hover .offer-link-hint {
  opacity: 1;
}

.offer-grid {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.offer-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
}

.offer-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Philosophy / tone lines */

.philosophy {
  text-align: center;
  padding: 4rem 2rem;
}

.philosophy p {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--burgundy);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Instagram CTA */
.instagram-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.instagram-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.instagram-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.15rem;
  color: var(--burgundy);
  transition: opacity 0.25s ease;
}

.instagram-cta-link:hover {
  opacity: 0.75;
}

/* 404 */
.error-page .page-hero {
  padding-bottom: 5rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.error-actions .btn {
  opacity: 1;
  animation: none;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.success-panel:focus {
  outline: none;
}

/* CTA section */

.cta-section {
  text-align: center;
  padding: 5rem 2rem 6rem;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Page headers (inner pages) */

.page-hero {
  text-align: center;
  padding: 4rem 2rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
}

.page-hero .intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Experience sections */

.experience-block {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 6rem;
}

.experience-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.experience-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.experience-block p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.experience-block p + p {
  margin-top: 1rem;
}

.ideal-list {
  margin-top: 1.25rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.ideal-list li {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.ideal-list li::before {
  content: '—';
  margin-right: 0.5rem;
  color: var(--burgundy);
  opacity: 0.5;
}

.experiences-content {
  padding: 0 2rem 2rem;
}

.closing-line {
  text-align: center;
  padding: 3rem 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.closing-line .closing-cta {
  margin-top: 2.5rem;
}

.closing-line p {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.15rem;
  color: var(--burgundy);
  line-height: 1.6;
}

/* About page */

.about-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.about-content .prose {
  text-align: left;
}

/* Contact / Enquire form */

.enquire-section {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.enquire-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.form-group .field-hint {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-main);
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

.email-backup {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.email-backup a {
  color: var(--burgundy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.email-backup a:hover {
  border-bottom-color: var(--burgundy);
}

.form-group--highlight label {
  color: var(--burgundy);
  font-weight: 500;
}

.form-group--highlight .field-hint {
  font-weight: 400;
}

.btn-submit {
  opacity: 1;
  animation: none;
  align-self: center;
  margin-top: 0.5rem;
}

.philosophy--compact {
  padding-top: 0;
  padding-bottom: 4rem;
}

.success-panel a {
  color: var(--burgundy);
}

.form-group input[type="date"] {
  color-scheme: light;
}

.success-panel {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
}

.success-panel.visible {
  display: block;
}

.success-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.success-panel p {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.success-panel .success-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.success-message {
  display: none;
}

.enquire-form.hidden {
  display: none;
}

.email-backup.hidden {
  display: none;
}

/* Footer */

.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem 2rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}

.site-footer .footer-logo {
  width: 36px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

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

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

.footer-meta a {
  color: var(--burgundy);
  transition: opacity 0.25s ease;
}

.footer-meta a:hover {
  opacity: 0.75;
}

.footer-location {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.footer-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.footer-instagram a:hover {
  color: var(--burgundy);
}

.footer-instagram svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

/* Animations */

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

.fade-in {
  animation: fadeUp 0.9s ease-out forwards;
}

/* Responsive */

@media (max-width: 640px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 1.25rem;
  }

  .nav-toggle {
    display: block;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-meta {
    order: 3;
  }
}
