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

/* === Variables === */
:root {
  --cream: #FAFAF4;
  --warm-bg: #F4EDE4;
  --text: #2A2826;
  --text-mid: #706B65;
  --text-light: #A09890;
  --terracotta: #C4714A;
  --lavender: #8B7BAB;
  --blue: #2E7D9A;
  --olive: #7A8C5A;
  --border: #E4DDD5;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Noto Sans JP', sans-serif;
  --ff-accent: 'Lato', sans-serif;
  --max-w: 1120px;
  --tr: 0.3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; zoom: 0.75; }
body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Typography === */
h1 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.2; }
h2 { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.3; }
h3 { font-family: var(--ff-display); font-weight: 400; font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-family: var(--ff-body); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
p { font-weight: 300; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.fr { font-family: var(--ff-display); font-style: italic; font-weight: 300; color: var(--text-mid); }

/* === Layout === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
section { padding: 88px 0; }
section.alt { background: var(--warm-bg); }

/* === Section label === */
.label {
  font-family: var(--ff-accent);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.label::before { content: ''; display: block; width: 28px; height: 1px; background: currentColor; }
.label.center { justify-content: center; }
.label.center::before { display: none; }
.label.light { color: rgba(255,255,255,0.65); }
.label.light::before { background: rgba(255,255,255,0.65); }

/* === Section Header === */
.sec-head { margin-bottom: 52px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { max-width: 540px; color: var(--text-mid); font-size: 14px; }
.sec-head.center { text-align: center; }
.sec-head.center p { margin: 0 auto; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--tr);
}
.btn-primary { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.btn-primary:hover { background: #AE6240; border-color: #AE6240; }
.btn-outline { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: white; }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-dark { background: var(--text); color: white; border-color: var(--text); }
.btn-dark:hover { background: #444; border-color: #444; }

/* === Gradient Placeholders === */
.g-terra  { background: linear-gradient(145deg, #F0D5C0 0%, #DDA082 40%, #C4714A 75%, #9E5235 100%); }
.g-lav    { background: linear-gradient(145deg, #D4CBE5 0%, #B9ABCF 40%, #9B88BB 70%, #7B6A9E 100%); }
.g-blue   { background: linear-gradient(145deg, #B5D4E8 0%, #7BB5D4 40%, #4A94BB 70%, #2E7D9A 100%); }
.g-olive  { background: linear-gradient(145deg, #D5E4C8 0%, #B5CC98 40%, #90B070 70%, #6A8A50 100%); }
.g-gold   { background: linear-gradient(145deg, #F0E5D0 0%, #D4C090 40%, #B89860 70%, #906A30 100%); }
.g-warm   { background: linear-gradient(145deg, #F5DDD0 0%, #E8B89A 40%, #D4906E 70%, #A86848 100%); }
.g-night  { background: linear-gradient(145deg, #C0BEDB 0%, #9A98C8 40%, #7472A8 70%, #524D88 100%); }
.g-sea    { background: linear-gradient(145deg, #C5E0EE 0%, #90C4D8 40%, #5DAEC4 70%, #2E7D9A 100%); }
.g-home   { background: linear-gradient(160deg, #E8D5B7 0%, #D4A876 30%, #C07A52 65%, #8C5038 100%); }

/* Placeholder label overlay */
.img-ph { position: relative; overflow: hidden; }
.img-ph .ph-label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  pointer-events: none;
}
.img-ph .ph-note {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--ff-accent);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.2);
  padding: 3px 8px;
}

/* === Header / Nav === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,250,244,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-en { font-family: var(--ff-display); font-size: 20px; font-weight: 500; letter-spacing: 0.05em; }
.logo-sub { font-family: var(--ff-accent); font-size: 9px; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); margin-top: 3px; }

.site-nav { display: flex; align-items: center; }
.site-nav > ul { display: flex; gap: 28px; align-items: center; }
.site-nav > ul > li { position: relative; }
.site-nav a {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { border-bottom-color: var(--terracotta); color: var(--terracotta); }
.site-nav .nav-fr a { font-family: var(--ff-accent); font-style: italic; color: var(--text-light); }
.site-nav .nav-fr a:hover { color: var(--terracotta); }

/* Dropdown */
.has-dd > a::after { content: ' ›'; font-size: 11px; opacity: 0.5; transform: rotate(90deg); display: inline-block; }
.dd {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%; transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  min-width: 180px;
  padding: 8px 0 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr), top var(--tr);
  box-shadow: 0 8px 32px rgba(42,40,38,0.1);
}
.has-dd:hover .dd { opacity: 1; pointer-events: all; top: 100%; }
.dd a {
  display: block;
  padding: 9px 18px;
  font-size: 12.5px;
  border-bottom: none;
  border-left: 2px solid transparent;
}
.dd a:hover { border-left-color: var(--terracotta); background: var(--cream); color: var(--terracotta); }

/* === Hero === */
.hero {
  margin-top: 72px;
  height: 92vh;
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(32,28,24,0.5) 0%, rgba(32,28,24,0.15) 55%, transparent 100%);
}
.hero-body {
  position: relative; z-index: 1;
  padding: 0 8%;
  max-width: 680px;
}
.hero-body .fr { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.hero-body h1 { color: white; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.hero-body p { color: rgba(255,255,255,0.82); font-size: 15px; margin-bottom: 34px; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-accent); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll span { display: block; width: 1px; height: 52px; background: rgba(255,255,255,0.35); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.35} 50%{opacity:.75} }

/* === Page Hero === */
.page-hero {
  margin-top: 72px;
  height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(32,28,24,0.7) 0%, rgba(32,28,24,0.15) 55%, transparent 100%);
}
.page-hero-body {
  position: relative; z-index: 1;
  padding: 0 8% 52px;
  width: 100%;
}
.page-hero-body h1 { color: white; }
.page-hero-body .fr { font-size: 18px; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* === 2-column === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.rev .two-col-img { order: -1; }
.two-col-img { height: 460px; }
.two-col-txt h2 { margin-bottom: 12px; }
.two-col-txt .fr { font-size: 16px; margin-bottom: 24px; display: block; }
.two-col-txt p { color: var(--text-mid); margin-bottom: 16px; font-size: 14px; }

/* === Service Split (home) === */
.service-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.svc-block {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 48px; text-align: center; cursor: pointer; overflow: hidden;
}
.svc-block::before { content: ''; position: absolute; inset: 0; opacity: 0; background: rgba(0,0,0,0.12); transition: var(--tr); }
.svc-block:hover::before { opacity: 1; }
.svc-1 { background: linear-gradient(135deg, #C4714A, #9E5235); }
.svc-2 { background: linear-gradient(135deg, #2E7D9A, #1C5C72); }
.svc-inner { position: relative; z-index: 1; }
.svc-inner .fr { color: rgba(255,255,255,0.65); font-size: 16px; display: block; margin-bottom: 16px; }
.svc-inner h2 { color: white; font-size: 2.2rem; margin-bottom: 14px; }
.svc-inner p { color: rgba(255,255,255,0.82); font-size: 14px; margin-bottom: 28px; max-width: 320px; }

/* === Cards === */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.card { background: white; border: 1px solid var(--border); overflow: hidden; transition: var(--tr); }
.card:hover { box-shadow: 0 8px 40px rgba(42,40,38,0.1); transform: translateY(-4px); }
.card-img { height: 220px; }
.card-body { padding: 26px; }
.card-tag {
  font-family: var(--ff-accent); font-size: 9px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px;
}
.card h3 { margin-bottom: 10px; font-size: 18px; }
.card p { font-size: 13.5px; color: var(--text-mid); margin-bottom: 0; }
.card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
}
.price-block .from { font-size: 10px; color: var(--text-light); display: block; letter-spacing: 0.05em; }
.price-block .amount { font-family: var(--ff-accent); font-size: 17px; font-weight: 700; color: var(--terracotta); }

/* === Highlight Box === */
.hl-box { background: var(--warm-bg); border-left: 3px solid var(--terracotta); padding: 22px 26px; font-size: 14px; color: var(--text-mid); }
.hl-box strong { color: var(--text); }

/* === Vehicle === */
.vehicle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vehicle-card { border: 1px solid var(--border); overflow: hidden; }
.vehicle-img { height: 220px; }
.vehicle-info { padding: 22px; }
.vehicle-info h3 { margin-bottom: 6px; font-size: 19px; }
.vehicle-info p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; }
.vehicle-specs { display: flex; gap: 24px; padding-top: 14px; border-top: 1px solid var(--border); }
.v-spec .v-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); display: block; }
.v-spec .v-val { font-size: 13px; font-weight: 500; }

/* === Table === */
.styled-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.styled-table th, .styled-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.styled-table thead th { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); background: var(--warm-bg); }
.styled-table td:first-child { font-weight: 500; }

/* === FAQ === */
details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  padding: 20px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14.5px; font-weight: 500; transition: color var(--tr); user-select: none;
}
summary:hover { color: var(--terracotta); }
summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--terracotta); margin-left: 16px; flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.faq-ans { padding: 0 0 20px; font-size: 13.5px; color: var(--text-mid); max-width: 620px; line-height: 1.8; }

/* === Form === */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px; border: 1px solid var(--border); background: white;
  font-family: var(--ff-body); font-size: 14px; color: var(--text); outline: none; transition: border-color var(--tr);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { height: 150px; resize: vertical; }

/* === Testimonials === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { padding: 26px; background: white; border: 1px solid var(--border); }
.testimonial blockquote { font-size: 13.5px; color: var(--text-mid); font-style: italic; line-height: 1.75; margin-bottom: 14px; }
.testimonial cite { font-size: 10.5px; font-style: normal; color: var(--text-light); letter-spacing: 0.05em; }

/* === Quote Banner === */
.quote-banner { background: var(--text); padding: 96px 0; text-align: center; }
.quote-banner blockquote {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: white;
  max-width: 680px; margin: 0 auto; line-height: 1.5;
}
.quote-banner cite { display: block; margin-top: 22px; font-family: var(--ff-accent); font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* === Info List === */
.info-list li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.info-list li:last-child { border-bottom: none; }
.info-list .il-label { min-width: 110px; font-weight: 500; font-size: 12px; flex-shrink: 0; }
.info-list .il-val { color: var(--text-mid); }

/* === Footer === */
.site-footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-brand .logo-en { color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.3); }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 16px; line-height: 1.75; }
.footer-col h4 { font-family: var(--ff-accent); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 12.5px; color: rgba(255,255,255,0.45); transition: color var(--tr); }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-contact p { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 16px; }
.social-links a { font-size: 11.5px; color: rgba(255,255,255,0.35); transition: color var(--tr); letter-spacing: 0.04em; }
.social-links a:hover { color: rgba(255,255,255,0.85); }

/* === Decorative Patterns === */

/* Lavender sprig repeating background */
.lav-pattern {
  position: relative;
}
.lav-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='84' viewBox='0 0 56 84'%3E%3Cg fill='none' stroke='%238B7BAB' stroke-linecap='round'%3E%3Cline x1='28' y1='84' x2='28' y2='26' stroke-width='1.2'/%3E%3Cline x1='28' y1='68' x2='19' y2='60' stroke-width='0.9'/%3E%3Cline x1='28' y1='68' x2='37' y2='60' stroke-width='0.9'/%3E%3Cline x1='28' y1='54' x2='19' y2='46' stroke-width='0.9'/%3E%3Cline x1='28' y1='54' x2='37' y2='46' stroke-width='0.9'/%3E%3C/g%3E%3Cg fill='%238B7BAB'%3E%3Cellipse cx='22' cy='42' rx='2.8' ry='4.5'/%3E%3Cellipse cx='34' cy='36' rx='2.8' ry='4.5'/%3E%3Cellipse cx='22' cy='30' rx='2.8' ry='4.5'/%3E%3Cellipse cx='34' cy='24' rx='2.8' ry='4.5'/%3E%3Cellipse cx='28' cy='19' rx='2.2' ry='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 56px 84px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.lav-pattern > * { position: relative; z-index: 1; }

/* Sea / harbor wave repeating background */
.sea-pattern {
  position: relative;
}
.sea-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='48' viewBox='0 0 160 48'%3E%3Cpath d='M0 24 Q20 10 40 24 Q60 38 80 24 Q100 10 120 24 Q140 38 160 24' stroke='%232E7D9A' stroke-width='1.4' fill='none'/%3E%3Cpath d='M0 34 Q20 20 40 34 Q60 48 80 34 Q100 20 120 34 Q140 48 160 34' stroke='%232E7D9A' stroke-width='0.7' fill='none' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 160px 48px;
  background-position: center 60%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.sea-pattern > * { position: relative; z-index: 1; }

/* Decorative section divider — lavender sprig row */
.deco-lav {
  text-align: center;
  padding: 12px 0;
  overflow: hidden;
}
.deco-lav::before {
  content: '';
  display: inline-block;
  width: 280px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='40' viewBox='0 0 56 40'%3E%3Cg fill='none' stroke='%238B7BAB' stroke-linecap='round'%3E%3Cline x1='28' y1='40' x2='28' y2='14' stroke-width='1'/%3E%3Cline x1='28' y1='32' x2='22' y2='27' stroke-width='0.7'/%3E%3Cline x1='28' y1='32' x2='34' y2='27' stroke-width='0.7'/%3E%3Cline x1='28' y1='23' x2='22' y2='18' stroke-width='0.7'/%3E%3Cline x1='28' y1='23' x2='34' y2='18' stroke-width='0.7'/%3E%3C/g%3E%3Cg fill='%238B7BAB' opacity='0.8'%3E%3Cellipse cx='24' cy='17' rx='2' ry='3.5'/%3E%3Cellipse cx='32' cy='13' rx='2' ry='3.5'/%3E%3Cellipse cx='28' cy='9' rx='2' ry='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 56px 40px;
  opacity: 0.22;
  vertical-align: middle;
}

/* Decorative section divider — anchor / wave row */
.deco-sea {
  text-align: center;
  padding: 12px 0;
  overflow: hidden;
}
.deco-sea::before {
  content: '';
  display: inline-block;
  width: 320px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='32' viewBox='0 0 80 32'%3E%3Ccircle cx='40' cy='8' r='4' fill='none' stroke='%232E7D9A' stroke-width='1'/%3E%3Cline x1='40' y1='12' x2='40' y2='26' stroke='%232E7D9A' stroke-width='1'/%3E%3Cpath d='M28 22 Q34 30 40 26 Q46 30 52 22' fill='none' stroke='%232E7D9A' stroke-width='1'/%3E%3Cline x1='34' y1='18' x2='46' y2='18' stroke='%232E7D9A' stroke-width='1'/%3E%3Cpath d='M0 32 Q10 24 20 32' fill='none' stroke='%232E7D9A' stroke-width='0.7' opacity='0.5'/%3E%3Cpath d='M60 32 Q70 24 80 32' fill='none' stroke='%232E7D9A' stroke-width='0.7' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px 32px;
  opacity: 0.25;
  vertical-align: middle;
}

/* === Representative (no photo) === */
.rep-solo {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.rep-solo h2 { margin-bottom: 12px; }
.rep-solo .fr { font-size: 16px; margin-bottom: 28px; display: block; }
.rep-solo p { color: var(--text-mid); font-size: 14px; margin-bottom: 16px; }
.rep-solo p:last-child { margin-bottom: 0; }

/* Real images (replace placeholders) */
.real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* === Responsive === */
/* ---- Hamburger button (hidden on desktop) ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.rev .two-col-img { order: 0; }
  .two-col-img { height: 320px; }
  .service-split { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }

  /* ハンバーガーボタン表示 */
  .nav-toggle { display: flex; }

  /* モバイルナビ：ヘッダー直下にスライドイン */
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(42,40,38,0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* メニュー項目を縦並びに */
  .site-nav > ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
  }
  .site-nav > ul > li { display: block !important; width: 100%; }
  .site-nav > ul > li > a {
    display: block;
    padding: 13px 5%;
    font-size: 14px;
    border-bottom: none;
  }

  /* ドロップダウンをインラインで常時表示 */
  .dd {
    position: static !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--border) !important;
    margin: 0 5% 8px calc(5% + 12px) !important;
    padding: 4px 0 !important;
    background: transparent !important;
    display: block !important;
    top: auto !important;
    left: auto !important;
    min-width: auto !important;
  }
  .dd a {
    padding: 9px 14px !important;
    font-size: 13px !important;
    color: var(--text-mid) !important;
    border-left: none !important;
  }
  .has-dd > a::after { display: none; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { height: 80vh; }
  .page-hero { height: 260px; }
  .card-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr !important; }
}
