/* TOPSELL TRADING LTD — wine, terracotta, warm cream (bag & luggage trade) */

:root {
  --bg: #f4f0eb;
  --surface: #fffbf7;
  --ink: #2a1810;
  --muted: #6b5346;
  --accent: #c45c3e;
  --accent-deep: #5c1f2e;
  --line: rgba(44, 24, 16, 0.12);
  --shadow: 0 20px 44px rgba(92, 31, 46, 0.12);
  --radius: 12px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, .ts-display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ts-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.ts-header__inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.ts-logo img {
  height: 42px;
  width: auto;
}

.ts-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
}

.ts-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  opacity: 0.88;
}

.ts-nav a:hover,
.ts-nav a.is-active {
  opacity: 1;
  color: var(--accent-deep);
}

.ts-menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--accent-deep);
}

@media (max-width: 768px) {
  .ts-menu-btn {
    display: inline-flex;
  }
  .ts-nav {
    position: absolute;
    right: 1rem;
    top: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .ts-nav.is-open {
    display: block;
  }
  .ts-nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.ts-main {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.15rem 0 3.25rem;
}

/* Hero */
.ts-hero {
  position: relative;
  min-height: min(680px, 90vh);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 2.35rem;
  box-shadow: var(--shadow);
}

.ts-hero__slides {
  position: absolute;
  inset: 0;
}

.ts-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.ts-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.ts-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(110deg, rgba(92, 31, 46, 0.82) 0%, rgba(92, 31, 46, 0.38) 45%, rgba(42, 24, 16, 0.62) 100%);
}

.ts-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 2.75rem) 4.75rem;
  color: #fdf6f0;
}

.ts-hero__panes {
  min-height: 11.25rem;
}

.ts-hero__pane {
  display: none;
}

.ts-hero__pane.is-active {
  display: block;
  animation: ts-fade 420ms ease;
}

@keyframes ts-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ts-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-family: "DM Sans", sans-serif;
  color: rgba(232, 196, 184, 0.98);
  margin: 0 0 0.6rem;
}

.ts-hero__pane h1,
.ts-hero__pane h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.8rem;
  color: #fff;
}

.ts-lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  max-width: 48ch;
  opacity: 0.94;
}

.ts-hero__cta {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.28rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.ts-btn:hover {
  transform: translateY(-1px);
}

.ts-btn--solid {
  background: var(--accent);
  color: #fffaf7;
  border-color: rgba(196, 92, 62, 0.45);
}

.ts-btn--solid:hover {
  background: #d66d4f;
}

.ts-btn--line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.ts-btn--line:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ts-hero__prev,
.ts-hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(42, 24, 16, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.ts-hero__prev:hover,
.ts-hero__next:hover {
  background: rgba(42, 24, 16, 0.55);
}

.ts-hero__prev {
  left: 0.75rem;
}

.ts-hero__next {
  right: 0.75rem;
}

.ts-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(42, 24, 16, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ts-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.ts-hero__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .ts-hero__prev,
  .ts-hero__next {
    display: none;
  }
  .ts-hero {
    min-height: min(600px, 88vh);
  }
}

/* Sections */
.ts-section {
  margin-bottom: 2.75rem;
}

.ts-section__head {
  margin-bottom: 1.25rem;
}

.ts-section__head .ts-kicker {
  color: var(--accent-deep);
  opacity: 0.88;
}

.ts-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0.35rem 0 0;
  color: var(--accent-deep);
}

/* Product grid */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .ts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ts-grid {
    grid-template-columns: 1fr;
  }
}

.ts-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(92, 31, 46, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ts-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe4dd;
}

.ts-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-card__body {
  padding: 0.95rem 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ts-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  color: var(--accent-deep);
}

.ts-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

/* Intro */
.ts-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.65rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.85rem);
  box-shadow: var(--shadow);
}

.ts-intro__media {
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  min-height: 270px;
}

.ts-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 270px;
}

.ts-intro__text h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  color: var(--accent-deep);
}

.ts-intro__text p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.97rem;
}

@media (max-width: 860px) {
  .ts-intro {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.ts-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .ts-testimonials {
    grid-template-columns: 1fr;
  }
}

.ts-quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(92, 31, 46, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ts-quote__stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.ts-quote__text {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink);
  flex: 1;
}

.ts-quote__who {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ts-quote__who img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.ts-quote__meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-deep);
}

.ts-quote__meta span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Message */
.ts-message {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ts-message__visual {
  min-height: 310px;
}

.ts-message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 310px;
}

.ts-message__form-wrap {
  padding: clamp(1.15rem, 3vw, 1.85rem);
}

.ts-message__form-wrap h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  color: var(--accent-deep);
}

.ts-message__form-wrap > p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.ts-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--accent-deep);
  margin-bottom: 0.28rem;
}

.ts-form input,
.ts-form textarea {
  width: 100%;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  margin-bottom: 0.8rem;
  background: #fff;
}

.ts-form textarea {
  min-height: 118px;
  resize: vertical;
}

.ts-form button {
  margin-top: 0.2rem;
  cursor: pointer;
  border: 0;
}

@media (max-width: 860px) {
  .ts-message {
    grid-template-columns: 1fr;
  }
  .ts-message__visual {
    order: -1;
    min-height: 210px;
  }
  .ts-message__visual img {
    min-height: 210px;
  }
}

/* Footer */
.ts-footer {
  background: var(--accent-deep);
  color: rgba(253, 246, 240, 0.92);
  margin-top: 1.75rem;
  padding: 2.35rem 0 1.85rem;
}

.ts-footer__inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.65rem;
}

@media (max-width: 900px) {
  .ts-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ts-footer__inner {
    grid-template-columns: 1fr;
  }
}

.ts-footer__brand img {
  height: 42px;
  width: auto;
  margin-bottom: 0.55rem;
}

.ts-footer__brand p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.88;
  max-width: 38ch;
}

.ts-footer h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  color: rgba(232, 196, 184, 0.95);
}

.ts-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.88;
  font-size: 0.9rem;
}

.ts-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.ts-footer__contact p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  opacity: 0.9;
}

.ts-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.ts-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.ts-social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ts-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ts-footer__bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1.6rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  opacity: 0.76;
  text-align: center;
}

/* About */
.ts-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.ts-about-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 270px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.ts-about-prose {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.9rem);
  box-shadow: var(--shadow);
}

.ts-about-prose h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  color: var(--accent-deep);
}

.ts-about-prose p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 1rem;
}

.ts-about-prose p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ts-about-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.ts-contact-banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.65rem;
  max-height: 320px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ts-contact-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ts-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.4vw, 1.65rem);
  box-shadow: var(--shadow);
}

.ts-contact-split__img {
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}

.ts-contact-split__img img {
  width: 100%;
  min-height: 290px;
  object-fit: cover;
}

.ts-contact-split__info h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  color: var(--accent-deep);
}

.ts-contact-split__info p {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.ts-contact-split__info a {
  color: var(--accent-deep);
  font-weight: 650;
}

@media (max-width: 768px) {
  .ts-contact-split {
    grid-template-columns: 1fr;
  }
}
