@charset "UTF-8";

/* ===========================
   だるまや呉服店 - スタイルシート
   和モダンデザイン
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --color-base: #FDFBF7;
  --color-accent: #8E2323;
  --color-accent-light: #B84444;
  --color-navy: #1A2F4A;
  --color-navy-light: #2A4A6A;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-gold: #C9A227;
  --color-gold-light: #E5C55A;

  /* Fonts */
  --font-heading: 'Shippori Mincho', serif;
  --font-body: 'Noto Sans JP', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-base: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-accent-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.section-title .subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 15px;
  letter-spacing: 0.1em;
}

/* ===========================
   Header
   =========================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--color-navy);
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-base);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--color-accent);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition-base);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 30px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(142, 35, 35, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h2 {
  color: white;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  opacity: 1;
  margin-bottom: 40px;
  line-height: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(142, 35, 35, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(142, 35, 35, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--color-navy);
}

/* ===========================
   About Section (当店のこだわり)
   =========================== */
.about {
  padding: var(--section-padding);
  background: var(--color-base);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.about-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-base), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
  margin-bottom: 15px;
  color: var(--color-navy);
}

.about-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ===========================
   Services Section
   =========================== */
.services {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #f8f6f2 0%, var(--color-base) 100%);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even)>* {
  direction: ltr;
}

.service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-base);
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top,
      rgba(26, 47, 74, 0.3) 0%,
      transparent 50%);
  pointer-events: none;
}

.service-content h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.service-content h3::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: var(--color-accent);
  border-radius: 2px;
}

.service-content .lead {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-content p {
  color: var(--color-text-light);
  margin-bottom: 25px;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.service-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-gold-light);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===========================
   Access Section
   =========================== */
.access {
  padding: var(--section-padding);
  background: var(--color-navy);
  color: white;
}

.access .section-title h2 {
  color: white;
}

.access .section-title .subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.access-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0;
  color: white;
}

.shop-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.shop-brand .logo-image {
  height: 50px;
  width: auto;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-label {
  width: 100px;
  flex-shrink: 0;
  font-weight: 500;
  color: var(--color-gold-light);
}

.info-value {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.access-route {
  margin-top: 30px;
  padding: 25px;
  background: rgba(142, 35, 35, 0.2);
  border-radius: 15px;
  border-left: 4px solid var(--color-accent);
}

.access-route h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-route ul {
  list-style: none;
}

.access-route li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-route li::before {
  content: '🚃';
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
  padding: var(--section-padding);
  background: var(--color-base);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-navy) 100%);
  color: white;
  padding: 50px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-info h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.9;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.75rem;
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

.contact-phone::before {
  content: '📞';
  font-size: 1.5rem;
}

.contact-hours {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-navy);
}

.form-group label .required {
  color: var(--color-accent);
  margin-left: 5px;
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8e6e2;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--color-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(142, 35, 35, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn {
  min-width: 250px;
}

/* ===========================
   News / Campaign Section
   =========================== */
.news {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--color-base) 0%, #f8f6f2 100%);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card.is-hidden {
  display: none !important;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.news-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.08);
}

.news-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 1;
}

.news-badge.campaign {
  background: var(--color-accent);
  color: white;
}

.news-badge.info {
  background: var(--color-gold);
  color: white;
}

.news-card-body {
  padding: 25px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.news-card-body h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.news-read-more {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.news-card:hover .news-read-more {
  gap: 10px;
  color: var(--color-accent-light);
}

.news-read-more::after {
  content: '→';
  transition: var(--transition-base);
}

/* --- News Sub List --- */
.news-sub-list {
  margin-top: 50px;
  border-top: 1px solid rgba(26, 47, 74, 0.1);
  padding-top: 40px;
}

.news-sub-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.news-sub-title::before,
.news-sub-title::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.news-sub-items {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(26, 47, 74, 0.05);
}

.news-sub-item {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition-base);
  font-size: 0.95rem;
  position: relative;
}

.news-sub-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: #f0edf8;
}

.news-sub-item:last-child::after {
  display: none;
}

.news-sub-item:hover {
  background-color: var(--color-base);
}

.news-sub-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 120px;
  flex-shrink: 0;
}

.news-sub-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-align: center;
  min-width: 85px;
  letter-spacing: 0.05em;
}

.news-sub-badge.campaign {
  background: var(--color-accent);
}

.news-sub-badge.info {
  background: var(--color-gold);
}

.news-sub-text {
  flex-grow: 1;
  font-weight: 500;
  color: var(--color-navy);
  transition: var(--transition-base);
  padding-right: 20px;
}

.news-sub-arrow {
  font-size: 1rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  font-weight: bold;
}

.news-sub-item:hover .news-sub-text {
  color: var(--color-accent);
}

.news-sub-item:hover .news-sub-arrow {
  transform: translateX(6px);
}

/* ===========================
   Footer
   =========================== */
footer {
  background: var(--color-navy);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links h4 {
  color: var(--color-gold-light);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
  padding: 8px 0;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: white;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-item {
    gap: 40px;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  /* --- Global --- */
  :root {
    --section-padding: 50px 0;
  }

  html {
    scroll-padding-top: 70px;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    padding-bottom: 15px;
  }

  /* --- Header --- */
  header .container {
    padding: 10px 16px;
  }

  .logo-image {
    height: 38px;
  }

  .logo-text h1 {
    font-size: 1.15rem;
  }

  .logo-text span {
    font-size: 0.65rem;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-base);
    padding: 10px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
  }

  /* --- Hero --- */
  .hero {
    min-height: 85vh;
    padding-top: 60px;
  }

  .hero-content {
    padding: 30px 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 18px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
  }

  .hero h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }


  /* --- News --- */
  .news {
    padding: 50px 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .news-card-image {
    height: 180px;
  }

  .news-card-body {
    padding: 20px;
  }

  .news-card-body h3 {
    font-size: 1.05rem;
  }

  /* --- News Sub List Mobile --- */
  .news-sub-list {
    margin-top: 40px;
    padding-top: 30px;
  }

  .news-sub-title {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }

  .news-sub-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 8px;
  }

  .news-sub-item::after {
    left: 20px;
    right: 20px;
  }

  .news-sub-meta {
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
  }

  .news-sub-text {
    padding-right: 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .news-sub-arrow {
    display: none;
  }

  /* --- About --- */
  .about {
    padding: 50px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .about-card {
    padding: 30px 24px;
  }

  .about-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .about-card:hover {
    transform: none;
  }

  .about-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .about-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .about-card p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* --- Services --- */
  .services {
    padding: 50px 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

  .service-item:nth-child(even) {
    direction: ltr;
  }

  .service-image {
    border-radius: 16px;
  }

  .service-image img {
    height: 220px;
  }

  .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .service-content h3::before {
    left: -14px;
    width: 3px;
  }

  .service-content .lead {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .service-list li {
    font-size: 0.88rem;
    gap: 10px;
  }

  .service-list li::before {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }

  /* --- Access --- */
  .access {
    padding: 50px 0;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-info {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .shop-brand {
    margin-bottom: 20px;
  }

  .shop-brand .logo-image {
    height: 38px;
  }

  .shop-name {
    font-size: 1.3rem;
  }

  .info-list li {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }

  .info-label {
    width: auto;
    font-size: 0.85rem;
  }

  .info-value {
    font-size: 0.95rem;
  }

  .access-route {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
  }

  .access-route h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .access-route li {
    font-size: 0.88rem;
    padding: 6px 0;
  }

  .map-container {
    border-radius: 16px;
  }

  .map-container iframe {
    height: 280px;
  }

  /* --- Contact --- */
  .contact {
    padding: 50px 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info {
    padding: 30px 24px;
    border-radius: 16px;
  }

  .contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.7;
  }

  .contact-phone {
    font-size: 1.4rem;
    margin-bottom: 10px;
    gap: 10px;
  }

  .contact-phone::before {
    font-size: 1.2rem;
  }

  .contact-hours {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    margin-top: 20px;
  }

  .form-submit .btn {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }

  /* --- Footer --- */
  footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .hero h2 {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .contact-phone {
    font-size: 1.2rem;
  }

  .service-image img {
    height: 180px;
  }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Decorative Elements */
.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}