/* ===================================================
   The Winning Post, Spennymoor - British Country Pub
   =================================================== */

/* --- CSS Variables / Theme --- */
:root {
  --color-cream:       #FAF3E0;
  --color-warm-white:  #FFF8F0;
  --color-ivory:       #FFFDF7;
  --color-gold:        #C8A951;
  --color-gold-light:  #E8D48B;
  --color-gold-dark:   #A68B2D;
  --color-burgundy:    #6B1D2A;
  --color-burgundy-dark:#4E1520;
  --color-dark-wood:   #3B2314;
  --color-wood:        #5C3A1E;
  --color-wood-light:  #7A5230;
  --color-forest:      #2D5016;
  --color-forest-light:#3D6B20;
  --color-sage:        #8B9E6B;
  --color-text:        #2C1810;
  --color-text-light:  #5A4234;
  --color-text-muted:  #8B7B6B;
  --color-border:      #D4C4A8;
  --color-border-light:#E8DCC8;
  --font-heading:      'Playfair Display', 'Georgia', serif;
  --font-body:         'Lora', 'Georgia', serif;
  --font-accent:       'Cormorant Garamond', 'Georgia', serif;
  --shadow-sm:         0 2px 8px rgba(59, 35, 20, 0.08);
  --shadow-md:         0 4px 16px rgba(59, 35, 20, 0.12);
  --shadow-lg:         0 8px 32px rgba(59, 35, 20, 0.16);
  --shadow-xl:         0 16px 48px rgba(59, 35, 20, 0.2);
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --max-width:         1200px;
}

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

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

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

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

a {
  color: var(--color-burgundy);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark-wood);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.divider-icon {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.site-header {
  background: linear-gradient(135deg, var(--color-dark-wood) 0%, var(--color-burgundy-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-gold-light);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
  background: rgba(200, 169, 81, 0.1);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(59, 35, 20, 0.65) 0%,
    rgba(107, 29, 42, 0.55) 50%,
    rgba(59, 35, 20, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 800px;
}

.hero h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 3.25rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.hero .hero-subtitle {
  font-family: var(--font-accent);
  color: var(--color-gold-light);
  font-size: 1.35rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark-wood);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-dark-wood);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark-wood);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================================
   PAGE HEADER (inner pages)
   =================================================== */
.page-header {
  background: linear-gradient(135deg, var(--color-dark-wood) 0%, var(--color-burgundy-dark) 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A951' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.page-header .page-subtitle {
  font-family: var(--font-accent);
  color: var(--color-gold-light);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.page-header .breadcrumb {
  margin-top: 1rem;
  font-size: 0.9rem;
  position: relative;
}

.page-header .breadcrumb a {
  color: var(--color-gold-light);
}

.page-header .breadcrumb span {
  color: rgba(255,255,255,0.6);
}

/* ===================================================
   CONTENT SECTIONS
   =================================================== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--color-warm-white);
}

.section-dark {
  background: linear-gradient(135deg, var(--color-dark-wood), var(--color-burgundy-dark));
  color: var(--color-cream);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* --- Meta Box (homepage) --- */
.meta-box {
  background: var(--color-ivory);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.meta-box .meta-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-burgundy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.meta-box .meta-info {
  flex: 1;
}

.meta-box .meta-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark-wood);
  font-size: 1rem;
}

.meta-box .meta-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.meta-box .meta-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-left: auto;
}

.meta-box .meta-date time {
  font-weight: 600;
  color: var(--color-text-light);
}

/* --- Cards Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

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

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.75rem;
}

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

.card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Feature List --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.two-col-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===================================================
   ABOUT PAGE - Bio Section
   =================================================== */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.bio-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

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

.bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bio-avatar-burgundy { background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark)); }
.bio-avatar-forest   { background: linear-gradient(135deg, var(--color-forest), var(--color-forest-light)); }
.bio-avatar-wood     { background: linear-gradient(135deg, var(--color-wood), var(--color-wood-light)); }
.bio-avatar-gold     { background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)); color: var(--color-dark-wood); }

.bio-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-dark-wood);
  margin-bottom: 0.25rem;
}

.bio-role {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--color-gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bio-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-wood);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

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

/* Map placeholder */
.map-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ===================================================
   PRIVACY POLICY
   =================================================== */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-light);
}

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

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.policy-date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: linear-gradient(135deg, var(--color-dark-wood) 0%, #1a0e08 100%);
  color: var(--color-cream);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-gold);
}

.footer-about p {
  color: rgba(250, 243, 224, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-logo {
  height: 45px;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(250, 243, 224, 0.75);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(250, 243, 224, 0.75);
}

.footer-contact-icon {
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-item a {
  color: rgba(250, 243, 224, 0.75);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(200, 169, 81, 0.15);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 243, 224, 0.5);
}

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

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A951' fill-opacity='0.06'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ===================================================
   OPENING HOURS TABLE
   =================================================== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.75rem 0;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-dark-wood);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-light);
}

.hours-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  h1 { font-size: 2.25rem; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-dark-wood);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 0.85rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.1);
  }

  .header-inner {
    height: 70px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero { min-height: 420px; }
  .hero h1 { font-size: 2rem; }
  .hero .hero-subtitle { font-size: 1rem; }

  .section { padding: 3rem 0; }

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

  .page-header { padding: 2.5rem 0; }
  .page-header h1 { font-size: 2rem; }

  .policy-content {
    padding: 2rem 1.5rem;
  }

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

  .meta-box {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .meta-box .meta-date {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 1rem; }

  .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }

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