/* SIR MENS - Main Stylesheet */

:root {
  --color-black: #0d0d0d;
  --color-charcoal: #2a2a2a;
  --color-dark: #141414;
  --color-grey: #5c5c5c;
  --color-light-grey: #8a8a8a;
  --color-border: #e8e8e4;
  --color-cream: #f7f7f5;
  --color-white: #ffffff;
  --color-teal: #1a9e96;
  --color-teal-hover: #148a83;
  --color-salmon: #e85d75;
  --color-olive: #6b7c47;
  --color-gold: #d4a012;
  --color-blue: #1e3a5f;
  --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --header-height: 80px;
  --header-top-height: 36px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--header-top-height) + 24px);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn-primary:hover {
  background-color: var(--color-teal-hover);
  border-color: var(--color-teal-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-grey);
  line-height: 1.7;
}

.section-header-light .section-tag {
  color: var(--color-gold);
}

.section-header-light .section-title {
  color: var(--color-white);
}

.section-header-light .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.header-contact-link:hover {
  color: var(--color-teal);
}

.header-hours {
  color: rgba(255, 255, 255, 0.65);
}

.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-grey);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-teal);
  background-color: rgba(26, 158, 150, 0.08);
}

.nav-cta {
  background-color: var(--color-teal);
  color: var(--color-white) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background-color: var(--color-teal-hover) !important;
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: all var(--transition);
}

.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);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--header-top-height) + 60px) 0 80px;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(20, 20, 20, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(26, 158, 150, 0.25);
  border: 1px solid rgba(26, 158, 150, 0.5);
  color: #5eead4;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--color-salmon);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Shop / Products */
.shop {
  background-color: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: var(--color-border);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background-color: var(--color-teal);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-tag-hot {
  background-color: var(--color-salmon);
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: var(--color-grey);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-teal);
}

.shop-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26, 158, 150, 0.08) 0%, rgba(232, 93, 117, 0.06) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.shop-cta p {
  font-size: 17px;
  color: var(--color-grey);
  margin-bottom: 20px;
}

/* About */
.about {
  background-color: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--color-salmon);
  color: var(--color-white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
}

.about-badge strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-badge span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}

.about-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-grey);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin: 28px 0 32px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--color-charcoal);
}

.about-features svg {
  flex-shrink: 0;
  color: var(--color-teal);
  margin-top: 2px;
}

/* Collections */
.collections {
  background-color: var(--color-charcoal);
  background-image: linear-gradient(180deg, var(--color-dark) 0%, var(--color-charcoal) 100%);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all var(--transition);
}

.collection-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collection-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.collection-icon-teal {
  background-color: rgba(26, 158, 150, 0.25);
  color: #5eead4;
}

.collection-icon-salmon {
  background-color: rgba(232, 93, 117, 0.25);
  color: #f9a8b4;
}

.collection-icon-gold {
  background-color: rgba(212, 160, 18, 0.25);
  color: #fcd34d;
}

.collection-icon-blue {
  background-color: rgba(30, 58, 95, 0.4);
  color: #93c5fd;
}

.collection-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.collection-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.collection-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
}

.collection-link:hover {
  color: #5eead4;
}

/* Gallery */
.gallery {
  background-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background-color: var(--color-dark);
  background-image: linear-gradient(180deg, var(--color-blue) 0%, var(--color-dark) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-teal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-card footer span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.footer-brand-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.footer-brand-tag {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-contact-item:hover {
  color: var(--color-white);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-teal);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.footer-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer-form-wrap > p {
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 13px;
  text-align: center;
  min-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.form-note.success {
  color: #5eead4;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }

  .gallery-item {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .header-top-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + var(--header-top-height));
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .section {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 320px;
  }

  .products-grid,
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .brand-sub {
    display: none;
  }

  .header-top-left {
    gap: 12px;
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
