/* ============================================
   Old Town Antiques & Collectibles
   Vibrant Modern | Terracotta + Sand
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-terracotta: #C1694F;
  --color-terracotta-dark: #A0523D;
  --color-terracotta-light: #D4896F;
  --color-terracotta-pale: #F0D5C8;
  --color-sand: #F5E6D3;
  --color-sand-light: #FBF5EE;
  --color-sand-dark: #E8D5C0;
  --color-cream: #FFFAF5;
  --color-charcoal: #2A2220;
  --color-warm-gray: #6B5B54;
  --color-warm-gray-light: #9B8B84;
  --color-white: #FFFFFF;
  --color-green: #4A7C59;
  --color-green-light: #E8F0E9;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(42,34,32,0.08);
  --shadow-md: 0 4px 16px rgba(42,34,32,0.10);
  --shadow-lg: 0 8px 32px rgba(42,34,32,0.12);
  --shadow-xl: 0 16px 48px rgba(42,34,32,0.14);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Geometric Background Shapes --- */
.geo-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  opacity: 0.06;
}

.geo-circle-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--color-terracotta);
  top: -150px;
  right: -100px;
}

.geo-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-terracotta-light);
  bottom: 20%;
  left: -80px;
}

.geo-square-1 {
  width: 200px;
  height: 200px;
  background: var(--color-sand-dark);
  top: 40%;
  right: 5%;
  transform: rotate(45deg);
}

.geo-triangle-1 {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid var(--color-terracotta);
  top: 60%;
  left: 3%;
  opacity: 0.04;
}

.geo-circle-3 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 40px solid var(--color-sand-dark);
  bottom: 10%;
  right: 10%;
  opacity: 0.05;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 105, 79, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 250, 245, 0.95);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--color-terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-sand-light);
  letter-spacing: -0.5px;
  transform: rotate(-3deg);
  transition: var(--transition);
}

.logo:hover .logo-mark {
  transform: rotate(0deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line-1 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.logo-line-2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-warm-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-warm-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-terracotta);
  background: var(--color-terracotta-pale);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--color-cream);
  overflow: hidden;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(193,105,79,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,230,211,0.8) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-sand);
  border: 1px solid var(--color-sand-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-warm-gray);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-charcoal);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-headline em {
  color: var(--color-terracotta);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-warm-gray);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-sub em {
  color: var(--color-charcoal);
  font-style: italic;
  font-family: var(--font-display);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(193,105,79,0.3);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,105,79,0.35);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-charcoal);
  border: 2px solid var(--color-sand-dark);
}

.btn-secondary:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--color-warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-sand-dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-image-stack {
  position: relative;
  padding-bottom: 24px;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
}

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

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,34,32,0.2) 0%, transparent 40%);
}

.hero-img-accent {
  position: absolute;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
}

.hero-img-small {
  width: 160px;
  aspect-ratio: 1;
  bottom: 60px;
  left: -40px;
}

.hero-img-small-bottom {
  width: 140px;
  aspect-ratio: 6/5;
  bottom: -10px;
  right: -30px;
}

.hero-float-card {
  position: absolute;
  top: 50px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card-icon {
  width: 40px;
  height: 40px;
  background: var(--color-terracotta-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.hero-float-card-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
}

.hero-float-card-sub {
  display: block;
  font-size: 11px;
  color: var(--color-warm-gray-light);
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--color-sand-light);
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- Section Shared --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-terracotta-pale);
  color: var(--color-terracotta);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.section-title em {
  color: var(--color-terracotta);
  font-style: italic;
}

.section-sub {
  font-size: 17px;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

/* --- Categories --- */
.categories {
  padding: 100px 0;
  background: var(--color-sand-light);
  position: relative;
  z-index: 1;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--color-white);
}

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

.category-card--large {
  grid-column: span 7;
  min-height: 320px;
}

.category-card--wide {
  grid-column: span 12;
  min-height: 220px;
}

.category-card:not(.category-card--large):not(.category-card--wide) {
  grid-column: span 6;
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,34,32,0.85) 0%, rgba(42,34,32,0.3) 50%, transparent 100%);
}

.category-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.category-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition);
}

.category-card:hover .category-card-icon {
  background: var(--color-white);
  color: var(--color-terracotta);
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.category-card-desc {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 280px;
}

.category-card-geo {
  position: absolute;
  opacity: 0.15;
  z-index: 1;
}

.geo-cat-1 {
  width: 120px;
  height: 120px;
  background: var(--color-terracotta);
  border-radius: 50%;
  top: -20px;
  right: -20px;
}

.geo-cat-2 {
  width: 80px;
  height: 80px;
  background: var(--color-sand);
  transform: rotate(45deg);
  bottom: -10px;
  right: -10px;
}

.geo-cat-3 {
  width: 60px;
  height: 60px;
  background: var(--color-terracotta-light);
  border-radius: 50%;
  top: 20px;
  right: 20px;
}

.geo-cat-4 {
  width: 100px;
  height: 100px;
  background: var(--color-sand-dark);
  transform: rotate(30deg);
  bottom: -20px;
  left: 40%;
}

.geo-cat-5 {
  width: 80px;
  height: 80px;
  background: var(--color-terracotta);
  border-radius: 50%;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
}

/* --- About --- */
.about {
  padding: 100px 0;
  background: var(--color-cream);
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6.5;
}

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

.about-image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
}

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

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.3;
}

.about-badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.about-badge-text {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 16px;
  color: var(--color-warm-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--color-charcoal);
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-terracotta-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 15px;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 14px;
  color: var(--color-warm-gray);
  line-height: 1.5;
}

/* --- Visit --- */
.visit {
  padding: 100px 0;
  background: var(--color-sand-light);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-text {
  font-size: 17px;
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.visit-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.visit-detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-warm-gray-light);
  font-weight: 600;
}

.visit-detail-value {
  font-size: 15px;
  color: var(--color-charcoal);
  font-weight: 500;
}

.visit-detail-link {
  font-size: 15px;
  color: var(--color-terracotta);
  font-weight: 500;
  transition: var(--transition);
}

.visit-detail-link:hover {
  color: var(--color-terracotta-dark);
  text-decoration: underline;
}

/* Map placeholder */
.visit-map {
  position: relative;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--color-sand-dark);
  position: relative;
}

.map-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--color-sand-dark) 0%, var(--color-terracotta-pale) 100%);
  text-align: center;
  padding: 40px;
}

.map-pin {
  animation: float 3s ease-in-out infinite;
}

.map-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.4;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 8px;
}

.map-link:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
}

.visit-map-geo {
  position: absolute;
  opacity: 0.1;
}

.geo-map-1 {
  width: 200px;
  height: 200px;
  background: var(--color-terracotta);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.geo-map-2 {
  width: 120px;
  height: 120px;
  background: var(--color-sand-dark);
  transform: rotate(45deg);
  bottom: -20px;
  left: -20px;
}

/* --- Contact --- */
.contact {
  padding: 100px 0;
  background: var(--color-cream);
  position: relative;
  z-index: 1;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text {
  font-size: 17px;
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: var(--color-sand-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--color-sand);
  transform: translateX(4px);
}

.contact-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-terracotta-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.contact-info-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-warm-gray-light);
  font-weight: 600;
}

.contact-info-value {
  display: block;
  font-size: 15px;
  color: var(--color-charcoal);
  font-weight: 500;
  margin-top: 2px;
}

.contact-info-value a {
  color: inherit;
  transition: var(--transition);
}

.contact-info-value a:hover {
  color: var(--color-terracotta);
}

/* Form */
.contact-right {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-sand-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: span 2;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid var(--color-sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-charcoal);
  background: var(--color-cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--color-terracotta);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(193,105,79,0.1);
}

.form-input::placeholder {
  color: var(--color-warm-gray-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B5B54' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

/* Form success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--color-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.form-success-text {
  font-size: 15px;
  color: var(--color-warm-gray);
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--color-charcoal);
  color: var(--color-sand);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,230,211,0.1);
}

.footer-brand .logo-mark {
  background: var(--color-terracotta);
}

.footer-brand .logo-line-1 {
  color: var(--color-sand-light);
}

.footer-brand .logo-line-2 {
  color: var(--color-warm-gray-light);
}

.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-warm-gray-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-terracotta-light);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-warm-gray-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-sand-light);
  padding-left: 4px;
}

.footer-contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-warm-gray-light);
  margin-bottom: 10px;
}

.footer-contact a {
  font-size: 14px;
  color: var(--color-terracotta-light);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--color-sand-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: var(--color-warm-gray);
}

.footer-copy {
  color: var(--color-warm-gray);
}

.footer-location {
  color: var(--color-warm-gray-light);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }
  
  .hero-img-small {
    width: 130px;
    left: -20px;
  }
  
  .hero-img-small-bottom {
    width: 120px;
    right: -15px;
  }
  
  .hero-float-card {
    right: -10px;
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .category-card--large {
    grid-column: span 2;
  }
  
  .category-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .nav.open {
    transform: translateX(0);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  
  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    display: block;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42,34,32,0.5);
    z-index: 999;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  /* Hero mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-sub {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero-img-small {
    width: 110px;
    left: -10px;
    bottom: 40px;
  }
  
  .hero-img-small-bottom {
    width: 100px;
    right: -10px;
  }
  
  .hero-float-card {
    display: none;
  }
  
  /* About mobile */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-image-secondary {
    right: -15px;
    bottom: -20px;
  }
  
  .about-badge {
    left: -10px;
    top: -15px;
  }
  
  /* Visit mobile */
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .visit-map {
    max-width: 400px;
  }
  
  /* Contact mobile */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Footer mobile */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card--large,
  .category-card--wide {
    grid-column: span 1;
  }
  
  .category-card {
    min-height: 200px;
  }
  
  .contact-right {
    padding: 24px;
  }
}
