/* =============================================
   Sur la Seine — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  background-color: #ffffff;
  color: #222222;
  font-size: 15px;
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 60px 0; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #eeeeee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px;
  width: auto;
}

/* Top contact bar */
.header-contact {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: #555;
}

.header-contact a:hover { color: #222; }

/* Nav */
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  border-bottom-color: #333;
  text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #333;
}

/* =============================================
   HERO / TWO-COLUMN SECTIONS
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.two-col-text p {
  line-height: 2;
  color: #444;
}

/* =============================================
   VIDEO EMBED
   ============================================= */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   CONTACT INFO BOX
   ============================================= */
.contact-info {
  background: #f9f9f9;
  padding: 40px 48px;
  border-left: 3px solid #d4c8b8;
}

.contact-info h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: #333;
}

.contact-info p {
  margin-bottom: 6px;
  color: #555;
  font-size: 14px;
}

.contact-info a { color: #555; }
.contact-info a:hover { color: #222; text-decoration: underline; }

/* =============================================
   COLLECTION SECTION HEADING
   ============================================= */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-heading p {
  color: #888;
  font-size: 14px;
}

/* =============================================
   PHOTO GRIDS
   ============================================= */

/* 4-column product grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* 3-column grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 2-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.2s;
}

.grid-item img:hover { opacity: 0.88; }

.grid-item .caption {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* Tall product images (vests hung on wall) */
.grid-4 .grid-item img {
  height: 320px;
  object-fit: cover;
}

/* =============================================
   MAP EMBED
   ============================================= */
.map-wrapper {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 2px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   DIVIDER
   ============================================= */
.divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 0;
}

/* =============================================
   PAGE HERO TITLE
   ============================================= */
.page-title {
  padding: 60px 0 40px;
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 300;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-name {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
  font-weight: 400;
}

.bio-text {
  margin-bottom: 28px;
  color: #444;
  line-height: 2;
}

.credentials li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.credentials li:first-child { border-top: 1px solid #f0f0f0; }

/* =============================================
   PRODUCT ITEM WITH LABEL
   ============================================= */
.product-item {
  text-align: center;
}

.product-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-item h3 {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #444;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #f5f5f5;
  padding: 48px 32px;
  margin-top: 60px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 44px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #777;
}

.footer-links a:hover { color: #333; text-decoration: underline; }

.footer-contact {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.footer-contact a { color: #888; }
.footer-contact a:hover { color: #555; }

.footer-copy {
  font-size: 12px;
  color: #aaa;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .header-inner { padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
  .header-contact { display: none; }
  nav ul { gap: 18px; }
  nav ul li a { font-size: 13px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-info { padding: 28px 20px; }
  section { padding: 40px 0; }
  .page-title { padding: 40px 0 24px; }
  .page-title h1 { font-size: 2.2rem; }
}
