/* ============================================================
   Tourism Artists - Main Stylesheet
   Mobile-First, Flexbox + CSS Grid
   Palette:
     --teal:   #1D6B85
     --amber:  #F0A020
     --dark:   #0F2530
============================================================ */

:root {
  --teal:       #1D6B85;
  --teal-dark:  #145570;
  --teal-light: #2A8AAA;
  --amber:      #F0A020;
  --amber-dark: #D18A12;
  --dark:       #0F2530;
  --dark-mid:   #172D3A;
  --text:       #1A2B35;
  --text-light: #4A6370;
  --bg-light:   #F2F6F8;
  --white:      #FFFFFF;
  --border:     #D8E4EA;

  --font-head:  'Raleway', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 20px rgba(15,37,48,.10);
  --shadow-lg:  0 8px 40px rgba(15,37,48,.16);
  --container:  1180px;
}

/* ---- Reset ---- */
*, *::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(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: 4.5rem; }
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--dark-mid); color: var(--white); }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

.section__label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.section__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 8px;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--white); }

.section__lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 740px;
  margin-bottom: 1rem;
}
.section__lead--light { color: rgba(255,255,255,.80); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.10); }
.btn--large { font-size: 1rem; padding: 1rem 2.2rem; }
.btn--full { width: 100%; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  /* subtle gradient so logo is always readable */
  background: linear-gradient(to bottom, rgba(15,37,48,.75) 0%, transparent 100%);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}

/* Logo in a white container so teal+amber colours show on dark header */
.nav__logo {
  background: var(--white);
  border-radius: 8px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* mobile nav */
.nav__list {
  display: none;
  flex-direction: column;
  position: fixed;
  inset-block-start: 72px;
  inset-inline: 0;
  background: var(--dark);
  padding: 1.5rem 1.25rem 2rem;
  gap: 0.2rem;
}
.nav__list.open { display: flex; }

.nav__link {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  padding: 0.6rem 0.5rem;
  border-radius: 4px;
  transition: color .2s;
}
.nav__link:hover,
.nav__link.active { color: var(--amber); }

.nav__link--cta {
  margin-top: 0.5rem;
  background: var(--amber);
  color: var(--dark);
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}
.nav__link--cta:hover { background: var(--amber-dark); color: var(--dark); }

/* dropdown (mobile: flat list) */
.nav__dropdown {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.15rem;
}
.nav__dropdown a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  transition: color .2s;
}
.nav__dropdown a:hover { color: var(--amber); }

/* ============================================================
   HERO (homepage - full viewport)
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,25,35,.85) 0%, rgba(10,25,35,.55) 60%, rgba(10,25,35,.25) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 4rem;
}
.hero__tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero__description {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 600px;
  margin-bottom: 2.25rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  background-color: var(--dark-mid);
  background-size: cover;
  background-position: center;
  padding-block-end: 2.5rem;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,35,.90) 0%, rgba(10,25,35,.45) 60%, rgba(10,25,35,.20) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.5rem;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.page-hero__breadcrumb a:hover { color: var(--amber); }
.page-hero__breadcrumb span { margin-inline: 0.4rem; }
.page-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 640px;
}

/* ============================================================
   OFFER CARDS (with image)
============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.offer-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.offer-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.offer-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.offer-card__desc {
  font-size: 0.92rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1.25rem;
}
.offer-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal);
  transition: gap .2s;
}
.offer-card__link::after { content: '→'; }
.offer-card__link:hover { gap: 0.7rem; }

/* ============================================================
   FEATURE / WHY-US ITEMS
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.feature-item__num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.feature-item p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   STANDARDS (dark bg)
============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.standard-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.standard-item__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--amber);
}
.standard-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.standard-item p { font-size: 0.9rem; color: rgba(255,255,255,.75); }

/* ============================================================
   CLIENT CARDS
============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--teal);
  transition: border-color .22s, transform .22s;
}
.client-card:hover { border-left-color: var(--amber); transform: translateY(-2px); }
.client-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.client-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   TAILOR-MADE
============================================================ */
.tailor-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.tailor-text p {
  color: rgba(255,255,255,.80);
  margin-bottom: 1rem;
}
.tailor-list h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 1rem;
}
.tailor-list ul { display: flex; flex-direction: column; gap: 0.5rem; }
.tailor-list li {
  position: relative;
  color: rgba(255,255,255,.80);
  font-size: 0.95rem;
  padding-left: 1.25rem;
}
.tailor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item[open] { border-color: var(--teal-light); }
.faq-item__q {
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] .faq-item__q { color: var(--teal); }
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}
.faq-item__a p { padding-top: 1rem; }

/* ============================================================
   INTRO STATS
============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-box__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.25rem;
  word-break: break-word;
}
.stat-box__label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  color: var(--white);
  text-align: center;
  padding-block: 5rem;
}
.cta-banner__title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-banner__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}
.cta-banner__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 1rem; }
.contact-address {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.92rem;
}
.contact-address p { margin-bottom: 0.5rem; color: var(--text); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-top: 0.75rem; }

/* ============================================================
   ABOUT TEXT
============================================================ */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-text p {
  color: rgba(255,255,255,.80);
  margin-bottom: 1rem;
}
.mission-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.mission-box h3 {
  font-size: 1.2rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.mission-box p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0.75rem;
}

/* ============================================================
   PRODUCT LIST (on category pages)
============================================================ */
.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.product-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.product-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.65em;
}
.product-item p { font-size: 0.95rem; color: var(--text); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.70);
  padding-block: 3rem 1.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* show original logo in white container */
  background: white;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.60);
  transition: color .2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-col p { font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
  margin-top: 1rem;
}

/* Content photo grids inside subpages */
.section--photos { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.content-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0;
}
.content-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.site-credit {
  background: rgba(0,0,0,.25);
  text-align: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-credit p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}
.credit-logo {
  height: 16px;
  width: auto;
  max-width: 80px;
  opacity: 0.6;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
  display: inline-block;
}
.site-credit a:hover .credit-logo { opacity: 1; }

/* ============================================================
   BREAKPOINTS
============================================================ */
@media (min-width: 640px) {
  .stats-row      { grid-template-columns: repeat(4, 1fr); }
  .offer-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid   { grid-template-columns: repeat(2, 1fr); }
  .product-list   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  /* desktop nav */
  .nav__toggle { display: none; }
  .nav__list {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    gap: 0.15rem;
    align-items: center;
  }
  .nav__link { font-size: 0.88rem; padding: 0.45rem 0.75rem; }
  .nav__link--cta { margin-top: 0; padding: 0.5rem 1.1rem; }

  /* dropdown desktop */
  .nav__item--has-dropdown { position: relative; }
  .nav__dropdown {
    display: none;
    position: absolute;
    inset-block-start: 100%;
    inset-inline-start: 0;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 0.5rem;
    padding-top: 0.75rem;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
  }
  .nav__item--has-dropdown:hover .nav__dropdown { display: flex; }
  .nav__dropdown a { border-radius: 6px; padding: 0.5rem 0.75rem; }

  /* layouts */
  .offer-grid     { grid-template-columns: repeat(3, 1fr); }
  .features-grid  { grid-template-columns: repeat(3, 1fr); }
  .standards-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid   { grid-template-columns: repeat(3, 1fr); }
  .product-list   { grid-template-columns: repeat(3, 1fr); }
  .tailor-layout  { flex-direction: row; gap: 5rem; align-items: flex-start; }
  .tailor-text    { flex: 1; }
  .tailor-list    { width: 300px; flex-shrink: 0; }
  .about-layout   { display: grid; grid-template-columns: 1fr 400px; align-items: start; gap: 4rem; }
  .contact-layout { flex-direction: row; align-items: flex-start; }
  .contact-info   { flex: 1; }
  .contact-form-wrap { flex: 1.2; }
  .footer-inner   { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; }
}

@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}
