/* =====================================================
   SEWING HUT CALGARY – Stylesheet
   ===================================================== */

:root {
  --red:        #CC1515;
  --red-dark:   #a51010;
  --red-light:  #f9e8e8;
  --black:      #111111;
  --dark:       #1e1e1e;
  --grey:       #6b6b6b;
  --mid-grey:   #d1d1d1;
  --light-grey: #f5f4f2;
  --warm-white: #fffaf6;
  --white:      #ffffff;
  --gold:       #C9A84C;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.13);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-h: 72px;
}

*, *::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(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 96px 0; }
.bg-light { background: var(--light-grey); }
.bg-red   { background: var(--red); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* Typography */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: .07em; }
p  { color: var(--grey); }

.section-tag {
  display: inline-block;
  font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); background: var(--red-light);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-header { max-width: 620px; }
.section-header.text-center { margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-body); transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,21,21,.35); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red-light); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--dark); border: 2px solid var(--white); }
.btn-white:hover { background: var(--light-grey); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-google { background: var(--white); color: var(--dark); border: 2px solid var(--mid-grey); box-shadow: var(--shadow-sm); padding: 14px 32px; }
.btn-google:hover { box-shadow: var(--shadow-md); border-color: #aaa; transform: translateY(-2px); }
.btn-outline-footer { display: inline-flex; align-items: center; gap: 8px; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); padding: 10px 20px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; margin-top: 16px; transition: var(--transition); }
.btn-outline-footer:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======================================================
   HEADER
   ====================================================== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
#header.scrolled, #header.header-dark, #header.header-light {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar { display: flex; align-items: center; height: var(--header-h); gap: 24px; }

/* Logo */
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
.logo-img--footer { height: 44px; }

/* Nav */
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link { font-size: 0.88rem; font-weight: 500; padding: 8px 11px; border-radius: 6px; transition: var(--transition); color: var(--white); }
#header.scrolled .nav-link,
#header.header-dark .nav-link,
#header.header-light .nav-link { color: var(--dark); }
.nav-link:hover { background: rgba(255,255,255,.15); color: var(--white); }
#header.scrolled .nav-link:hover,
#header.header-dark .nav-link:hover,
#header.header-light .nav-link:hover,
#header.scrolled .nav-link.active,
#header.header-dark .nav-link.active,
#header.header-light .nav-link.active { background: var(--red-light); color: var(--red); }
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#header.scrolled .hamburger span,
#header.header-dark .hamburger span,
#header.header-light .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 999; }
.mobile-overlay.active { display: block; }

/* ======================================================
   HERO (Home)
   ====================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero--home {
  background: linear-gradient(135deg, #fdf8f3 0%, #f5ede0 100%);
  background-color: #fdf8f3;
}
.hero-overlay { position: absolute; inset: 0; background: none; }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: var(--header-h); }
.hero-badge { display: inline-block; background: rgba(204,21,21,.08); border: 1px solid rgba(204,21,21,.25); color: var(--red); font-size: 0.8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-content h1 { color: var(--dark); margin-bottom: 20px; text-shadow: none; }
.hero-sub { font-size: 1.1rem; color: var(--grey); max-width: 560px; margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(0,0,0,.3); font-size: 1.2rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ======================================================
   PAGE HERO (Inner pages)
   ====================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 64px;
  overflow: hidden;
  background-color: #1a0505;
}
.page-hero--services {
  background:
    linear-gradient(135deg, rgba(10,0,0,.82) 0%, rgba(30,5,5,.7) 100%),
    url('https://images.unsplash.com/photo-1610030469983-98e550d6193c?auto=format&fit=crop&w=1600&q=80')
    center 30% / cover no-repeat;
}
.page-hero--alterations {
  background:
    linear-gradient(135deg, rgba(10,0,0,.82) 0%, rgba(30,5,5,.7) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80')
    center center / cover no-repeat;
}
.page-hero--contact {
  background:
    linear-gradient(135deg, rgba(10,0,0,.82) 0%, rgba(30,5,5,.7) 100%),
    url('https://images.unsplash.com/photo-1571513722275-4b41940f54b8?auto=format&fit=crop&w=1600&q=80')
    center center / cover no-repeat;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.4) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero-content h1 { color: var(--white); margin: 14px 0 18px; }
.page-hero-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: rgba(255,255,255,.9); }

/* ======================================================
   STATS BAR
   ====================================================== */
.stats-bar { background: var(--black); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stat-item { text-align: center; padding: 16px; }
.stat-number { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-plus { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); font-weight: 700; margin-left: 2px; vertical-align: top; }
.stat-label { display: block; font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-top: 6px; }
.stat-divider { width: 1px; height: 52px; background: rgba(255,255,255,.12); }

/* ======================================================
   ABOUT
   ====================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-card:hover img { transform: scale(1.04); }
.about-badge-float { position: absolute; bottom: -24px; right: -24px; background: var(--red); color: var(--white); width: 108px; height: 108px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 8px 24px rgba(204,21,21,.4); line-height: 1.3; border: 4px solid var(--white); }
.about-years { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.about-years sup { font-size: 1rem; }
.about-content h2 { margin-bottom: 18px; }
.about-content p { margin-bottom: 16px; font-size: 1.02rem; }
.about-highlights { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-highlights li { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; font-weight: 500; color: var(--dark); }
.about-highlights li i { color: var(--red); font-size: 1.1rem; flex-shrink: 0; }
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ======================================================
   SERVICES GRID (Home overview)
   ====================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-icon { width: 54px; height: 54px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--red); margin-bottom: 18px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--black); }
.service-card p { font-size: 0.92rem; line-height: 1.7; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-size: 0.88rem; font-weight: 600; margin-top: 16px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ======================================================
   SERVICE DETAIL (Services page)
   ====================================================== */
.service-detail { border-bottom: 1px solid #ebe5dc; }
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-detail-grid--reverse .service-detail-img { order: 2; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-content h2 { margin: 12px 0 18px; }
.service-detail-content p { margin-bottom: 16px; font-size: 1rem; }
.detail-list { margin: 20px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.detail-list li { display: flex; align-items: center; gap: 12px; font-size: 0.94rem; font-weight: 500; color: var(--dark); }
.detail-list li i { color: var(--red); flex-shrink: 0; }

/* Intro block */
.intro-block { max-width: 780px; margin: 0 auto; }
.intro-block h2 { margin-bottom: 16px; }

/* ======================================================
   ALTERATIONS PAGE
   ====================================================== */
.alt-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.alt-intro-grid h2 { margin-bottom: 16px; }
.alt-intro-grid p { font-size: 1rem; margin-bottom: 14px; }
.alt-intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.alt-stat-card { background: var(--warm-white); border: 1px solid #ece5d8; border-radius: var(--radius); padding: 24px 16px; text-align: center; }
.alt-stat-card i { font-size: 1.6rem; color: var(--red); margin-bottom: 10px; }
.alt-stat-card span { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 6px; }
.alt-stat-card p { font-size: 0.8rem; color: var(--grey); margin: 0; }

.alt-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.alt-cat-card { background: var(--white); border: 1px solid #e8e2d8; border-radius: var(--radius); padding: 32px 26px; transition: var(--transition); }
.alt-cat-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.alt-cat-icon { width: 50px; height: 50px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.25rem; margin-bottom: 16px; transition: var(--transition); }
.alt-cat-card:hover .alt-cat-icon { background: var(--red); color: var(--white); }
.alt-cat-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.alt-cat-card > p { font-size: 0.88rem; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid #f0ebe3; }
.alt-cat-card ul { display: flex; flex-direction: column; gap: 8px; }
.alt-cat-card li { font-size: 0.88rem; color: var(--grey); padding-left: 16px; position: relative; }
.alt-cat-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { text-align: center; padding: 32px 20px; }
.process-num { width: 52px; height: 52px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin: 0 auto 18px; }
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; }

/* ======================================================
   WHY US
   ====================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 32px 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.why-card i { font-size: 2rem; color: var(--gold); margin-bottom: 18px; }
.why-card h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ======================================================
   GALLERY
   ====================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; background: linear-gradient(135deg, #f0e6d6 0%, #ddd0c0 100%); }
.gallery-item--large { aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 600; }

/* ======================================================
   REVIEWS
   ====================================================== */
.reviews-rating-bar { display: flex; align-items: center; gap: 40px; background: var(--warm-white); border: 1px solid #ece5d8; border-radius: var(--radius-lg); padding: 28px 36px; margin-bottom: 40px; }
.rating-summary { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rating-big { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--black); line-height: 1; }
.rating-stars { display: flex; gap: 3px; color: #FBBC05; font-size: 1.05rem; }
.rating-source { font-size: 0.8rem; color: var(--grey); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.review-card { background: var(--white); border: 1px solid #e8e4de; border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.review-header { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.reviewer-info strong { font-size: 0.94rem; color: var(--black); }
.review-stars { display: flex; gap: 2px; color: #FBBC05; font-size: 0.8rem; }
.review-text { font-size: 0.9rem; line-height: 1.7; color: var(--grey); flex: 1; font-style: italic; }
.review-date { font-size: 0.76rem; color: #bbb; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-main-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 18px; background: var(--white); border: 1px solid #e8e4de; border-radius: var(--radius); padding: 22px 20px; transition: var(--transition); }
.contact-info-card--featured { border-color: var(--red); background: #fef8f8; }
.contact-info-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.cic-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-card h3 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--grey); margin-bottom: 6px; }
.cic-main { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 4px; display: block; }
.contact-info-card p { font-size: 0.9rem; margin: 0; }
.contact-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 600; font-size: 0.9rem; margin-top: 6px; transition: var(--transition); }
.contact-link:hover { gap: 10px; }

.hours-table-full { border-collapse: collapse; width: 100%; margin-top: 4px; }
.hours-table-full td { padding: 4px 0; font-size: 0.88rem; color: var(--grey); }
.hours-table-full td:first-child { font-weight: 600; color: var(--dark); width: 110px; }
.sunday-row td { padding-top: 8px; }

.contact-map-col { display: flex; flex-direction: column; gap: 16px; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 480px; background: var(--light-grey); }
.directions-btn { align-self: flex-start; gap: 10px; }

/* Getting here */
.getting-here-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.getting-here-card { background: var(--white); border: 1px solid #e8e2d8; border-radius: var(--radius); padding: 30px 24px; }
.getting-here-card i { font-size: 1.8rem; color: var(--red); margin-bottom: 16px; }
.getting-here-card h4 { margin-bottom: 10px; }
.getting-here-card p { font-size: 0.92rem; }

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner { background: var(--red); padding: 72px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ======================================================
   FOOTER
   ====================================================== */
.footer { background: #0e0e0e; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 16px 0 14px; }
.footer-email { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 0.9rem; transition: var(--transition); }
.footer-email:hover { color: var(--white); }
.footer-links h5, .footer-services h5, .footer-contact h5 { color: rgba(255,255,255,.85); margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: .08em; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-services ul { display: flex; flex-direction: column; gap: 8px; }
.footer-services li { color: rgba(255,255,255,.5); font-size: 0.88rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.footer-contact i { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-seo-note { font-style: italic; }

/* Back to top */
.back-to-top { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 44px; height: 44px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 4px 16px rgba(204,21,21,.4); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .3s, transform .3s; }
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ======================================================
   SUITS SHOWCASE (Home)
   ====================================================== */
.suits-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.suit-img-card--tall { grid-row: span 2; }
.suit-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #f0e6d6, #ddd0c0);
}
.suit-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.suit-img-card:hover img { transform: scale(1.06); }
.suit-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 24px 16px 14px;
}

/* ======================================================
   ALTERATIONS FEATURE (Home)
   ====================================================== */
.alt-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alt-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.alt-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.alt-feature-img:hover img { transform: scale(1.04); }
.alt-feature-content h2 { margin-bottom: 18px; }
.alt-feature-content p { font-size: 1rem; margin-bottom: 24px; }
.alt-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.alt-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}
.alt-feat-item i { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }

/* ======================================================
   SERVICES PAGE – image enhancements
   ====================================================== */
.service-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
/* ======================================================
   CONTACT PAGE – image strip
   ====================================================== */
.contact-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.contact-img-strip-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0e6d6, #ddd0c0);
}
.contact-img-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.contact-img-strip-item:hover img { transform: scale(1.04); }

.service-img-strip-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0e6d6, #ddd0c0);
}
.service-img-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-img-strip-item:hover img { transform: scale(1.06); }

/* ======================================================
   ALTERATIONS PAGE – category images
   ====================================================== */
.alt-page-img-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.alt-page-img-row .gallery-item { aspect-ratio: 3/4; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .suits-img-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .alt-feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .alt-page-img-row { grid-template-columns: repeat(2, 1fr); }
  .service-img-strip { grid-template-columns: 1fr 1fr; }
  .contact-img-strip { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-grid--reverse .service-detail-img { order: 0; }
  .alt-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
  .getting-here-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-intro-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section-padding { padding: 64px 0; }

  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 280px; flex-direction: column; align-items: flex-start; justify-content: flex-start; background: var(--white); padding: calc(var(--header-h) + 24px) 28px 40px; gap: 4px; z-index: 1001; box-shadow: -8px 0 32px rgba(0,0,0,.15); transition: right .35s cubic-bezier(.4,0,.2,1); }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--dark) !important; font-size: 1rem; width: 100%; }
  .nav-link:hover, .nav-link.active { background: var(--red-light) !important; color: var(--red) !important; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .suits-img-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .alt-feature-list { grid-template-columns: 1fr; }
  .alt-page-img-row { grid-template-columns: repeat(2, 1fr); }
  .contact-img-strip { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .reviews-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(2) { display: none; }
  .reviews-rating-bar { flex-direction: column; align-items: flex-start; padding: 20px; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; max-width: 280px; }
  .alt-categories-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .getting-here-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .alt-intro-stats { grid-template-columns: repeat(3,1fr); }
  .map-wrapper { height: 320px; }
}

@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { aspect-ratio: 4/3; }
  .about-badge-float { right: 0; bottom: -16px; width: 90px; height: 90px; }
  .process-grid { grid-template-columns: 1fr; }
  .alt-intro-stats { grid-template-columns: 1fr; }
}
