/*
 * Art'n'Sci Collective — Main Stylesheet
 * Palette: warm cream · dark teal · near-black
 * Type: Cormorant Garamond (headings) · DM Sans (body)
 * Modern touches inspired by contemporary SaaS/art sites (e.g. asato.ai)
 */

/* ============================================================
   DESIGN TOKENS (easing, shadows, motion)
   ============================================================ */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.5s;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  /* Soft shadow behind art — lifts work off the page */
  --shadow-art: 0 4px 14px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-art-hover: 0 8px 28px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.07);
  --teal: #2c5e4e;
  --teal-dark: #1d4538;
  --cream: #f4efe6;
  --cream-alt: #ebe5db;
  --border: #ddd8cf;
  --border-input: #cdc6bc;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0.01ms;
    --duration-normal: 0.01ms;
    --duration-slow: 0.01ms;
  }
  .featured-item a:hover img,
  .gallery-item a:hover img,
  .event-card:hover .event-card-image img,
  .about-image:hover img { transform: none; }
  .event-card:hover { transform: none; }
  .btn-primary:hover,
  .btn-subscribe:hover { transform: none; }
  .social-link:hover { transform: none; }
  .social-link:hover svg { transform: none; }
}

/* Anchor targets: leave room below sticky header */
.gallery-item[id] { scroll-margin-top: 80px; }

/* ============================================================
   FLOATING / FLOWING (subtle motion)
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes flow-shine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .featured-item { animation: none !important; }
  .link-view-art::before { animation: none !important; opacity: 0.35; }
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background-color: var(--cream);
  color: #2a2a2a;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.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;
}

/* Focus visible for accessibility (modern, high-contrast) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* ============================================================
   HEADER & NAVIGATION (sticky + glassmorphism)
   ============================================================ */
body > header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 216, 207, 0.6);
  transition: background var(--duration-normal) var(--ease-out-smooth),
              border-color var(--duration-normal) var(--ease-out-smooth),
              box-shadow var(--duration-normal) var(--ease-out-smooth);
}

.site-header {
  padding: 26px 48px;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) var(--ease-out-smooth);
}
.site-logo:hover { color: var(--teal); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #2a2a2a;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out-smooth);
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width var(--duration-normal) var(--ease-out-expo);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a:hover,
.site-nav a.active { color: var(--teal); }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  padding: 96px 48px 130px;
  max-width: 1060px;
  margin: 0 auto;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--teal);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.hero-title-main {
  font-size: 108px;
  display: block;
  text-shadow: 0 2px 24px rgba(44, 94, 78, 0.08);
}
.hero-title-sub {
  font-size: 78px;
  display: block;
  margin-bottom: 36px;
  text-shadow: 0 2px 20px rgba(44, 94, 78, 0.06);
}

.hero-tagline {
  font-size: 14px;
  color: #5c5c5c;
  max-width: 340px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.link-view-art {
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2a2a2a;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color var(--duration-fast) var(--ease-out-smooth);
}
/* Flowing shine on underline */
.link-view-art::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--teal) 20%,
    rgba(255,255,255,0.4) 50%,
    var(--teal) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: flow-shine 4s ease-in-out infinite;
  opacity: 0.5;
}
.link-view-art::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.link-view-art:hover { color: var(--teal); }
.link-view-art:hover::before { opacity: 0.8; }
.link-view-art:hover::after { transform: scaleX(0.95); transform-origin: left; }
.link-view-art:focus-visible::after { background: var(--teal); }

/* ============================================================
   FEATURED WORKS — HOME (below hero)
   ============================================================ */
.featured-section {
  padding: 0 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}
.featured-label {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #999;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal) 0%, transparent 100%);
  opacity: 0.6;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.featured-item {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-art);
  transition: box-shadow var(--duration-normal) var(--ease-out-smooth),
              transform var(--duration-slow) var(--ease-out-expo);
  animation: float 4.5s ease-in-out infinite;
}
.featured-item:nth-child(1) { animation-delay: 0s; }
.featured-item:nth-child(2) { animation-delay: 0.3s; }
.featured-item:nth-child(3) { animation-delay: 0.6s; }
.featured-item:nth-child(4) { animation-delay: 0.9s; }
.featured-item a {
  display: block;
  overflow: hidden;
}
.featured-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.featured-item a:hover img {
  transform: scale(1.08);
}
.featured-item:hover {
  box-shadow: var(--shadow-art-hover);
  transform: translateY(-4px);
  animation: none;
}
.featured-footer {
  margin-top: 36px;
  text-align: right;
}

/* ============================================================
   PAGE HEADER (shared section title area)
   ============================================================ */
.page-head {
  padding: 60px 48px 0;
  max-width: 1060px;
  margin: 0 auto;
}
.page-head h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.page-head h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 32px;
  height: 2px;
  background: var(--teal);
  opacity: 0.4;
  border-radius: 1px;
}
.page-subtitle {
  font-size: 14px;
  color: #666;
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-body {
  padding: 44px 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}

.events-filter {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.events-filter label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
}
.events-filter select {
  min-width: 200px;
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--border-input);
  background: #fff;
  font-size: 14px;
  color: #2a2a2a;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c5c5c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.events-filter select:hover,
.events-filter select:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 94, 78, 0.1);
}

.events-section {
  display: none;
}
.events-section.is-visible {
  display: block;
}
.events-section .event-card {
  margin-top: 0;
}
.events-section .event-card + .event-card {
  margin-top: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-top: 10px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-smooth);
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.event-card-text {
  padding: 52px 46px;
  display: flex;
  flex-direction: column;
}
.event-label {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aaa;
  margin-bottom: 30px;
}
.event-card-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.2;
  margin-bottom: 22px;
}
.event-desc {
  font-size: 13.5px;
  color: #5a5a5a;
  line-height: 1.75;
  flex: 1;
  padding-bottom: 44px;
}
.event-meta { margin-top: auto; }
.event-date {
  font-size: 14.5px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 5px;
}
.event-address { font-size: 13.5px; color: #888; }

.event-card-image {
  overflow: hidden;
  border-radius: 0 4px 4px 0;
  box-shadow: inset -8px 0 24px -8px rgba(0, 0, 0, 0.06);
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.event-card:hover .event-card-image img {
  transform: scale(1.06);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-body {
  padding: 44px 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-art);
  transition: box-shadow var(--duration-normal) var(--ease-out-smooth),
              transform var(--duration-slow) var(--ease-out-expo);
  animation: float 5s ease-in-out infinite;
}
.gallery-item:nth-child(3n+1) { animation-delay: 0s; }
.gallery-item:nth-child(3n+2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3n+3) { animation-delay: 0.8s; }
.gallery-item:hover {
  box-shadow: var(--shadow-art-hover);
  transform: translateY(-4px);
  animation: none;
}
.gallery-item a {
  display: block;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.gallery-item a:hover img {
  transform: scale(1.08);
}
/* Title below image — clean caption, no box */
.gallery-item-title {
  margin: 0;
  padding: 12px 4px 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: #3a3a3a;
  letter-spacing: 0.01em;
  transition: color var(--duration-normal) var(--ease-out-smooth);
}
.gallery-item:hover .gallery-item-title {
  color: var(--teal);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-body {
  padding: 44px 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  margin-top: 36px;
}
.about-text p {
  font-size: 14.5px;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-credits {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd8cf;
}
.about-credits p {
  font-size: 14px;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 6px;
}
.about-credits strong { font-weight: 600; }
.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-art);
  align-self: stretch;
  transition: box-shadow var(--duration-normal) var(--ease-out-smooth);
}
.about-image:hover {
  box-shadow: var(--shadow-art-hover);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.about-image:hover img { transform: scale(1.06); }

/* ============================================================
   ARTWORK DETAIL (image left, description right — like About)
   ============================================================ */
.work-body {
  padding: 44px 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}
.work-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  margin-top: 36px;
  align-items: start;
}
.work-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-art);
  position: sticky;
  top: 100px;
}
.work-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.work-image:hover img { transform: scale(1.03); }
.work-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.work-text .work-origin {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 24px;
}
.work-text .work-description {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 28px;
}
.work-text .work-meta {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}
.work-text .work-actions {
  display: flex;
  margin-top: 32px;
  gap: 24px;
}
.work-text .work-back,
.work-text .work-order {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  transition: color var(--duration-fast);
}
.work-text .work-back:hover,
.work-text .work-order:hover { color: var(--teal-dark); }
@media (max-width: 900px) {
  .work-layout { grid-template-columns: 1fr; gap: 40px; }
  .work-image { position: static; }
}

/* ============================================================
   ORDER / FORMS
   ============================================================ */
.order-body {
  padding: 44px 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}
.order-form { margin-top: 44px; max-width: 520px; }

.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2a2a2a;
  margin-bottom: 9px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-input);
  background: #ffffff;
  font-size: 14px;
  color: #2a2a2a;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--duration-fast) var(--ease-out-smooth),
              box-shadow var(--duration-fast) var(--ease-out-smooth);
}
.form-select { -webkit-appearance: auto; appearance: auto; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 94, 78, 0.12);
}
.form-textarea { height: 130px; resize: vertical; }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #ffffff;
  padding: 13px 30px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration-fast) var(--ease-out-smooth),
              transform var(--duration-fast) var(--ease-out-expo),
              box-shadow var(--duration-fast) var(--ease-out-smooth);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 94, 78, 0.25);
}
.btn-primary:active { transform: translateY(0); }

/* ============================================================
   SUBSCRIBE
   ============================================================ */
.subscribe-band {
  background: var(--cream-alt);
  padding: 92px 48px;
  text-align: center;
}
.subscribe-band h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.subscribe-band p {
  font-size: 14px;
  color: #666;
  margin-bottom: 38px;
}
.email-row {
  display: inline-flex;
  max-width: 430px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-fast) var(--ease-out-smooth);
}
.email-row:focus-within { box-shadow: 0 0 0 3px rgba(44, 94, 78, 0.12); }
.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-input);
  border-right: none;
  background: #ffffff;
  font-size: 14px;
  color: #2a2a2a;
  outline: none;
  border-radius: 4px 0 0 4px;
  transition: border-color var(--duration-fast);
}
.email-input::placeholder { color: #bbb; }
.email-input:focus { border-color: var(--teal); }
.btn-subscribe {
  padding: 12px 22px;
  background: var(--teal);
  color: #ffffff;
  border: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 4px 4px 0;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration-fast) var(--ease-out-smooth),
              transform var(--duration-fast) var(--ease-out-expo),
              box-shadow var(--duration-fast) var(--ease-out-smooth);
}
.btn-subscribe:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 94, 78, 0.2);
}

/* ============================================================
   SOCIAL
   ============================================================ */
.social-band {
  padding: 92px 48px;
  text-align: center;
}
.social-band h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.social-band > p {
  font-size: 14px;
  color: #666;
  margin-bottom: 48px;
}
.social-links {
  display: inline-flex;
  gap: 60px;
  justify-content: center;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #2a2a2a;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-smooth),
              transform var(--duration-fast) var(--ease-out-expo);
}
.social-link:hover {
  color: var(--teal);
  transform: translateY(-2px);
}
.social-link svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.social-link:hover svg { transform: scale(1.08); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-body {
  padding: 44px 48px 100px;
  max-width: 1060px;
  margin: 0 auto;
}
.contact-intro {
  margin-top: 36px;
  margin-bottom: 48px;
  max-width: 460px;
}
.contact-intro p {
  font-size: 14.5px;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 12px;
}
.contact-intro a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) var(--ease-out-smooth);
}
.contact-intro a:hover { color: var(--teal-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 52px 48px;
  text-align: center;
}
.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 10px;
}
.footer-email {
  display: block;
  font-size: 14px;
  color: #2a2a2a;
  margin-bottom: 18px;
  transition: color var(--duration-fast) var(--ease-out-smooth);
}
.footer-email:hover { color: var(--teal); text-decoration: underline; }
.footer-credits {
  font-size: 12.5px;
  color: #aaa;
  line-height: 1.9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-header { flex-direction: column; gap: 18px; text-align: center; padding: 24px 28px; }
  .site-nav ul { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .hero { padding: 64px 28px 80px; }
  .hero-title-main { font-size: 72px; }
  .hero-title-sub  { font-size: 52px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .page-head, .events-body, .gallery-body, .about-body, .order-body, .contact-body { padding-left: 28px; padding-right: 28px; }
  .featured-section { padding-left: 28px; padding-right: 28px; }
  .subscribe-band, .social-band { padding-left: 28px; padding-right: 28px; }
  .site-footer { padding-left: 28px; padding-right: 28px; }
  .event-card { grid-template-columns: 1fr; }
  .event-card-image { height: 280px; border-radius: 0 0 4px 4px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-head h1 { font-size: 42px; }
}

@media (max-width: 520px) {
  .hero-title-main { font-size: 52px; }
  .hero-title-sub  { font-size: 38px; }
  .featured-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .subscribe-band h1, .social-band h1 { font-size: 38px; }
}
