/* ============================================
   IRONCLAD DOOR HARDWARE — Global Stylesheet
   Aesthetic: Industrial-luxe, warm neutrals,
   strong typography, tactile feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #F5F0EB;
  --color-bg-alt: #EDE7E0;
  --color-dark: #1A1714;
  --color-text: #3A3530;
  --color-text-light: #7A746D;
  --color-accent: #B8860B;
  --color-accent-hover: #9A7009;
  --color-white: #FFFFFF;
  --color-border: #D5CEC6;
  --color-card-bg: #FFFFFF;
  --color-footer-bg: #1A1714;
  --color-footer-text: #C5BFB8;

  --font-display: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;

  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(26,23,20,0.06);
  --shadow-md: 0 4px 16px rgba(26,23,20,0.08);
  --shadow-lg: 0 8px 32px rgba(26,23,20,0.12);

  --max-width: 1280px;
  --nav-height: 72px;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

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

/* ── UTILITY ─────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ── NAVIGATION ──────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-dark);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-accent-hover);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO ────────────────────────────────── */

.hero {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--color-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #D5CEC6 0%, #C5BFB8 100%);
  color: var(--color-text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.hero-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ── TRUST BAR ───────────────────────────── */

.trust-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ── PRODUCT CATEGORIES ──────────────────── */

.categories {
  padding: 96px 0;
}

.categories-header {
  text-align: center;
  margin-bottom: 64px;
}

.categories-header .section-subtitle {
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--color-card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

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

.category-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.05);
}

.category-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.category-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.cat-bg-1 { background: linear-gradient(145deg, #C9C1B8, #B8AFA5); }
.cat-bg-2 { background: linear-gradient(145deg, #C5BEB5, #B3ABA2); }
.cat-bg-3 { background: linear-gradient(145deg, #D0C8BF, #BEB6AD); }
.cat-bg-4 { background: linear-gradient(145deg, #CBC3BA, #B9B1A8); }

.category-card-body {
  padding: 24px;
}

.category-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.category-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-accent);
  transition: gap 0.3s ease;
}

.category-link:hover {
  gap: 10px;
}

.category-link svg {
  width: 16px;
  height: 16px;
}

/* ── WHY CHOOSE US ───────────────────────── */

.why-us {
  padding: 96px 0;
  background: var(--color-bg-alt);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.feature-item {
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.feature-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.why-us-image {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.why-us-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, #C5BFB8, #AEA8A0);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.why-us-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

/* ── FOOTER ──────────────────────────────── */

.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-footer-text);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-footer-text);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-hours {
  margin-top: 20px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours-row .day {
  color: var(--color-footer-text);
}

.footer-hours-row .time {
  color: var(--color-white);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(197, 191, 184, 0.6);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  color: var(--color-footer-text);
}

.footer-socials a:hover svg {
  color: var(--color-white);
}

/* ── SUB PAGE HERO ───────────────────────── */

.page-hero {
  margin-top: var(--nav-height);
  padding: 80px 0 64px;
  background: var(--color-bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ──────────────────────────── */

.about-section {
  padding: 80px 0;
}

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

.about-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--color-bg-alt);
  border-radius: 8px;
}

.about-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  display: block;
}

.about-stat .label {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.about-image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* ── PRODUCTS PAGE ───────────────────────── */

.products-section {
  padding: 80px 0;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

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

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.product-card-body .product-cat {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
  line-height: 1.6;
}

/* ── CONTACT PAGE ────────────────────────── */

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-card {
  background: var(--color-card-bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.3s ease;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.contact-info-card {
  background: var(--color-card-bg);
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.contact-info-card h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.map-placeholder {
  margin-top: 8px;
  aspect-ratio: 16/9;
  background: var(--color-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
}

/* ── ANIMATIONS ──────────────────────────── */

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────── */

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    padding: 32px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stat-card {
    left: 16px;
    bottom: -16px;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    aspect-ratio: 16/9;
    order: -1;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .trust-bar .container {
    flex-direction: column;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */

.contact-cards {
  padding: 0 0 60px;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: #f5f0e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #B8860B;
}
.contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.contact-card p {
  color: #5a5247;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-card-sub {
  font-size: 0.85rem !important;
  color: #8a7e6b !important;
}
.contact-card-link {
  display: inline-block;
  margin-top: 10px;
  color: #B8860B;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.contact-card-link:hover {
  text-decoration: underline;
}

/* Form + Map grid */
.contact-main {
  padding: 0 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-wrapper {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 14px;
  padding: 40px;
}
.contact-form-wrapper h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  color: #5a5247;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d4cdc0;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #faf8f5;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.form-success {
  text-align: center;
  padding: 28px;
  margin-top: 20px;
  background: #f0f7f0;
  border-radius: 10px;
  border: 1px solid #c3dfc3;
}
.form-success svg {
  width: 36px;
  height: 36px;
  stroke: #3a8a3a;
  margin-bottom: 10px;
}
.form-success p {
  color: #2d6b2d;
  font-size: 0.95rem;
}

/* Map side */
.contact-map {
  position: sticky;
  top: 100px;
}
.map-placeholder {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e0d4;
}
.map-placeholder svg,
.map-placeholder iframe {
  display: block;
  width: 100%;
  height: auto;
}
.map-info {
  padding: 28px 0 0;
}
.map-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.map-info > p {
  color: #5a5247;
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.map-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  color: #5a5247;
}
.map-hours-row strong {
  color: #1a1a1a;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 28px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-map {
    position: static;
  }
}
