/* ============================
   CSS Variables & Reset
   ============================ */
:root {
  /* Brand Colors */
  --orange-main: #D4742A;
  --orange-dark: #B05010;
  --orange-light: #ECA060;
  --orange-pale: #FFF0E0;
  --orange-bg: #FEF8F2;

  /* Gray Palette */
  --gray-900: #1A1A1A;
  --gray-800: #2C2C2C;
  --gray-700: #3A3A3A;
  --gray-600: #5A5A5A;
  --gray-400: #9A9A9A;
  --gray-200: #E0E0E0;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;

  /* Neutral */
  --white: #FFFFFF;
  --cream: #F7F4F0;

  /* Typography */
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-heading: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --container-max: 1100px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

*, *::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(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================
   Layout
   ============================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

/* ============================
   Section Header
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange-main);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label.light { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 300;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-main);
  color: var(--white);
  border-color: var(--orange-main);
  box-shadow: 0 4px 20px rgba(212, 116, 42, 0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 116, 42, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-200);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--orange-main);
  color: var(--orange-main);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
  gap: 12px;
}
.btn-large span { display: flex; flex-direction: column; }
.btn-large small { font-size: 11px; font-weight: 400; opacity: 0.7; letter-spacing: 0.05em; }

/* ============================
   Header
   ============================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0;
}

.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  transition: padding 0.4s var(--ease);
}

.header.scrolled .header-inner {
  padding: 14px 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-store {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-main);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo-white .logo-store { color: rgba(255,255,255,0.85); }

.logo-img-white {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--orange-main);
  background: var(--orange-pale);
}

.nav-contact {
  background: var(--orange-main);
  color: var(--white) !important;
  border-radius: 20px;
  padding: 8px 18px;
}
.nav-contact:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* Header transparent mode */
.header:not(.scrolled) .logo-main { color: var(--gray-900); }
.header:not(.scrolled) .nav-link { color: var(--gray-700); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape1 {
  width: 700px; height: 700px;
  background: var(--orange-main);
  top: -200px; right: -100px;
  animation: float1 12s ease-in-out infinite;
}

.shape2 {
  width: 400px; height: 400px;
  background: var(--orange-light);
  bottom: -100px; left: -80px;
  opacity: 0.08;
  animation: float2 15s ease-in-out infinite;
}

.shape3 {
  width: 250px; height: 250px;
  background: var(--gray-400);
  top: 30%; right: 25%;
  opacity: 0.06;
  animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, 15px) rotate(20deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(212,116,42,0.15);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-title-jp {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.2em;
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-title-store {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  color: var(--orange-main);
  letter-spacing: 0.1em;
}

.hero-catch {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray-400);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================
   Notice Bar
   ============================ */
.notice-bar {
  background: var(--gray-900);
  color: var(--white);
  padding: 14px 0;
}

.notice-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice-label {
  background: var(--orange-main);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.notice-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* ============================
   About Section
   ============================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
}

.about-photo-placeholder {
  width: 100%;
  height: 480px;
  background: var(--gray-100);
  border-radius: 24px;
  border: 2px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 14px;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--orange-bg);
  border-radius: 14px;
  border-left: 3px solid var(--orange-main);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange-main);
  box-shadow: var(--shadow-sm);
}

.feature-item > div:not(.feature-icon) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.feature-item span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 300;
}

/* ============================
   Services Section
   ============================ */
.services {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange-main);
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--orange-main);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ============================
   Info Section
   ============================ */
.info {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-main);
  margin-bottom: 24px;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-100);
}
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 14px 0;
  font-size: 14px;
}

.hours-table .day {
  font-weight: 500;
  color: var(--gray-700);
  width: 55%;
}

.hours-table .time {
  font-weight: 700;
  color: var(--orange-main);
  font-family: var(--font-heading);
  font-size: 15px;
}

.time-sep {
  color: var(--gray-400);
  margin: 0 6px;
}

.hours-table tr.closed .day { color: var(--gray-400); }
.hours-table .closed-label {
  color: var(--gray-400);
  font-weight: 500;
  font-size: 13px;
}

/* Info DL */
.info-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
}

.info-dl dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--orange-main);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
}

.info-dl dd {
  font-size: 14px;
  color: var(--gray-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.7;
}

.info-dl dt:last-of-type, .info-dl dd:last-of-type {
  border-bottom: none;
}

.tel-link {
  color: var(--orange-main);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-heading);
}
.tel-link:hover { color: var(--orange-dark); }

/* ============================
   Access Section
   ============================ */
.access {
  background: var(--gray-50);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.map-wrapper iframe { display: block; }

.access-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.access-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.access-item svg {
  color: var(--orange-main);
  flex-shrink: 0;
}

.access-item a {
  color: var(--orange-main);
  font-weight: 700;
}
.access-item a:hover { color: var(--orange-dark); }

/* ============================
   Contact Section
   ============================ */
.contact {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 50%, #4A3020 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-text h2,
.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 12px 0 20px;
}

.contact-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.contact-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
}
.contact-hours strong {
  display: block;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ============================
   Footer
   ============================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-top: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange-light); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ============================
   Back to Top
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--orange-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,116,42,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,116,42,0.5);
}

/* ============================
   Animations
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s var(--ease) forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

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

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grids */
.services-grid .service-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card.fade-up:nth-child(4) { transition-delay: 0.1s; }
.services-grid .service-card.fade-up:nth-child(5) { transition-delay: 0.2s; }
.services-grid .service-card.fade-up:nth-child(6) { transition-delay: 0.3s; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 968px) {
  :root { --section-pad: 72px; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 40px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  .nav.open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 60px 32px 40px;
  }

  .nav-link {
    font-size: 16px;
    padding: 14px 20px;
    display: block;
    border-radius: 12px;
    width: 100%;
  }

  .nav-contact {
    text-align: center;
    margin-top: 8px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo, .about-photo-placeholder { max-height: 300px; }
  .about-photo-placeholder { height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; }
  .contact-actions { align-items: center; width: 100%; }
  .footer-inner { flex-direction: column; }
  .footer-nav ul { text-align: left; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  .header-inner { padding: 16px 20px; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .notice-inner { flex-direction: column; gap: 8px; }
  .info-card { padding: 28px 24px; }
  .contact-actions { width: 100%; }
  .btn-large { width: 100%; justify-content: center; }
  .access-info { flex-direction: column; gap: 16px; }
  .back-to-top { bottom: 20px; right: 20px; }
}
