:root{
  color-scheme: light;
  --radius:0.5rem;
  --background:#f7f3ea; --foreground:#232634; --card:#faf7ef; --card-foreground:#232634;
  --primary:#232a45; --primary-foreground:#f6f1e4;
  --secondary:#eae3d1; --secondary-foreground:#232a45;
  --muted:#eae3d1; --muted-foreground:#6c6f7d;
  --accent:#c9a15c; --accent-foreground:#211f14;
  --destructive:#c0392b; --destructive-foreground:#fbf6ea;
  --border:#ddd3ba; --input:#d8ccae; --ring:#c9a15c;
  --sand:#f7f3ea; --navy:#1c2033;
  --shadow-soft: 0 20px 60px -30px rgba(28,32,51,0.45);
}
.dark{
  color-scheme: dark;
  --background:#1a1d2c; --foreground:#f0ece0; --card:#232742; --card-foreground:#f0ece0;
  --primary:#e9e2cd; --primary-foreground:#1a1d2c;
  --secondary:#2b2f4a; --secondary-foreground:#f0ece0;
  --muted:#2b2f4a; --muted-foreground:#bdb6a0;
  --accent:#d8b976; --accent-foreground:#1a1d2c;
  --destructive:#d9584a; --destructive-foreground:#f6f0e2;
  --border:rgba(255,255,255,0.12); --input:rgba(255,255,255,0.16); --ring:#d8b976;
  --sand:#f0ece0; --navy:#1a1d2c;
  --shadow-soft: 0 24px 70px -30px rgba(0,0,0,0.7);
}
*{box-sizing:border-box; border-color:var(--border);}
html{scroll-behavior:smooth;}
body{
  margin:0; background-color:var(--background); color:var(--foreground);
  font-family:'Karla',ui-sans-serif,system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  transition:background-color .3s ease, color .3s ease;
}
body.floor-no-scroll{overflow:hidden; height:100vh;}
h1,h2,h3{font-family:'Cormorant Garamond',Georgia,serif; font-weight:300; letter-spacing:-0.01em; margin:0;}
a{text-decoration:none; color:inherit;}
img{display:block; max-width:100%;}
.wrap{max-width:72rem; margin:0 auto; padding:0 1.25rem;}
@media(min-width:640px){.wrap{padding:0 1.5rem;}}

/* header */
header{position:sticky; top:0; z-index:50; border-bottom:1px solid rgba(0,0,0,0.06); background-color:color-mix(in srgb, var(--background) 85%, transparent); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);}
.dark header{border-bottom:1px solid rgba(255,255,255,0.08);}
.header-inner{max-width:72rem; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding:.75rem 1rem;}
@media(min-width:640px){.header-inner{padding:.75rem 1.5rem;}}
.brand{display:flex; align-items:center; gap:.5rem; min-width:0;}
.brand img{height:2.25rem; width:2.25rem; flex-shrink:0;}
.brand-text{display:flex; flex-direction:column; min-width:0; line-height:1.1;}
.brand-title{font-family:'Cinzel',"Cormorant Garamond",serif; font-weight:600; font-size:1.05rem; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; color:var(--foreground);}
.brand-subtitle{margin-top:.2rem; font-family:'Karla',sans-serif; font-size:.58rem; font-weight:600; letter-spacing:.26em; text-transform:uppercase; color:var(--accent); white-space:nowrap;}
@media(max-width:400px){
  .brand-title{font-size:.85rem; letter-spacing:.03em;}
  .brand-subtitle{font-size:.5rem; letter-spacing:.18em;}
  .header-right{gap:.35rem;}
  .lang-switch button{padding:.3rem .38rem; font-size:.6rem;}
  .theme-btn{padding:.4rem;}
}
@media(max-width:340px){
  .brand-title{font-size:.75rem; letter-spacing:.01em;}
  .brand-subtitle{font-size:.46rem; letter-spacing:.12em;}
  .header-right{gap:.25rem;}
  .lang-switch button{padding:.25rem .32rem; font-size:.56rem;}
}
.header-right{display:flex; align-items:center; gap:.5rem;}
@media(min-width:640px){.header-right{gap:1.25rem;}}
nav.desktop-nav{display:none; align-items:center; gap:1.25rem; font-size:.75rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase;}
@media(min-width:768px){nav.desktop-nav{display:flex;}}
nav.desktop-nav a{color:var(--foreground); cursor:pointer;}
nav.desktop-nav a.active{color:var(--accent);}
.lang-switch{display:flex; align-items:center; border-radius:9999px; border:1px solid var(--border); padding:.15rem;}
.lang-switch button{border:none; background:none; cursor:pointer; border-radius:9999px; padding:.35rem .5rem; font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-foreground); font-family:'Karla',sans-serif;}
.lang-switch button.active{background-color:var(--accent); color:var(--accent-foreground);}
.theme-btn{flex-shrink:0; border-radius:9999px; border:1px solid var(--border); padding:.5rem; background:none; cursor:pointer; color:var(--muted-foreground); display:flex; align-items:center; justify-content:center;}
.theme-btn:hover{color:var(--accent);}
.theme-btn svg{width:1rem; height:1rem;}

/* footer */
footer.site-footer{border-top:1px solid var(--border); padding:2rem 0; text-align:center; font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-foreground);}

/* mobile tabbar */
nav.mobile-tab{position:sticky; bottom:0; z-index:50; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--border); background-color:color-mix(in srgb, var(--background) 95%, transparent); backdrop-filter:blur(10px);}
@media(min-width:768px){nav.mobile-tab{display:none;}}
nav.mobile-tab a{padding:.75rem .15rem; text-align:center; font-size:.58rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted-foreground); cursor:pointer;}
nav.mobile-tab a.active{color:var(--accent);}

/* buttons */
.btn-base{display:inline-flex; align-items:center; justify-content:center; gap:.5rem; border-radius:9999px; padding:.85rem 1.9rem; font-size:.8rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; transition:all .25s ease; cursor:pointer; border:none; font-family:'Karla',sans-serif;}
.btn-gold{display:inline-flex; align-items:center; justify-content:center; gap:.5rem; border-radius:9999px; padding:.85rem 1.9rem; font-size:.8rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; transition:all .25s ease; cursor:pointer; border:none; font-family:'Karla',sans-serif; background-color:var(--accent); color:var(--accent-foreground); text-decoration:none;}
.btn-gold:hover{filter:brightness(1.08); transform:translateY(-1px);}
.btn-outline{display:inline-flex; align-items:center; justify-content:center; gap:.5rem; border-radius:9999px; padding:.85rem 1.9rem; font-size:.8rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; transition:all .25s ease; cursor:pointer; font-family:'Karla',sans-serif; border:1px solid var(--border); color:var(--foreground); background:none; text-decoration:none;}
.btn-outline:hover{border-color:var(--accent); color:var(--accent);}
.btn-outline.sand{border-color:rgba(240,236,224,.4); color:var(--sand);}

/* hero */
.hero{position:relative; isolation:isolate; overflow:hidden;}
.hero img.bg{position:absolute; inset:0; height:100%; width:100%; object-fit:cover;}
.hero-overlay{position:absolute; inset:0; background-color:var(--navy); opacity:.75;}
.hero-content{position:relative; max-width:48rem; margin:0 auto; display:flex; flex-direction:column; align-items:center; padding:6rem 1.25rem; text-align:center;}
@media(min-width:640px){.hero-content{padding:8rem 1.5rem;}}
.hero-content img.logo{height:6rem; width:6rem;}
.kicker{margin-top:1.5rem; font-size:.7rem; font-weight:600; letter-spacing:.32em; text-transform:uppercase; color:var(--accent);}
.hero-title{margin-top:1rem; font-size:3rem; color:var(--sand);}
@media(min-width:640px){.hero-title{font-size:4.5rem;}}
.hero-text{margin-top:1.5rem; font-size:.875rem; line-height:1.7; color:color-mix(in srgb, var(--sand) 80%, transparent);}
@media(min-width:640px){.hero-text{font-size:1rem;}}
.hero-ctas{margin-top:2.25rem; display:flex; flex-wrap:wrap; justify-content:center; gap:.75rem;}

/* gallery */
.section{padding-top:5rem; padding-bottom:5rem;}
.section-head{text-align:center;}
.section-head h2{font-size:2.25rem;}
@media(min-width:640px){.section-head h2{font-size:3rem;}}
.section-head p{margin-top:.75rem; font-size:.875rem; color:var(--muted-foreground);}
.gallery-grid{margin-top:3rem; display:grid; gap:1rem;}
@media(min-width:640px){.gallery-grid{grid-template-columns:repeat(3,1fr);}}
.gallery-grid img{height:18rem; width:100%; border-radius:.5rem; object-fit:cover; box-shadow:var(--shadow-soft);}
@media(min-width:640px){.gallery-grid img{height:24rem;}}

/* scroll gallery (dishes carousel) */
.scroll-gallery-head{display:flex; align-items:baseline; justify-content:space-between; gap:1rem; margin-bottom:1.25rem;}
.scroll-gallery-head h3{font-size:1.5rem; margin:0;}
@media(min-width:640px){.scroll-gallery-head h3{font-size:1.75rem;}}
.gallery-view-all{font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); white-space:nowrap; cursor:pointer;}
.gallery-view-all:hover{text-decoration:underline;}
.scroll-gallery-wrap{position:relative;}
.scroll-gallery{display:flex; gap:1rem; overflow-x:auto; scroll-snap-type:x mandatory; padding:.25rem .25rem 1rem; scrollbar-width:thin; scrollbar-color:var(--accent) var(--border);}
.scroll-gallery::-webkit-scrollbar{height:6px;}
.scroll-gallery::-webkit-scrollbar-track{background:var(--border); border-radius:4px;}
.scroll-gallery::-webkit-scrollbar-thumb{background:var(--accent); border-radius:4px;}
.scroll-gallery img{flex:0 0 auto; width:78vw; max-width:280px; height:210px; object-fit:cover; border-radius:.5rem; scroll-snap-align:start; box-shadow:var(--shadow-soft);}
@media(min-width:640px){.scroll-gallery img{width:260px; height:230px;}}
.scroll-arrow{position:absolute; top:42%; transform:translateY(-50%); width:2.5rem; height:2.5rem; border-radius:9999px; background:var(--card); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:var(--shadow-soft); color:var(--foreground); z-index:2;}
.scroll-arrow:hover{border-color:var(--accent); color:var(--accent);}
.scroll-arrow.left{left:-.5rem;}
.scroll-arrow.right{right:-.5rem;}
.scroll-arrow svg{width:1.1rem; height:1.1rem;}
@media(max-width:640px){.scroll-arrow{display:none;}}

/* admin dashboard */
.admin-bar{display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding:.85rem 1.5rem; border-bottom:1px solid var(--border); background:var(--background);}
.admin-bar-title{font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin:0;}
.admin-tabs{display:flex; gap:.25rem; border:1px solid var(--border); border-radius:9999px; padding:.2rem;}
.admin-tab{border:none; background:none; cursor:pointer; padding:.5rem 1rem; border-radius:9999px; font-size:.72rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--muted-foreground); font-family:'Karla',sans-serif;}
.admin-tab.active{background:var(--accent); color:var(--accent-foreground);}
.admin-account-menu{position:absolute; right:0; top:2.75rem; z-index:20; min-width:11rem; border-radius:.6rem; border:1px solid var(--border); background:var(--card); box-shadow:var(--shadow-soft); overflow:hidden;}
.admin-account-menu button{display:block; width:100%; text-align:left; padding:.7rem 1rem; border:none; background:none; cursor:pointer; font-size:.82rem; color:var(--foreground); font-family:'Karla',sans-serif;}
.admin-account-menu button:hover{background:var(--muted);}

.stats-grid{margin-top:1.5rem; display:grid; grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); gap:1rem;}
.stat-card{border-radius:.5rem; border:1px solid var(--border); background:var(--card); padding:1.1rem;}
.stat-card .num{font-family:'Cormorant Garamond',serif; font-size:2rem; line-height:1;}
.stat-card .lbl{margin-top:.4rem; font-size:.68rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-foreground);}
.customers-list{margin-top:1.5rem; display:flex; flex-direction:column; gap:.75rem;}
.customer-row{display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; border-radius:.5rem; border:1px solid var(--border); background:var(--card); padding:1rem 1.25rem;}
.customer-row .who{display:flex; align-items:center; gap:.6rem;}
.customer-row .emoji{font-size:1.3rem;}
.customer-row .name{font-weight:600;}
.customer-row .meta{font-size:.78rem; color:var(--muted-foreground);}
.customer-row .visits{font-size:.75rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--accent);}

/* floor plan */
.floor-layout{display:grid; grid-template-columns:22rem 1fr; gap:1rem; align-items:stretch; height:42rem; padding:1rem 1.5rem;}
@media(max-width:900px){.floor-layout{grid-template-columns:1fr; height:auto;}}
.floor-sidebar{border:1px solid var(--border); border-radius:.6rem; background:var(--card); padding:1.1rem; display:flex; flex-direction:column; gap:1rem; height:100%; overflow:hidden;}
.floor-sidebar-head{display:flex; align-items:center; justify-content:space-between; gap:.75rem;}
.period-toggle{display:flex; border:1px solid var(--border); border-radius:9999px; padding:.15rem;}
.period-toggle button{border:none; background:none; cursor:pointer; padding:.4rem .8rem; border-radius:9999px; font-size:.7rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--muted-foreground); font-family:'Karla',sans-serif;}
.period-toggle button.active{background:var(--accent); color:var(--accent-foreground);}
.fab-add{width:2.2rem; height:2.2rem; border-radius:9999px; border:none; background:var(--accent); color:var(--accent-foreground); cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.fab-add svg{width:1.1rem; height:1.1rem;}
.floor-tabs{display:flex; gap:.4rem; border-bottom:1px solid var(--border); padding-bottom:.75rem;}
.floor-tabs button{border:none; background:none; cursor:pointer; padding:.3rem .1rem; font-size:.68rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--muted-foreground); border-bottom:2px solid transparent; font-family:'Karla',sans-serif;}
.floor-tabs button.active{color:var(--accent); border-bottom-color:var(--accent);}
.floor-res-list{display:flex; flex-direction:column; gap:.6rem; overflow-y:auto;}
.floor-res-card{border:1px solid var(--border); border-radius:.5rem; padding:.65rem .8rem; font-size:.8rem; display:flex; align-items:center; gap:.65rem;}
.floor-res-card .res-main{flex:1; min-width:0;}
.floor-res-card .top-row{display:flex; justify-content:space-between; gap:.5rem; font-weight:600;}
.floor-res-card .sub{margin-top:.2rem; font-size:.72rem; color:var(--muted-foreground);}
.floor-res-card .badge{font-size:.6rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:.1rem .45rem; border-radius:9999px;}
.badge-confirmed{background:color-mix(in srgb, var(--accent) 20%, transparent); color:var(--accent);}
.badge-came{background:color-mix(in srgb, #4caf7d 20%, transparent); color:#3f9c6d;}
.badge-no_show{background:color-mix(in srgb, #c0392b 18%, transparent); color:#c0392b;}
.badge-cancelled{background:color-mix(in srgb, var(--muted-foreground) 20%, transparent); color:var(--muted-foreground);}
.stage-ball-wrap{display:flex; flex-direction:column; align-items:center; gap:.2rem; flex-shrink:0; width:3.4rem;}
.stage-ball{width:1.5rem; height:1.5rem; border-radius:9999px; border:none; cursor:pointer; background:var(--muted); flex-shrink:0;}
.stage-ball.stage-confirmed{background:color-mix(in srgb, var(--accent) 55%, var(--muted));}
.stage-ball.stage-seated{background:color-mix(in srgb, #4c8bff 60%, var(--muted));}
.stage-ball.stage-dessert{background:color-mix(in srgb, #c77dff 60%, var(--muted));}
.stage-ball.stage-bill{background:color-mix(in srgb, #ff9f4c 60%, var(--muted));}
.stage-ball.stage-finished{background:color-mix(in srgb, #4caf7d 60%, var(--muted));}
.stage-ball-label{font-size:.52rem; font-weight:600; letter-spacing:.01em; text-transform:uppercase; color:var(--muted-foreground); text-align:center; width:100%; word-break:break-word; line-height:1.15;}
.stage-back-btn{display:flex; align-items:center; gap:.5rem; border:none; background:none; cursor:pointer; padding:.3rem 0; font-size:.75rem; font-weight:600; color:var(--accent); font-family:'Karla',sans-serif;}
.stage-option-row{display:block; width:100%; text-align:left; border:1px solid var(--border); border-radius:.5rem; padding:.7rem .9rem; margin-top:.5rem; background:var(--card); cursor:pointer; font-size:.82rem; font-weight:600; color:var(--foreground); font-family:'Karla',sans-serif;}
.stage-option-row.current{border-color:var(--accent); color:var(--accent);}
.finished-divider{display:flex; align-items:center; gap:.6rem; margin:.5rem 0 .2rem; font-size:.65rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted-foreground);}
.finished-divider::before, .finished-divider::after{content:""; flex:1; height:1px; background:var(--border);}
.floor-res-card.is-finished{opacity:.6;}
.floor-canvas-wrap{border:1px solid var(--border); border-radius:.6rem; background:var(--card); overflow:hidden; height:100%; position:relative; display:flex; align-items:center; justify-content:center;}
.floor-canvas{position:relative; width:820px; height:900px; flex-shrink:0; transform-origin:center center;}
.floor-table{position:absolute; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:.1rem; border:2px solid var(--border); background:var(--background); user-select:none; font-size:.75rem; font-weight:700; color:var(--foreground); box-shadow:var(--shadow-soft); padding:.2rem;}
.floor-table.shape-circle{border-radius:9999px;}
.floor-table.shape-square{border-radius:.4rem;}
.floor-table.occupied{border-color:var(--accent); background:color-mix(in srgb, var(--accent) 18%, var(--background));}
.floor-table .table-label{font-size:1.15rem; font-weight:800; line-height:1;}
.floor-table .table-guest-inline{font-size:.6rem; font-weight:600; line-height:1.2; text-align:center; color:var(--accent); max-width:100%; word-break:break-word;}
.floor-table .resize-handle{position:absolute; width:12px; height:12px; border-radius:9999px; background:var(--accent); display:none; z-index:3;}
.floor-canvas.edit-mode .floor-table{cursor:grab;}
.floor-canvas.edit-mode .floor-table .resize-handle{display:block;}
.floor-canvas:not(.edit-mode) .floor-table{cursor:default;}
.resize-handle.rh-tl{left:-6px; top:-6px; cursor:nwse-resize;}
.resize-handle.rh-tr{right:-6px; top:-6px; cursor:nesw-resize;}
.resize-handle.rh-bl{left:-6px; bottom:-6px; cursor:nesw-resize;}
.resize-handle.rh-br{right:-6px; bottom:-6px; cursor:nwse-resize;}
.resize-handle.rh-t{left:50%; top:-6px; transform:translateX(-50%); cursor:ns-resize;}
.resize-handle.rh-b{left:50%; bottom:-6px; transform:translateX(-50%); cursor:ns-resize;}
.resize-handle.rh-l{top:50%; left:-6px; transform:translateY(-50%); cursor:ew-resize;}
.resize-handle.rh-r{top:50%; right:-6px; transform:translateY(-50%); cursor:ew-resize;}
.rotate-handle{position:absolute; top:-28px; left:50%; transform:translateX(-50%); width:12px; height:12px; border-radius:9999px; background:var(--card); border:2px solid var(--accent); cursor:grab; display:none; z-index:3;}
.rotate-handle::before{content:""; position:absolute; top:12px; left:50%; width:1px; height:14px; background:var(--accent); transform:translateX(-50%);}
.floor-canvas.edit-mode .rotate-handle{display:block;}
.edit-layout-btn{position:absolute; right:1rem; bottom:1rem; z-index:5; display:flex; align-items:center; gap:.5rem; border-radius:9999px; border:1px solid var(--border); background:var(--card); color:var(--foreground); padding:.6rem 1.1rem; font-size:.72rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; box-shadow:var(--shadow-soft); font-family:'Karla',sans-serif;}
.edit-layout-btn svg{width:1rem; height:1rem;}
.edit-layout-btn.active{background:var(--accent); color:var(--accent-foreground); border-color:var(--accent);}
.add-table-btn{right:10.5rem;}
.table-delete-btn{position:absolute; top:-8px; left:-8px; width:20px; height:20px; border-radius:9999px; background:var(--destructive); color:var(--destructive-foreground); border:2px solid var(--card); display:none; align-items:center; justify-content:center; cursor:pointer; z-index:4; font-size:.7rem; line-height:1; padding:0;}
.floor-canvas.edit-mode .table-delete-btn{display:flex;}
.floor-table.occupied .table-delete-btn{display:none !important;}

/* gallery page */
.gallery-page-grid{margin-top:2.5rem; display:grid; grid-template-columns:repeat(auto-fill, minmax(240px,1fr)); gap:1rem;}
.gallery-page-grid img{width:100%; height:280px; object-fit:cover; border-radius:.5rem; box-shadow:var(--shadow-soft); display:block; transition:transform .3s ease;}
.gallery-page-grid img:hover{transform:scale(1.02);}

/* testimonials */
.testimonials-section{background-color:var(--card); color:var(--foreground); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.testimonials-section .wrap{max-width:88rem; padding:4.5rem .75rem;}
@media(min-width:640px){.testimonials-section .wrap{padding:5.5rem 1rem;}}
.kicker-left{font-size:.7rem; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--accent); margin:0;}
.testimonials-title{margin-top:.75rem; font-size:2.25rem; color:var(--foreground); max-width:36rem;}
@media(min-width:640px){.testimonials-title{font-size:2.75rem;}}
.testimonials-rating{margin-top:1.25rem; font-family:'Cormorant Garamond',serif; display:flex; align-items:baseline; gap:.25rem; color:var(--foreground);}
.testimonials-rating .rating-number{font-size:2.5rem; line-height:1;}
.testimonials-rating .rating-suffix{font-family:'Karla',sans-serif; font-size:.85rem; letter-spacing:.04em; color:var(--muted-foreground); text-transform:none;}
.testimonials-grid{margin-top:2rem; display:grid; gap:.85rem;}
@media(min-width:640px){.testimonials-grid{grid-template-columns:1fr 1fr;}}
.testimonial-card{border-radius:.5rem; border:1px solid var(--border); background-color:var(--background); padding:1.1rem;}
.testimonial-card .stars svg{width:.85rem; height:.85rem;}
.testimonial-card blockquote{margin:.65rem 0 0; font-family:'Cormorant Garamond',serif; font-size:1.05rem; line-height:1.4; font-weight:400; color:var(--foreground);}
.testimonial-card .who{margin-top:.75rem; font-size:.6rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-foreground);}

/* info */
.info-section{border-top:1px solid color-mix(in srgb, var(--border) 60%, transparent); background-color:color-mix(in srgb, var(--card) 60%, transparent);}
.info-grid{margin-top:2.5rem; display:grid; gap:2rem; text-align:center;}
@media(min-width:640px){.info-grid{grid-template-columns:repeat(3,1fr);}}
.info-item{display:flex; flex-direction:column; align-items:center; gap:.5rem;}
.info-item svg{width:1.25rem; height:1.25rem; color:var(--accent);}
.info-item .label{font-size:.65rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--muted-foreground);}
.info-item .value{max-width:16rem; font-size:.875rem; margin:0;}
.info-item .value + .value{margin-top:.35rem;}
.info-cta{margin-top:3rem; text-align:center;}

/* forms */
.page{max-width:42rem; margin:0 auto; padding:4rem 1.25rem;}
@media(min-width:640px){.page{padding:4rem 1.5rem;}}
.page.narrow{max-width:48rem;}
.page.wide{max-width:82rem; padding:4rem 2rem;}
@media(min-width:640px){.page.wide{padding:4.5rem 4rem;}}
@media(min-width:1024px){.page.wide{padding:4.5rem 6rem;}}
.page h1{font-size:2.25rem;}
@media(min-width:640px){.page h1{font-size:3rem;}}
.page > p.subtitle{margin-top:.5rem; font-size:.875rem; color:var(--muted-foreground);}
form.card-form{margin-top:2.5rem; display:flex; flex-direction:column; gap:1.25rem; border-radius:.5rem; border:1px solid var(--border); background-color:var(--card); padding:1.5rem; box-shadow:var(--shadow-soft);}
@media(min-width:640px){form.card-form{padding:2rem;}}
.label-xs{display:block; margin-bottom:.35rem; font-size:.7rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-foreground);}
.field{width:100%; border-radius:.5rem; border:1px solid var(--input); background-color:var(--card); color:var(--foreground); padding:.75rem .9rem; font-size:.95rem; outline:none; transition:border-color .2s ease; font-family:'Karla',sans-serif;}
.field:focus{border-color:var(--accent);}
.grid-2{display:grid; gap:1.25rem;}
@media(min-width:640px){.grid-2{grid-template-columns:1fr 1fr;}}
.grid-3{display:grid; gap:1.25rem;}
@media(min-width:640px){.grid-3{grid-template-columns:repeat(3,1fr);}}
.grid-name-rating{display:grid; gap:1.25rem;}
@media(min-width:640px){.grid-name-rating{grid-template-columns:1fr auto;}}
.error-text{font-size:.875rem; color:var(--destructive); margin:0;}
.success-text{font-size:.875rem; color:var(--accent); margin:0;}
.success-box{margin-top:2.5rem; border-radius:.5rem; border:1px solid color-mix(in srgb, var(--accent) 40%, transparent); background-color:var(--card); padding:2rem; text-align:center; box-shadow:var(--shadow-soft);}
.success-box p.title{font-family:'Cormorant Garamond',serif; font-size:1.5rem;}
.success-box p.meta{margin-top:.5rem; font-size:.875rem; color:var(--muted-foreground);}
.success-box .btn-outline{margin-top:1.5rem;}
select.field{appearance:auto;}

/* reviews */
.stars{display:flex; gap:.15rem;}
.stars svg{width:.875rem; height:.875rem;}
.stars button{border:none; background:none; cursor:pointer; padding:0; display:flex;}
.stars button svg{width:1.25rem; height:1.25rem;}
.star-filled{fill:var(--accent); color:var(--accent);}
.star-empty{color:var(--muted-foreground);}
.review-list{margin-top:3rem; display:flex; flex-direction:column; gap:1rem;}
.review-card{border-radius:.5rem; border:1px solid var(--border); background-color:var(--card); padding:1.25rem;}
.review-card .row{display:flex; align-items:center; justify-content:space-between; gap:.75rem;}
.review-card h2{font-size:1.25rem;}
.review-card p.comment{margin-top:.5rem; font-size:.875rem; line-height:1.6; color:var(--muted-foreground);}
.empty-text{font-size:.875rem; color:var(--muted-foreground);}

.page-section{display:none;}
.page-section.active{display:block;}
