/* Søndre Haugen gård — farm.legal — Nordic fireside palette */
:root {
  --earth: #2c2419;
  --earth-light: #5a4a3a;
  --cream: #f6efe4;
  --cream-dark: #e5d9c8;
  --green: #1a3c34;
  --green-light: #2d5a4f;
  --gold: #c17f59;
  --gold-light: #d4a07a;
  --red: #a64d3f;
  --fern: #4a7c59;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(44, 36, 25, 0.1);
  --shadow-lg: 0 12px 48px rgba(26, 60, 52, 0.16);
  --gradient-hero: linear-gradient(165deg, rgba(26, 60, 52, 0.72) 0%, rgba(44, 36, 25, 0.82) 100%);
  --gradient-cta: linear-gradient(135deg, #1a3c34 0%, #2c2419 55%, #3d2e35 100%);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Pinyon Script", cursive;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--earth);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  background-attachment: fixed;
}

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

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

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--earth);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--dark {
  background: var(--green);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark p,
.section--dark li,
.section--earth p,
.section--earth li {
  color: var(--cream);
}

.section--dark a:not(.btn),
.section--earth a:not(.btn),
.cta-band a:not(.btn) {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.section--dark a:not(.btn):hover,
.section--earth a:not(.btn):hover,
.cta-band a:not(.btn):hover {
  color: var(--cream);
}

.section--dark .card,
.section--dark .card-body,
.section--dark .news-item,
.section--dark .form-section,
.section--dark .table-wrap table {
  color: var(--earth);
}

.section--dark .card a,
.section--dark .card-body a,
.section--dark .news-item a {
  color: var(--green);
  text-decoration: none;
}

.section--dark .card a:hover,
.section--dark .card-body a:hover,
.section--dark .news-item a:hover {
  color: var(--gold);
}

.section--dark .table-wrap th {
  color: var(--cream);
}

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

.section--earth h2,
.section--earth h3 {
  color: var(--cream);
}

.section--earth .stat-label {
  color: var(--cream);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section--dark .eyebrow,
.section--earth .eyebrow {
  color: var(--gold);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 42rem;
  opacity: 0.92;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(247, 243, 235, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.site-header--transparent:not(.scrolled) {
  background: transparent;
}

.site-header--transparent:not(.scrolled) .nav-link,
.site-header--transparent:not(.scrolled) .logo-text {
  color: var(--cream);
}

.site-header--transparent:not(.scrolled) .nav-toggle span {
  background: var(--cream);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.75rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(26, 60, 52, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--gold);
}

.lang-btn--active {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.site-header--transparent:not(.scrolled) .lang-btn {
  background: rgba(26, 60, 52, 0.35);
  border-color: rgba(246, 239, 228, 0.35);
  color: var(--cream);
}

.site-header--transparent:not(.scrolled) .lang-btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--earth);
}

.nav-mobile .lang-switch {
  margin: 0 0 1.25rem;
  justify-content: center;
}

@media (max-width: 1023px) {
  .header-inner .lang-switch {
    display: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--earth);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: 0;
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--earth);
  text-transform: uppercase;
}

.nav-cta {
  background: var(--green);
  color: var(--cream) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--earth);
  transition: var(--transition);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--earth);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.75rem;
}

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg,
.hero-bg--barn {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero), url("../assets/images/property/barn-exterior.jpg") center/cover no-repeat;
}

.hero-bg--bryllup {
  background: var(--gradient-hero), url("../assets/images/property/outdoor-barn.jpg") center/cover no-repeat;
}

.hero-bg--selskap {
  background: var(--gradient-hero), url("../assets/images/property/barn-hall.jpg") center/cover no-repeat;
}

.hero-bg--bobil {
  background: var(--gradient-hero), url("../assets/images/property/motorhome-area.jpg") center/cover no-repeat;
}

.hero-bg--om {
  background: var(--gradient-hero), url("../assets/images/property/grounds.jpg") center/cover no-repeat;
}

.prose-home {
  max-width: 42rem;
  margin-inline: auto;
}

.prose-home .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--earth);
}

.event-types,
.amenities-list {
  columns: 2;
  column-gap: 2rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.h3-sub {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  color: var(--earth);
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--green);
  border-left: 4px solid var(--gold);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 0;
}

@media (max-width: 640px) {
  .event-types,
  .amenities-list {
    columns: 1;
  }
}

.property-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.gallery-item .property-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.feature-img .property-photo {
  border-radius: var(--radius-lg);
  min-height: 280px;
  aspect-ratio: 4/3;
}

.card .property-photo {
  aspect-ratio: 4/3;
  border-radius: 0;
}

.gretsch-note {
  padding: 1rem 1.25rem;
  background: rgba(26, 60, 52, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  max-width: 900px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero .subtitle {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-logo {
  width: min(200px, 40vw);
  margin: 0 auto 2rem;
  border-radius: 50%;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--earth);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--green);
}

.btn-green {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.btn-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--earth);
  border-color: var(--gold);
}

/* Cards grid */
.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
  background: var(--green);
}

/* Branded visual panels — never empty white boxes */
.visual-panel {
  aspect-ratio: 4/3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.visual-panel__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
}

.visual-panel__sub {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.visual-panel--bryllup {
  background: linear-gradient(155deg, #1a3c34 0%, #7a4a42 45%, #2c2419 100%);
}

.visual-panel--selskap {
  background: linear-gradient(155deg, #2d5a4f 0%, #1a3c34 40%, #3d2e35 100%);
}

.visual-panel--bobil {
  background: linear-gradient(155deg, #2c2419 0%, #1a3c34 50%, #4a6b58 100%);
}

.visual-panel--landskap {
  background: linear-gradient(160deg, #2d5a4f 0%, #1a3c34 60%, #2c2419 100%);
}

.visual-panel--bygg {
  background: linear-gradient(160deg, #a64d3f 0%, #1a3c34 45%, #2c2419 100%);
}

.visual-panel--fest {
  background: linear-gradient(160deg, #3d2e35 0%, #1a3c34 50%, #c17f59 100%);
}

.visual-panel--kultur {
  background: linear-gradient(160deg, #1a3c34 0%, #4a7c59 50%, #2c2419 100%);
}

.visual-panel--marked {
  background: linear-gradient(160deg, #c17f59 0%, #1a3c34 55%, #2c2419 100%);
}

.visual-panel--wide {
  aspect-ratio: 4/3;
  min-height: 280px;
}

.section--dark .card {
  background: var(--cream);
  border-top: none;
}

.section--dark .card .visual-panel {
  border-radius: 0;
}

.founder-music-tag {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

.brand-dual {
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--earth-light);
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(193, 127, 89, 0.25);
}

.brand-dual strong {
  color: var(--green);
}

.brand-dual a {
  color: var(--gold);
  font-weight: 600;
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
}

.card-body p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--earth-light);
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Feature row */
.feature-row {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row--reverse .feature-img { order: 2; }
}

.feature-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  border: 1px solid rgba(247, 243, 235, 0.15);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green);
  border-bottom: 2px solid var(--cream-dark);
  position: relative;
}

.pricing-card--premium {
  border-top-color: var(--gold);
  transform: scale(1.02);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green);
  margin: 1rem 0;
}

.pricing-card .list-check {
  text-align: left;
  margin: 1.5rem auto;
  max-width: 16rem;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

th {
  background: var(--green);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

tr:last-child td { border-bottom: none; }

/* News */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-item {
  display: grid;
  gap: 0.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  transition: var(--transition);
}

.news-item:hover {
  border-left-color: var(--gold);
}

.news-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-item h3 {
  font-size: 1.35rem;
}

/* Forms */
.form-section {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--earth-light);
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--cream);
  transition: border-color var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
}

textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--earth);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--cream-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.site-footer a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 235, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Page header (subpages) */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: var(--gradient-cta);
  color: var(--cream);
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 { color: var(--cream); }
.page-hero .lead {
  margin-inline: auto;
  opacity: 0.95;
  color: var(--cream);
}

/* Trust badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.badge {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(247, 243, 235, 0.25);
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Coming soon */
.coming-soon {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--gold);
  color: var(--earth);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Split CTA */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-cta);
  color: var(--cream);
}

.cta-band h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-band p { margin-bottom: 2rem; opacity: 0.9; max-width: 36rem; margin-inline: auto; }

/* Logo showcase */
.logo-showcase {
  max-width: 320px;
  margin: 2rem auto;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

.spacer-header { height: var(--header-h); }

.nav-link.active { color: var(--gold); border-bottom: 2px solid var(--gold); }

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Brand strip under hero */
.brand-strip {
  background: linear-gradient(90deg, var(--green) 0%, var(--earth) 50%, var(--green) 100%);
  color: var(--cream);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-block: 2px solid var(--gold);
}

.brand-strip img {
  width: 72px;
  margin: 0 auto 0.75rem;
}

/* Story / feeling */
.story-block {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.story-block p {
  font-size: 1.1rem;
  color: var(--earth-light);
  margin-bottom: 1rem;
}

.feel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .feel-grid { grid-template-columns: repeat(3, 1fr); }
}

.feel-card {
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
}

.feel-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.feel-card .feel-desc {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--earth-light);
  line-height: 1.5;
}

.feel-card p,
.feel-card .btn {
  margin-top: 0.75rem;
}

.trust-section {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-block: 1px solid rgba(193, 127, 89, 0.35);
}

.trust-list {
  max-width: 42rem;
  margin-inline: auto;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--earth);
  font-weight: 700;
  font-size: 0.85rem;
}

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

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

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  color: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item .visual-panel {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 100%;
  border-radius: 0;
}

.gallery-item:hover .visual-panel {
  filter: brightness(1.06);
}

.gallery-item figcaption,
.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(26, 60, 52, 0.92));
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.gretsch-compact {
  font-size: 0.95rem;
  color: var(--earth);
}

.gretsch-compact a {
  font-weight: 600;
  white-space: nowrap;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 1rem;
  background: rgba(26, 60, 52, 0.96);
  backdrop-filter: blur(8px);
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.sticky-cta .cta-primary {
  background: var(--cream);
  color: var(--green);
}

.sticky-cta .cta-secondary {
  border: 1px solid var(--cream);
  color: var(--cream);
}

@media (max-width: 1023px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 4rem; }
}

.hero-logo-large {
  width: min(260px, 55vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,0.4));
}

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

.founder-section .founder-mark {
  text-align: center;
}

.founder-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  margin-top: 1rem;
  letter-spacing: 0.12em;
}

.founder-section .badge {
  background: var(--cream-dark);
  border-color: var(--green);
  color: var(--earth);
}

/* Lists — visible bullets on all devices */
ul.list-visible,
ol.list-visible {
  margin: 1rem 0 1.5rem;
  padding-left: 1.4rem;
  list-style-position: outside;
}

ul.list-visible {
  list-style-type: disc;
}

ol.list-visible {
  list-style-type: decimal;
}

ul.list-visible li,
ol.list-visible li {
  padding: 0.4rem 0;
  line-height: 1.55;
}

ul.list-visible--light li {
  color: var(--earth);
}

ul.list-visible--light li::marker {
  color: var(--green);
}

ul.list-visible--dark li {
  color: var(--cream);
}

ul.list-visible--dark li::marker {
  color: var(--gold);
}

ul.list-check {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

ul.list-check li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.75rem;
  line-height: 1.5;
  color: var(--earth-light);
}

ul.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--green);
  font-weight: 700;
}

ul.list-check--dark li {
  color: var(--cream);
}

ul.list-check--dark li::before {
  color: var(--gold);
}

/* Outline buttons on light (cream) sections */
.section:not(.section--dark):not(.section--earth) .btn-outline {
  color: var(--green);
  border-color: var(--green);
}

.section:not(.section--dark):not(.section--earth) .btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.feel-card--dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(247, 243, 235, 0.28);
  color: var(--cream);
}

.feel-card--dark strong {
  color: var(--gold);
}

.feel-card--dark p {
  color: var(--cream);
  opacity: 0.95;
}

.feel-card--dark a:not(.btn) {
  color: var(--cream);
  text-decoration: underline;
}

.booking-fallback {
  width: 100%;
}

/* No-JS fallback menu */
#noscript-nav,
noscript .noscript-fallback {
  background: var(--earth);
  color: var(--cream);
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}

#noscript-nav a,
noscript .noscript-fallback a {
  color: var(--gold);
  text-decoration: underline;
  margin: 0 0.15rem;
}

#noscript-nav a:hover,
noscript .noscript-fallback a:hover {
  color: var(--cream);
}

.noscript-nav-inner {
  max-width: 1200px;
  margin-inline: auto;
}
