/*
Theme Name: Boutique Rosati Theme
Theme URI: https://rosati.jp/
Author: Antigravity
Author URI: https://vertexaisearch.cloud.google.com/
Description: ブティック ロサティー（BOUTIQUE ROSATI）のためのプレミアムでエレガントなレスポンシブWordPressテーマ。婦人服販売と美容カウンセリング、メイクアップ、2階プライベートサロンをシームレスに表現します。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boutique-rosati
Tags: custom-menu, featured-images, responsive-layout, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  --color-bg-primary: #fdfcf7;      /* 温かみのあるオフホワイト */
  --color-bg-secondary: #f6f3eb;    /* 柔らかなサンドベージュ */
  --color-bg-dark: #1f1b18;         /* フッター・暗部用のダークブラウン */
  --color-text-main: #3a322d;       /* 深みのあるチャコールブラウン */
  --color-text-muted: #7c726a;      /* やさしい中間グレーブラウン */
  --color-text-light: #ffffff;      /* 純白 */
  --color-accent-gold: #c5a059;     /* シャンパンゴールド */
  --color-accent-gold-hover: #b08b45;
  --color-border: #eae3d2;          /* 境界線用のベージュ */
  
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  --max-width: 1100px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-light: 0 4px 20px rgba(58, 50, 45, 0.05);
  --shadow-medium: 0 10px 30px rgba(58, 50, 45, 0.08);
}

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

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-serif);
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}

h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.8rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-accent-gold);
}

h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: var(--color-accent-gold);
}

p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.btn-gold {
  display: inline-block;
  background-color: var(--color-accent-gold);
  color: var(--color-text-light);
  padding: 0.8rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--color-accent-gold);
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--color-accent-gold);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text-main);
  padding: 0.8rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--color-text-main);
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--color-text-main);
  color: var(--color-text-light);
}

/* Scroll Fade Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(253, 252, 247, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(234, 227, 210, 0.5);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
  height: 60px;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo img {
  height: 38px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-main);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
  background-color: var(--color-bg-secondary);
  background-image: url('img/bg_foot.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  color: var(--color-text-main);
  padding-top: var(--spacing-lg);
  position: relative;
  border-top: 2px solid var(--color-accent-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.footer-info dt {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-accent-gold);
  margin-top: 1rem;
}

.footer-info dd {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-nav dt {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-nav dd {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  color: var(--color-text-muted);
}

.footer-nav a {
  color: var(--color-text-main);
}

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

/* Radio Player Section */
.footer-radio {
  background: var(--color-bg-primary);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.radio-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radio-info img {
  width: 50px;
  height: 50px;
}

.radio-text h4 {
  font-size: 1rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.2rem;
}

.radio-text p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.custom-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 500px;
}

.play-btn {
  background: var(--color-accent-gold);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.play-btn:hover {
  background: var(--color-accent-gold-hover);
  transform: scale(1.05);
}

.progress-container {
  background: rgba(0, 0, 0, 0.1);
  height: 4px;
  flex: 1;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  background: var(--color-accent-gold);
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}

.time-display {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  text-align: center;
}

.copyright {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Page Layout & Common Structures
   ========================================================================== */
.page-header-visual {
  height: 300px;
  background-color: var(--color-bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.page-header-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-header-title {
  position: relative;
  z-index: 10;
  color: var(--color-text-light);
  text-align: center;
}

.page-header-title h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header-title span {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

.two-col-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
}

/* Sidebar Info Block */
.sidebar-info {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-top: 3px solid var(--color-accent-gold);
  position: sticky;
  top: 120px;
}

.sidebar-info h3 {
  font-size: 1.1rem;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.sidebar-info dl {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.sidebar-info dt {
  font-weight: bold;
  color: var(--color-accent-gold);
  margin-top: 0.8rem;
}

.sidebar-info dd {
  line-height: 1.6;
}

.sidebar-btn-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.sidebar-btn-list a {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
}

/* ==========================================================================
   Template Specific Styles
   ========================================================================== */

/* 1. Top Page (front-page.php) */
.hero-slider {
  height: 90vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 27, 24, 0.4);
  z-index: 3;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: var(--color-text-light);
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 400;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.hero-content h2::after {
  display: none;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: var(--font-serif);
}

/* Welcome Section */
.welcome-section {
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 2rem;
}

.welcome-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 2;
}

/* Feature Grid */
.feature-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-lg) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--color-bg-primary);
  border-top: 3px solid var(--color-accent-gold);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  color: var(--color-accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Instagram Showcase */
.insta-section {
  padding: var(--spacing-lg) 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 27, 24, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Call to Action */
.cta-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-lg) 0;
  text-align: center;
  position: relative;
}

.cta-content h2 {
  border-bottom: none;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content h2::after {
  display: none;
}

.cta-content p {
  text-align: center;
  color: #c9c5bd;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* 2. About Page (page-about.php) */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  border: 1px solid var(--color-border);
  padding: 0.8rem;
  background-color: var(--color-bg-primary);
  box-shadow: var(--shadow-light);
}

.about-name {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.about-name span {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
}

.about-profile-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-profile-list ul {
  padding-left: 0;
}

.about-profile-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-profile-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--color-accent-gold);
}

.about-qualification-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
}

.about-highlight-box {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent-gold);
  padding: 1.5rem;
  margin: 2.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}

/* 3. Services Page (page-services.php) */
.service-block {
  margin-bottom: var(--spacing-lg);
}

.service-block h2 {
  margin-top: 0;
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.brand-card {
  border: 1px solid var(--color-border);
  padding: 2rem;
  background-color: var(--color-bg-primary);
  transition: var(--transition-smooth);
}

.brand-card:hover {
  box-shadow: var(--shadow-light);
  border-color: var(--color-accent-gold);
}

.brand-card h4 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.3rem;
}

.brand-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.service-counseling-details {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.counseling-flow {
  margin-top: 2.5rem;
}

.counseling-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.counseling-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 15px;
  width: 1px;
  height: calc(100% - 15px);
  background-color: var(--color-border);
}

.step-num {
  background-color: var(--color-accent-gold);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* 4. Interior Page (page-interior.php) */
.interior-intro {
  margin-bottom: 3rem;
}

.interior-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(31, 27, 24, 0.7);
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
}

.second-floor-concept {
  background-color: var(--color-bg-secondary);
  padding: 3rem;
  border-top: 3px solid var(--color-accent-gold);
}

.second-floor-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

/* 5. Reservation Page (page-reservation.php) */
.reservation-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.reservation-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: var(--transition-smooth);
}

.reservation-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-light);
}

.reservation-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reservation-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.reservation-card .btn-gold, .reservation-card .btn-outline {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  width: 100%;
}

/* 6. Contact Page (page-contact.php) */
.contact-form-container {
  background-color: var(--color-bg-secondary);
  padding: 3rem;
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-primary);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.form-message.success {
  background-color: #e2f0d9;
  color: #385723;
  border: 1px solid #c5e0b4;
}

.form-message.error {
  background-color: #fce4d6;
  color: #c65911;
  border: 1px solid #f8cbad;
}

/* 7. Access Page (page-access.php) */
.access-map-container {
  border: 1px solid var(--color-border);
  padding: 0.8rem;
  background-color: var(--color-bg-primary);
  box-shadow: var(--shadow-light);
  margin-bottom: 3rem;
}

.access-map-container iframe {
  width: 100%;
  display: block;
}

.tblDot {
  width: 100%;
  border-collapse: collapse;
}

.tblDot th {
  text-align: left;
  padding: 1.2rem;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  width: 30%;
  vertical-align: top;
}

.tblDot td {
  padding: 1.2rem;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.9rem;
}

/* 8. Second Hands (page-secondhands.php) */
.secondhands-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.secondhands-intro-grid img {
  border: 1px solid var(--color-border);
  padding: 0.8rem;
  background-color: var(--color-bg-primary);
}

.sh-concept {
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 1.5rem;
}

.sh-concept h3 {
  font-size: 1.3rem;
  margin-top: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar-info {
    position: static;
    margin-bottom: 2rem;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .brand-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .service-counseling-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .second-floor-concept-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .secondhands-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-radio {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .custom-player {
    max-width: 100%;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reservation-methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 60px;
  }
  
  .logo img {
    height: 38px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--color-bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu a {
    font-size: 1.1rem;
  }
  
  /* Hamburger animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
  
  .interior-gallery {
    grid-template-columns: 1fr;
  }
  
  .tblDot th {
    width: 100%;
    display: block;
    padding-bottom: 0.2rem;
    border-bottom: none;
  }
  
  .tblDot td {
    width: 100%;
    display: block;
    padding-top: 0.2rem;
  }
}
