/* ============================================================
   Plumbing only. Nothing here is a design decision — no colour,
   no typeface, no layout. Each site writes its own visual system
   on top; this file only carries the things that must be right
   on every site and are invisible when they are.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A sideways-scrollable page drags position:fixed elements out of view on
     phones. Clip rather than scroll. (clip, not hidden: hidden would make html
     a scroll container and break scroll-padding and sticky.) */
  overflow-x: clip;
}

body { margin: 0; }
/* Lock scrolling on the ROOT, not on body. html already has overflow-x:clip,
   so overflow:hidden on body turns body into its own scroll container — a
   position:sticky header then sticks to body and is thrown off-screen (with
   its close button) when the menu opens after scrolling. site.js puts
   .is-locked on <html> directly; a :has() selector was tried first and its
   style invalidation visibly lagged behind the menu opening. */
html.is-locked { overflow: hidden; }
/* [hidden] must win. A rule like `.gallery-more { display:flex }` outranks the
   browser's own `[hidden] { display:none }`, which left an empty "Show 0 more"
   button on screen whenever a gallery had nothing further to reveal. */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
/* A <button> inherits the user agent's grey `buttonface` unless something says
   otherwise. An outline/ghost button that sets only border-color and color then
   renders as light-grey with (often white) text on it — invisible. Reset here;
   any variant that wants a fill sets one and wins on specificity. */
button { background: transparent; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll. The JS failsafe shows everything if the observer
   never runs, so content can never be stranded invisible. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease, ease), transform .7s var(--ease, ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .lightbox, .skip-link, .gallery-more, .filters, .map-consent, .callbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}

@font-face{font-family:Editorial;src:url(../fonts/NotoSerifDisplay-400-latin.woff2) format('woff2');font-weight:400;font-display:swap}@font-face{font-family:Editorial;src:url(../fonts/NotoSerifDisplay-400i-latin.woff2) format('woff2');font-style:italic;font-display:swap}@font-face{font-family:Editorial;src:url(../fonts/NotoSerifDisplay-400-greek.woff2) format('woff2');unicode-range:U+0370-03FF;font-display:swap}@font-face{font-family:Editorial;src:url(../fonts/NotoSerifDisplay-400i-greek.woff2) format('woff2');font-style:italic;unicode-range:U+0370-03FF;font-display:swap}@font-face{font-family:Inter;src:url(../fonts/Inter-400-latin.woff2) format('woff2');font-display:swap}@font-face{font-family:Inter;src:url(../fonts/Inter-400-greek.woff2) format('woff2');unicode-range:U+0370-03FF;font-display:swap}@font-face{font-family:Inter;src:url(../fonts/Inter-500-latin.woff2) format('woff2');font-weight:500;font-display:swap}@font-face{font-family:Inter;src:url(../fonts/Inter-500-greek.woff2) format('woff2');font-weight:500;unicode-range:U+0370-03FF;font-display:swap}
:root{--ink:#17232a;--teal:#34575c;--muted:#56646c;--line:#d0d8d8;--paper:#fff}body{font:400 15px/1.65 Inter,Arial,sans-serif;background:var(--paper);color:var(--ink)}a{color:inherit;text-decoration:none}button{cursor:pointer}h1,h2,h3{font-family:Editorial,Georgia,serif;font-weight:400;line-height:1.08;letter-spacing:-.05em;margin:0}h1{font-size:clamp(46px,4.6vw,69px)}h2{font-size:clamp(37px,3.8vw,57px)}h3{font-size:28px}p{margin:0 0 20px}a:focus-visible,button:focus-visible,summary:focus-visible,[tabindex]:focus-visible{outline:2px solid #a57839;outline-offset:5px}::selection{background:#d4e5e3}.wrap{width:min(1270px,calc(100% - 120px));margin-inline:auto}.skip{position:fixed;top:-100px;left:20px;z-index:200;background:var(--teal);color:white;padding:12px 20px}.skip:focus{top:10px}.sr-only{position:absolute;width:1px;height:1px;clip-path:inset(50%);overflow:hidden;white-space:nowrap}.eyebrow{font-size:10px;letter-spacing:.23em;line-height:1.6;font-weight:500;margin:0 0 16px}.section-number{font:400 11px/1 Inter;color:var(--muted);display:flex;align-items:center;gap:12px;margin-bottom:23px}.section-number::after{content:'';width:42px;height:1px;background:currentColor}.text-link{display:inline-block;font-size:13px;border-bottom:1px solid;padding-bottom:4px;line-height:1.5}.text-link:hover{color:#557e80}.site-header{position:sticky;top:0;background:white;z-index:50;border-bottom:1px solid #eef0f0}.header-inner{width:min(1270px,calc(100% - 120px));height:88px;margin:auto;display:flex;align-items:center;gap:35px}.brand{width:265px;flex-shrink:0}.brand img{width:100%;height:auto}#primary-nav{display:flex;gap:30px;align-items:center;margin-left:auto;font-family:Editorial,Georgia,serif;font-size:15px}#primary-nav a:hover{color:var(--teal);text-decoration:underline;text-underline-offset:6px}.languages{display:flex;gap:12px;border-left:1px solid var(--line);padding-left:30px;align-items:center;font-size:11px}.languages a{padding:9px 0}.languages a[aria-current]{border-bottom:1px solid}.languages span{color:#56646c}.nav-toggle{display:none}.editorial-hero{height:710px;max-height:calc(100svh - 88px);min-height:580px;position:relative;margin-bottom:35px}.editorial-hero>img{width:100%;height:100%;object-fit:cover;object-position:center 47%}.hero-caption{position:absolute;left:0;bottom:0;padding:34px 45px 38px max(60px,calc((100vw - 1270px)/2));width:calc(max(60px, (100vw - 1270px)/2) + 480px);background:white;max-width:none}.hero-caption p{font-size:14px;margin:22px 0 23px;max-width:320px}.editorial-grid{display:grid;grid-template-columns:1.13fr 1fr;gap:85px;align-items:start;padding:25px 0 65px}.service-heading{display:grid;grid-template-columns:1.1fr 1fr;gap:35px;align-items:center;margin-bottom:30px}.service-heading h2{font-size:47px}.service-heading>p{color:var(--muted);font-size:13px;line-height:1.7;margin:0}.price-tabs{display:flex;gap:30px;border-bottom:1px solid var(--line)}.price-tabs button{border:0;background:none;padding:12px 0;font-family:Editorial;font-size:27px;line-height:1.2;color:#677a7d;border-bottom:3px solid transparent;margin-bottom:-1px}.price-tabs button[aria-selected=true]{color:var(--ink);border-color:var(--teal)}.price-list{margin:0}.price-list>div{display:flex;gap:20px;align-items:baseline;justify-content:space-between;padding:15px 0;border-bottom:1px solid var(--line)}.price-list dt{font-family:Editorial;font-size:18px;line-height:1.45}.price-list dd{margin:0;white-space:nowrap;font-size:13px}.price-note{font-size:11px;color:var(--muted);margin-top:18px;max-width:410px}.care-notes{margin-top:28px}details{border-top:1px solid var(--line);padding:16px 0}details:last-child{border-bottom:1px solid var(--line)}summary{font-size:13px;font-weight:500;cursor:pointer}details p{font-size:13px;color:var(--muted);margin:17px 0 0}.bridal-feature{position:relative;padding-top:0}.bridal-feature>.section-number{position:absolute;top:20px;left:20px;z-index:1;background:white;padding:9px 12px}.tile{display:block;position:relative;width:100%;padding:0;border:0;background:transparent;cursor:zoom-in;overflow:hidden}.tile img{width:100%;height:100%;object-fit:cover}.photo-label{position:absolute;right:0;bottom:0;background:white;color:var(--ink);font-size:10px;padding:8px 13px;opacity:0;transition:opacity .2s}.tile:hover .photo-label,.tile:focus-visible .photo-label{opacity:1}.bridal-feature>.tile{height:520px}.bridal-feature>.tile img{object-position:58% center}.bridal-caption{position:relative;width:86%;margin:-105px 0 0 auto;background:white;padding:29px 0 20px 35px}.bridal-caption h2{font-size:42px}.bridal-caption p{font-size:13px;color:var(--muted);margin:20px 0;max-width:300px}.wedding-section{display:grid;grid-template-columns:1.12fr 1fr .9fr;gap:45px;padding:48px 0 65px;border-top:1px solid var(--line)}.wedding-title h2{font-size:40px;margin-bottom:23px}.wedding-title>p:last-child{font-size:13px;color:var(--muted);max-width:340px}.wedding-menu article{position:relative;border-top:1px solid var(--line);padding:18px 60px 16px 0}.wedding-menu h3{font-size:25px;margin-bottom:12px}.wedding-menu article p{font-size:12px;color:var(--muted);margin:0}.wedding-menu strong{position:absolute;top:23px;right:0;font:400 15px Editorial}.wedding-extra{font-size:12px;color:var(--muted);margin:17px 0 22px}.wedding-photo{height:365px}.wedding-photo img{object-position:center}.visit{display:grid;grid-template-columns:1fr 1.12fr;min-height:510px}.visit-photo .tile{height:100%}.visit-photo .tile img{object-fit:cover;object-position:center}.visit-copy{padding:45px max(55px,calc((100vw - 1270px)/2)) 45px 55px;background:var(--teal);color:white}.visit-copy>.section-number{color:#deebea}.visit-copy h2{font-size:58px}.visit-copy>p:not(.eyebrow){font-size:14px;margin:23px 0 30px;color:#e0e9e8;max-width:420px}.contact-lines{display:grid;grid-template-columns:1fr 1fr;gap:25px;border-top:1px solid #93acad;border-bottom:1px solid #93acad;padding:24px 0;font-size:13px}.contact-lines address{font-style:normal}.contact-lines span{display:block;font-size:8px;letter-spacing:.17em;margin-bottom:6px}.contact-lines a{white-space:nowrap;font-size:15px}.contact-links{display:flex;flex-wrap:wrap;gap:22px;margin-top:23px;font-size:11px}.contact-links a{text-decoration:underline;text-underline-offset:4px}.footer{width:min(1320px,calc(100% - 100px));margin:auto;display:flex;align-items:center;justify-content:space-between;gap:30px;padding:30px 0}.footer>a{width:220px}.footer p{font-size:10px;color:var(--muted);margin:0}.footer .languages{border:0;padding:0}#services,#pricelist,#wedding,#maps,#contact{scroll-margin-top:110px}.lightbox{position:fixed;inset:0;z-index:100;background:#17232af7;color:white;display:none;opacity:0;transition:opacity .2s}.lightbox.is-open{display:block}.lightbox.is-visible{opacity:1}.lb-stage{height:100%;padding:70px 85px 35px;display:grid;place-items:center}.lb-figure{margin:0;max-width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.lb-img{width:auto;max-width:100%;max-height:calc(100svh - 150px);object-fit:contain;min-height:0}.lb-caption{padding-top:18px;font-size:13px}.lb-close,.lb-prev,.lb-next{position:absolute;border:1px solid #9caeb3;width:45px;height:45px;background:transparent;color:white;font-size:25px;display:grid;place-items:center}.lb-close{right:20px;top:20px}.lb-prev{left:20px;top:50%}.lb-next{right:20px;top:50%}.lb-counter{left:25px;top:30px;position:absolute;font-size:12px}.lb-prev:disabled,.lb-next:disabled{visibility:hidden}
@media(max-width:1150px){.wrap,.header-inner{width:calc(100% - 80px)}.header-inner{gap:24px}.brand{width:225px}#primary-nav{gap:22px;font-size:14px}.languages{padding-left:23px}.hero-caption{padding-left:40px;width:47%;max-width:none}.editorial-grid{gap:45px}.service-heading{display:block}.service-heading>p{margin-top:20px;max-width:450px}.service-heading h2{font-size:44px}.bridal-caption h2{font-size:37px}.wedding-section{gap:30px;grid-template-columns:1fr 1fr}.wedding-photo{grid-column:1/-1;height:340px}.wedding-photo img{object-position:center 38%}.visit-copy{padding:40px}.visit-copy h2{font-size:49px}.contact-lines{grid-template-columns:1fr;gap:18px}.visit{min-height:570px}}
@media(max-width:900px){.header-inner{height:80px}.brand{width:205px}.nav-toggle{display:block;margin-left:auto;border:0;border-bottom:1px solid;background:none;font-size:12px;padding:8px 0}.languages{padding-left:15px;gap:9px}#primary-nav{display:none;position:absolute;left:0;right:0;top:79px;background:white;padding:22px 40px 28px;flex-direction:column;align-items:stretch;gap:15px;font-size:22px;border-bottom:1px solid var(--line)}.site-header.is-open #primary-nav{display:flex}.editorial-hero{min-height:560px;height:620px;max-height:none}.hero-caption{width:58%;padding:28px 30px 30px 40px}.hero-caption h1{font-size:50px}.editorial-grid{gap:35px}.bridal-feature>.tile{height:440px}.bridal-caption{width:95%;padding-left:25px}.bridal-caption h2{font-size:34px}.service-heading h2{font-size:39px}.price-list dt{font-size:16px}.price-list dd{font-size:12px}.visit-copy{padding:35px 30px}.visit-copy h2{font-size:44px}.contact-links{gap:15px}.footer{width:calc(100% - 60px)}.footer>a{width:185px}.footer p{font-size:9px}.wedding-title h2{font-size:38px}}
@media(max-width:650px){body{font-size:14px}.wrap,.header-inner{width:calc(100% - 40px)}.header-inner{height:76px;gap:17px}.brand{width:175px;max-width:calc(100% - 115px)}.languages{font-size:10px;padding-left:12px;gap:8px}.nav-toggle{font-size:11px;flex-shrink:0}#primary-nav{top:75px;padding:23px 20px 30px;max-height:calc(100svh - 76px);overflow:auto}.editorial-hero{height:610px;min-height:0;margin-bottom:5px}.editorial-hero>img{height:440px;object-position:55% center}.hero-caption{width:89%;bottom:0;padding:25px 23px 25px 20px}.hero-caption .section-number{margin-bottom:18px}.hero-caption h1{font-size:45px}.hero-caption p{font-size:12px;max-width:270px;margin:20px 0}.text-link{font-size:12px}.editorial-grid{display:block;padding-top:30px;padding-bottom:35px}.service-heading{display:block;margin-bottom:20px}.service-heading h2{font-size:43px}.service-heading>p{font-size:13px;margin-top:20px}.eyebrow{font-size:9px;margin-bottom:12px}.price-tabs button{font-size:26px;padding:10px 0}.price-list>div{padding:13px 0}.price-list dt{font-size:17px}.price-list dd{font-size:12px}.price-note{font-size:10px}.care-notes{margin-top:22px}.bridal-feature{margin-top:38px}.bridal-feature>.tile{height:420px}.bridal-caption{width:89%;margin-top:-70px;padding:25px 0 15px 24px}.bridal-caption h2{font-size:39px}.bridal-caption p{font-size:12px;margin:17px 0}.wedding-section{grid-template-columns:1fr;gap:25px;padding:30px 0 40px}.wedding-title h2{font-size:37px;margin-bottom:20px}.wedding-title>p:last-child{max-width:none;margin-bottom:0}.wedding-menu h3{font-size:26px}.wedding-extra{font-size:12px}.wedding-photo{height:300px;grid-column:auto}.visit{grid-template-columns:1fr;min-height:0}.visit-photo{height:310px}.visit-copy{padding:32px 25px 36px}.visit-copy h2{font-size:46px}.visit-copy>p:not(.eyebrow){font-size:13px;margin:22px 0}.visit-copy>.section-number{margin-bottom:20px}.contact-lines{grid-template-columns:1fr 1fr;gap:17px;font-size:11px;padding:20px 0}.contact-lines a{font-size:12px}.contact-links{font-size:10px;gap:15px}.footer{width:calc(100% - 40px);flex-wrap:wrap;gap:20px;padding:27px 0}.footer>a{width:180px}.footer p{order:3;width:100%}.footer .languages{margin-left:auto}.photo-label{opacity:1;font-size:9px}#services,#pricelist,#wedding,#maps,#contact{scroll-margin-top:95px}.lb-stage{padding:75px 12px 85px}.lb-img{max-height:calc(100svh - 190px)}.lb-prev,.lb-next{top:auto;bottom:20px}.lb-prev{left:calc(50% - 55px)}.lb-next{right:calc(50% - 55px)}.lb-caption{font-size:11px;text-align:center}html[lang=el] .hero-caption h1{font-size:39px}html[lang=el] .service-heading h2{font-size:38px}html[lang=el] .contact-lines{grid-template-columns:1fr;gap:16px}}

/* Persistent appointment action and compact language switch. */
.call-button{position:fixed;right:24px;bottom:24px;z-index:60;display:flex;align-items:center;gap:10px;min-height:48px;padding:12px 20px;background:var(--teal);color:#fff;border:1px solid #fff8;border-radius:30px;box-shadow:0 4px 18px #17232a26;font-size:13px;font-weight:500;line-height:1.3}
.call-button:hover{background:#243f43}.call-button svg{flex-shrink:0}.languages a{min-width:28px;min-height:44px;display:grid;place-items:center}.footer{padding-bottom:90px}
@media(max-width:650px){.call-button{right:16px;bottom:calc(16px + env(safe-area-inset-bottom));padding:12px 17px;font-size:12px}.header-inner{gap:15px}.brand{max-width:calc(100% - 95px)}.footer{padding-bottom:95px}}
